Given the following code:

```
class C1 {}
class C2 extends C1 { }
class C3 extends C2 { }
class C4 extends C1 {}

C1 c1 = new C1();
C2 c2 = new C2();
C3 c3 = new C3();
C4 c4 = new C4();
```
Which of the following expressions evaluates to false?
a. c1 instanceof C1
b. c2 instanceof C1
c. c3 instanceof C1
d. c4 instanceof C2


d

Computer Science & Information Technology

You might also like to view...

In most structures, the member variables are defined using the keyword ____ followed by the variable's name, the keyword As, and the variable's data type.

A. Private B. Static C. Dim D. Public

Computer Science & Information Technology

The signature of a normal FTP connection includes a three-way handshake.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

The Start menu might display any of the following that enable you to make your choice EXCEPT:

A) text B) thumbnails C) small icons D) large icons

Computer Science & Information Technology

The item in the second column of row 14 is a ____ indicator.

A. Milestone B. Recurring Task C. Review D. Refresh

Computer Science & Information Technology