d) Give the output of the following code:
void add(int a, int b)
{ System.out.println( a + b ); }
void add(String a. String b)
{ System.out.println( a + b ); }
If (i) add("12","4") is invoked.
I
(ii) add(4,12 ) is invoked
Answers
Answered by
1
Answer:
16
124
Explanation:
Similar questions