0 votes
in Python by

Which of the following is more accurate for the following declaration?

x = Circle()

1) Now you can assign int value to x.

2) x contains a reference to a Circle object.

3) x actually contains an object of type Circle.

4) x contains an int value.

1 Answer

0 votes
by

2) x contains a reference to a Circle object.

Related questions

0 votes
asked Jan 18, 2021 in Python by SakshiSharma
0 votes
asked Sep 5, 2022 in AWS by sharadyadav1986
...