int a=10,b=20,c=30 a= b+c;b=a+c;c=a+b;
System.out.println("The value is"+a+b+c;
Answer Posted / swapna kumari arava
After successful compilation , The value is 5080130
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is a singleton class in Java?
How will you invoke any external process in java?
Can we have this () and super () together?
What is the use of keywords in java?
how to convert Java project into Maven ?
What are different ways of object creation in java ?
Is it possible to override the main method?
Why is java called the platform independent programming language?
What is an eror in java?
how do I create a runnable with inheritance? : Java thread
Explain about class in java?
Explain the difference between jvm and jre?
What two classes are used to read data only?
What does the @override annotation do?
why are wait(), notify() and notifyall() methods defined in the object class? : Java thread