Suppose circle1 and circle2 are two Circle objects.

1.7 Suppose circle1 and circle2 are two Circle objects. What does the following statement do?
circle2 = circle1;
A) It copies the contents of circle1 to circle2
B) It makes circle2 and circle1 the same object
C) It copies the contents of circle2 to circle1
D) The statement is illegal

A pointer can hold

1.2 A pointer can hold
A) The address of another variable
B) Stored value of the variable
C) Initialization of the variable
D) The address of the same variable

The main function header can be written as

1.1 The main function header can be written as
A) public static void main(int argc, char* argv)
B) public int main(String[] args)
C) public static main(String[] args)
D) void main(int argc, char* argv[])