Easy Tutorial
For Competitive Exams
Placement Papers HP Page: 3
42645.What does 3G DENOTE?
3rd generation mobile communication
3rd generation computer languages
42646.

Technical Question:


What is the value of the expression (3^6) + (a^a)?
3
5
6
a+18
42647.What can be said of the following?
struct Node {
char *word;
int count;
struct Node left;
struct Node right;
}
Incorrect definition
Structures cannot refer to other structure
Structures can refer to themselves. Hence the statement is OK
Structures can refer to maximum of one other structure
42648.main ()
{
int X=4;
printf(“%d”,INC(X++));
}

4
5
6
compilation error
42649.What is the value assigned to the variable X if b is 7? X = b>8? b <<3: b>4? b>>1: b;
7
28
3
14
42650.Along with this you should also learn Time Management In Exam.
Which is the output produced by the following program

main()
{
int n=2;
printf(“%d %d\n”, ++n, n*n);
}
3, 6
3, 4
2, 4
cannot determine
Share with Friends