Solved

Consider a Method Defined with the Header: Public Void Foo(int

Question 45

Multiple Choice

Consider a method defined with the header: public void foo(int a, int b) . Which of the following method calls is legal?


A) foo(0, 0.1) ;
B) foo(0 / 1, 2 * 3) ;
C) foo(0) ;
D) foo( ) ;
E) foo(1 + 2, 3 * 0.1) ;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions