Description: programming languages Online Quiz - 127 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
What is a thin-client application?
5.What is the output? main() { char s1[]=“TCS”; char s2[]= “systems”; printf(“%s”,s1); }
4.What will be printed as the result of the operation below: main() { char *ptr = ” Cisco Systems”; *ptr++; ptr++; printf(“%sn”,ptr); }
3.What is the output?main() { int x=5; printf(“%d,%d,%dn”,x,x< <2,x>>2); }
2.What will print out? main() { char p1=“name”; char *p2; p2=(char)malloc(20); memset (p2, 0, 20); while(*p2++ = *p1++); printf(“%sn”,p2); }
what is the output? main() { int x=20,y=35; x=y++ + x++; y= ++y + ++x; printf(“%d \t %dn”,x,y); }
Who is the inventor of Java
Who is the inventor of c#
Who is the inventor of Ruby
Who is the inventor of Perl
Who is the inventor of Java Script
Who is the inventor of BCPL?
Who is the inventor of Visual Basic
Who is the inventor of Delphi
Who is the inventor of COBOL
Which of the following has the highest priority? 1. Bitwise XOR 2. Bitwise OR 3. Logical OR 4. Logical AND
Which of the following is true with respect to Relational Operators?
Which of the following is true with respect to comma?
(string-set! "DrScheme" 2 4) what will be the output?
Output of: vector (1 2 2 3 4 4)