programming languages Online Quiz - 267
Description: programming languages Online Quiz - 267 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Which arithmetic operations can result in the throwing of anArithmeticException?
What does getSession(false) will do?
Is a skeleton created by RMI?
If a method is declared as protected, where may the method be accessed?
EJB and Java beans can be run on many systems?
he following code is not well-written. What does the program do? Void main() { int a=1, b=2, c=3,d=4; printf("%d %d", a, b); printf (" %d %d", c, d); }
What will be the output of the following program : void main() { int a=1,b=2,c=3,d=4,e; e=(a,a)+(b,c)+(c,d)-(d,b); printf("%d", e); }
What will be the output of the following program: void main() { float val=2.; printf("%.2",val); }
What will be the output of the following program : void main() { int a=5; int b=6;; int c=a+b; printf("%d",c); }
What will be the output of the following program : #define swap(a,b) temp=a; a=b; b=temp; void main() { static int a=5,b=6,temp; if (a > b) swap(a,b); printf("a=%d b=%d",a,b); }
What will be the output of the following program : void main() { unsigned int val=5; printf("%u %u",val,val-11); }
What will be the output of the following program : void main() { int x=4,y=3,z=2; &z=&x*&y; printf("%d",z); }