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