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 / suresh
expected semicolan(;)&
expected ")"(close breas)
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Does the order of public and static declaration matter in main method?
Give us the name of the list layoutmanagers in java?
What is a get method?
What is anti pattern in java?
Which oo concept is achieved by using overloading and overriding?
What is join () in java?
In a program, initializing an array of 100 KB is throwing an out of memory exception while there is 100 MB of memory available. Why?
How is a variable stored in memory?
Why local variables are stored in stack?
Is ++ operator thread-safe in java?
Explain some best practices you would apply while using collection in java?
What is ternary operator? Give an example.
Describe the various concepts related to object oriented programming (oop).
What is difference between iterator access and index access?
How to make a write-only class in java?