In Java, a method call is followed by an open( and close) parenthesis.
The arguments that the method accepts are passed in between these parenthesis.
For example in the below code:
System.out.println("Good Morning");
The argument, which in the above example is the String literal "Good Morning", is passed into the method println.
Identify the error in the below code and correct it.
package q10802 :-
0 Comments