• Computer can jump directly to a memory address via a pointer.
  • They point to the start of a file.
  • Information stored includes the name, file size etc.
  • Variables fetch values from their respective memory locations.
  • List of values is a = [1,2,3,4,5]
  • Even if you change a value in memory, such as a = [1,2,3,4,6],then set b to be assigned to a and it will still have the latest list of values.

Updated: