

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of this program?
class Output { public static void main(String args[]) { int a,b,c,d; a=b=c=d=20 a+=b-=c*=d/=20 System.out.println(a+" "+b+" "+c+" "+d); } } |
A. | Compile time error |
B. | Runtime error |
C. | A=20 b=0 c=20 d=1 |
D. | None of the mentioned |
Answer» D. None of the mentioned | |