What are Range Objects in VBA?

Range Objects represent a cell, a row, a column, or a selection of cells containing one or more continuous blocks of cells.

Example:

'Ex 1 : To Put a value in the cell A5
Worksheets("Sheet1").Range("A5").Value = "5235"

'Ex 2 : To put a value in range of Cells
Worksheets("Sheet1").Range("A1:A4").Value = 5