Easy Tutorial
For Competitive Exams

main( )
{
unsigned int i=3;
while( i >=0)
printf( “%d”, i–);
}
how many times will the printf stmt be executed?

0
3
4
infinite
Explanation:
answer is infinite, because ‘i’ is an unsigned integer and it will not decrement below ’0′ and hence end up in an infinite loop.
Additional Questions

Vincent has a paper route. Each morning, he delivers 37 newspapers to customers in his neighborhood. It takes Vincent 50 minutes to deliver all the papers. If Vincent is sick or has other plans, his friend Thomas, who lives on the same street, will sometimes deliver the papers for him.

Answer

Georgia is older than her cousin Marsha. Marsha’s brother Bart is older than Georgia. When Marsha and Bart are visiting with Georgia, all three like to play a game of Monopoly. Marsha wins more often than Georgia does.

Answer

An application program that is used by the users to get the inofrmation
from the backend of some application like databases:

Answer

Which of the following will be last step for the input given below?
Input: He is going out to search air

Answer

If step II of an input is ‘not is the casino considering legal action’, what step would be ‘not is casino action legal the considering’?

Answer

What does 3G DENOTE?

Answer

Technical Question:


What is the value of the expression (3^6) + (a^a)?

Answer

What can be said of the following?
struct Node {
char *word;
int count;
struct Node left;
struct Node right;
}

Answer

main ()
{
int X=4;
printf(“%d”,INC(X++));
}

Answer

What is the value assigned to the variable X if b is 7? X = b>8? b <<3: b>4? b>>1: b;

Answer
Share with Friends
Privacy Copyright Contact Us