What is the result?

A method is declared to take three arguments. A program calls this method and passes only two
arguments. What is the result?

A method is declared to take three arguments. A program calls this method and passes only two
arguments. What is the result?

A.
Compilation fails.

B.
The third argument is given the value null.

C.
The third argument is given the value void.

D.
The third argument is given the value zero.

E.
The third argument is given the appropriate false value for its declared type.

F.
An exception occurs when the method attempts to access the third argument.

Explanation:
The problem is noticed at build/compile time. At build you would receive an error
message like:
required: int,int,int
found: int,int



Leave a Reply 0

Your email address will not be published. Required fields are marked *