In the following statement, which is the superclass?


public class ClassA extends ClassB implements ClassC


a. ClassA
b. ClassB
c. ClassC
d. cannot tell

b. ClassB

Computer Science & Information Technology

You might also like to view...

What does the DocumentsProvider content provider expose?

a. Read access for files in the cloud b. Write access for files on disk c. Read and write access for files on disk d. Read and write access for files on disk or in the cloud

Computer Science & Information Technology

What is the result of executing the following code?

``` 1 myResultSet = myStatement.executeQuery( 2 "SELECT age FROM people WHERE name = ’Bob’" ); 3 4 while ( myResultSet.next() ) 5 { 6 displayJTextArea.append( myResultSet.getInt( "age" ) + "\n"); 7 } ```

Computer Science & Information Technology