Description: programming languages Online Quiz - 118 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Which one cause a compiler error? (Choose two) a. float f2[] = new float[]; b. float[] f1 = new float[3]; c. float f3[] = new float[3]; d. float f4[] = new float[] { 1.0f, 2.0f, 3.0f};
main(){ int i=5; char c; scanf ("%d", &c); printf("Here"); printf ("%d ", i);}For scanf in standard input the input is given as 63. then what will be displayed in the standard output ?
What is the output ?main(){ int a[5]={1,2,3,4,5}; a[7] = 23; printf("%d", a[7]);}
What is the output ? main() { int x=2000, p, y = 200; p = &y; x = x/p; printf("%d", x); }
main() { int i=20, *k; k=&i; printf("\n%d %d", i, k); ++*k; printf("\n%d %d", i, k); (*k)++; printf("\n%d %d", i, k); } Let the output of first print statement is 20 1000. What is the output of 2nd and third print statements ?
What is the output ?main(){ int i; for(i=0;i<10;i++); printf("%d", i); }
What is the output of the following program ? main() { int a=10; { int a=100; { int a=1000; printf("%d", a); } printf("%d", a); } printf("%d", a); }
What is the output of the following program ? main() { float a=1.1; double b=1.1; if (a==b) printf("Hai"); else printf("Hello"); }
What is the output of the following C program? main() { int i=4,j=7; j = j || i++ && printf("YOU CAN"); printf("%d %d", i, j); }
What is the output ? main() { int i=8; printf("%d%d%d%d", i, i++, ++i, i); }
WCF have binding to support MSMQ.
What are the various contracts available in WCF.
What is the new activity available in .Net 3.5 for windows workflow which is used to expose workflow as service.
WSHttpBinding uses SOAP 1.1.
Where we can host WCF service?
Whch of the following is used as word boundary in Regular Expression?
Which regular expression matches email address [email protected]?
What will the output of: Regex.Replace("01/02/03","([0-9]+)/([0-9]+)/([0-9]+)","$2/$1/$3");