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 / raja
This program is error.. Missing semicolon in variable
declaration... And the close Bracket of system.out.println
statement is missing...
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Is java 11 paid version?
What is the maximum size of hashmap in java?
Explain about serializable interface in java?
Can we extend private class in java?
Explain the difference between collection api and stream api in java8?
What are runtime exceptions?
What are actual parameters?
Why are functions called methods in java?
What happens when you invoke a thread’s interrupt method while it is sleeping or waiting?
What is a for loop in java?
What is the use of bufferedreader?
Is null == null in java?
What do you mean by formatting?
List the three steps for creating an object for a class?
What is the difference between static class and normal class?