JAVA
13. A programmer cannot instantiate an interface. TRUE OR FALSE?
14. Each primitive Java type can be represented as a object using the _____ classes. spelling and case matter-use lower case
15. A reference variable holds the _________ of an object. use lower case
16. Two or more reference variables can hold the address of the same object. TRUE OR FALSE
Expert Answer
FALSE
A programmer never instantiate an interface in java.
A programmer refer to an object that implements an interface by the type of the interface
14. Each primitive Java type can be represented as a object using the __wrapper___ classes.
15. A reference variable holds the ____address_____ of an object.
16. Two or more reference variables can hold the address of the same object.
TRUE since we can define any number of variable to point to a particular object