Which of the following statements is false?

a. Java allows a class to implement multiple interfaces in addition to extending one class.
b. Classes declared with implementation inheritance are tightly coupled.
c. Classes declared with interface inheritance are tightly coupled.
d. An interface also may extend one or more other interfaces.

c. Classes declared with interface inheritance are tightly coupled.

Computer Science & Information Technology

You might also like to view...

Which if statement would be true if you needed to see if x (an int) is between 0 and 50 inclusive?

A. ```if( x >= 0 && x < 50 )``` B. ```if( x >= 0 && <= 50 )``` C. ```if( x >= 0 || x <= 50 )``` D. ```if( x > 0 && x < 50 )```

Computer Science & Information Technology

What is a predefined list of values?

A. Input mask B. Input field C. Lookup mask D. Lookup field

Computer Science & Information Technology