what is the output of the below program.
public class CppBuzz
public static void main(String] args)
int a = 10;
System.out printinſaat
]
100
110
121
compile time error
Answers
Answered by
1
Answer:
Compile time error
Explanation:
As there are many errors present in its syntax
Answered by
0
First of all, the program is wrong...
I think the correct program is:
public class CppBuzz{
public static void main(String args[]){
System.out.println(100);
System.out.println (110);
System.out.println(121);
}}
The output:
100
110
121
Similar questions