P
Q. What is the output of the program?
class Test{
public int display(int x, int y){
return ("The sum of x and y is " + x + y);
}
public static void main(String args[]){
Test test = new Test();
System.out.println(test.display(4,5));
}
}
- Correct Answer - Option(C)
- Views: 42
- Filed under category JAVA
Discusssion
Login to discuss.