Learn practical skills, build real-world projects, and advance your career

Session 2

Concept -1

We should always have the memory address of the starting of the object if it covers more number of addresses or bytes.

Read it like -> my_var_10 references the object at 0x1360 (this is the memory address where 10 is stored in memory)

my_var_10 = 10 
# here 10 is an integer stored at some memory location in Ram and my_var_10 
# variable is initialized with the address location of 10.