Which of the following identifiers is a legal identifier?
AnswerWhich of the following identifiers is a legal identifier:
AnswerWhich of the following identifiers is a legal identifier :
AnswerWhat is the output of the following piece of code?
int x = 3, y = 5, z ;
z = x++ + ++y;
printf(“%d”,z);
Answer
What is the output of the following piece of code?
int x = 3, y = 5, z;
z = x + ++y;
printf(“%d”,z);
Answer
What is the output of the following piece of code:
int x = 3, y = 5, z;
z = ++x + ++y;
printf(“%d”,z);
Answer
To print character a:
AnswerTo write the ASCII code of char ch=’x’;
AnswerWhat is the output of the following piece of code:
switch(2) {
case 1: printf(“One”); break;
case 2: printf(“Two”); break;
case 3: printf(“Three”); break;
}
Answer
What is the output of the following piece of code:
switch(2) {
case 1: printf(“One”); break;
case 2: printf(“Two”);
case 3: printf(“Three”); break;
}
Answer
If LSB of a binary number is "0" then it is:
AnswerThe highest digit in any number system equals:
Answerwhat is the result of the condition ( x ;; y ) given the declaration :
int x = 1 , y = 2 ;
Answer
the ; operator in the Boolean condition if( (x>5) ; ( y < 9 ) ) …
Answerwhat is the storage size of the integer data type (char)?
Answerwhat is the storage size of the float data type (float)?
AnswerThe operator = in the Boolean condition if( age = 3 )
AnswerTo find the max value between x,y :
AnswerTo compute the square of the value in variable a:
Answerwhat is the output of the following piece of code:
int c = 19 % 4;
Answer
© 2017 QuizBucket.org