fork download
  1. What will be the output of the below program?
  2.  
  3. public class Test
  4. {
  5. public static void main(String args[])
  6. {
  7. int i=3,j=7,k=11;
  8. System.out.println(j*k++/2);
  9.  
  10. }
  11. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:1: error: class, interface, or enum expected
 What will be the output of the below program?   
 ^
1 error
stdout
Standard output is empty