compile java
If you do not see any error messages and you get the code back, now you want
to run the program. From tool select Run Java Application
(a) Change public Welcome to public welcome(b) Remove the first quotation mark in the string literal.
(e) Change csc211 to CSC211
(f) Remove the semicolon at the end of the println statement.
(g) remove the last brace in the program.
(i) Change println to Println
(a) Remove the keyword int.(b) Change
int operand1, operand2, result;TOint operand1, operand2;(c) Replace
"The sum is ... " + resultWith"The sum is .... result"(d) Remove the + symbol between "the sum is ... " and result.
(e) Change main to Main
(f) Remove one of the opening parentheses '('
System.out.println
statement