programming languages Online Quiz - 264
Description: programming languages Online Quiz - 264 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Which conversion is not possible?
Which of the following statement is correct?
Advantage of using polymorphism in class diagrams is a reduction of
Symbol for a component inside a deployment diagram?
Wrong pair of symbol-visibility scope ?
which of the following statements are true about use cases ?
When creating Use cases,the mapping between external event and Goal can be N:1
A deployment diagram does not address a static view of a system
A colloboration diagram can express both structural and behavioural aspects of a system
Can a static variable be Serialized
Which of the following pairs is not supported in Java
What will be the output of the following program : #define Swap if (a != b) { \ temp=a; \ a = b; \ b = temp; \ //Swapping Done } void main() { int a=10,b=5,temp; Swap; printf("a=%d a=%d",a,b); }
What will be the output of the following program : void main() { int val=50; void ptr; ptr=&val; printf("%d %d",val,(int *)ptr); }C
What will be the output of the following program : void main() { int a=5,b=6; Printf("%d %d %d",a,b,--a*++b); }
What will be the output of the following program : void main() { int val=5; void ptr; *(int *)ptr=5; val=ptr; printf("%d %d",(int )val,(int *)ptr); }
What will be the output of the following program : void main() { int val=2; val = - --val- val--- --val; printf("%d",val); }
What will be the output of the following program : void main() { int i, n =10; for (i=1; i
What will be the output of the following program : void main() { printf("%f",123.); }
What will be the output of the following program : void main() { printf("%d",sizeof(integer)); }