Java Classes Question:
When an overloaded method is invoked, Java uses the type and/or number of arguments as its guide to determine which version of the overloaded method to actually call
A) True
B) False

Answer:
a) true
the type and number of args is together known as the signature of a method
the type and number of args is together known as the signature of a method
Previous Question | Next Question |
A variable declared as final prevents its contents from being modified A) True B) False | Deallocation of memory in Java is called Garbage Collection A) True B) False |