KnowledgeBoat Logo

Computer Science

Consider the following sequence of statements:

a = 35

m = a

Following the execution of these statements, Python has created how many objects and how many references?

  1. Two integer objects, two references
  2. One integer object, two references
  3. One integer object, one reference
  4. Two integer objects, one reference

Python Data Handling

24 Likes

Answer

One integer object, two references

Answered By

6 Likes


Related Questions