what is the output???????
public class multireturn
{
public(int assign x ( int x)
{
if(4==x)
{
return 7;
}
else if (7=x+3)
{
return 6;
}
return 5;
}
}
Answer Posted / pranali bhise
It will result in Compile time error due to 3 reasons
1) The parenthesis '(' after public is not allowed.
2) The space between "assign" and "x" is not allowed
3) 7 = x + 3 is not allowed as a variable is needed on the
left hand side of the assignment operator.
| Is This Answer Correct ? | 15 Yes | 0 No |
Post New Answer View All Answers
Is int a class in java?
What kind of variables can a class consist?
Which class should you use to obtain design information about an object in java programming?
Explain what are final variable in java?
What is lambda programming?
What is the purpose of the main method?
What is an object’s lock and which object’s have locks?
How to access arraylist elements in java?
What is difference between float and double?
Can you call a method on a null object?
What happens when a thrown exception is not handled?
What is break and continue statement?
What are singleton services?
What is the difference between a choice and a list?
What are static blocks in java ?