Q121
Open questionSelect an option to see the answer and solution.
Practice every MCQ with options. Use Show answers when you want the correct option and solution.
303
Questions
7/16
Page
Pick an option on a question to see the right answer and solution.
Q121
Open questionSelect an option to see the answer and solution.
Q122
Open questionSelect an option to see the answer and solution.
Q123
Open question#include <stdio.h>
int main()
{
int a = 10;
if (a == a--)
printf("TRUE 1\t");
a = 10;
if (a == --a)
printf("TRUE 2\t");
}Select an option to see the answer and solution.
Q124
Open question#include <stdio.h>
void main()
{
1 < 2 ? return 1: return 2;
}Select an option to see the answer and solution.
Q125
Open question#include <stdio.h>
void main()
{
int k = 8;
int m = 7;
int z = k < m ? k = m : m++;
printf("%d", z);
}Select an option to see the answer and solution.
Q126
Open question#include <stdio.h>
int main()
{
int x = 3, y = 2;
int z = x << 1 > 5;
printf("%d\n", z);
}Select an option to see the answer and solution.
Q127
Open questionSelect an option to see the answer and solution.
Q128
Open questionSelect an option to see the answer and solution.
Q129
Open questionSelect an option to see the answer and solution.
Q130
Open questionSelect an option to see the answer and solution.
Q131
Open question#include <stdio.h>
int main()
{
int i = 5;
i = i / 3;
printf("%d\n", i);
return 0;
}Select an option to see the answer and solution.
Q132
Open question#include <stdio.h>
int main()
{
int x = 2, y = 2;
float f = y + x /= x / y;
printf("%d %f\n", x, f);
return 0;
}Select an option to see the answer and solution.
Q133
Open question#include <stdio.h>
void main()
{
int b = 5 + 7 * 4 - 9 * (3, 2);
printf("%d", b);
}Select an option to see the answer and solution.
Q134
Open questionSelect an option to see the answer and solution.
Q135
Open question#include <stdio.h>
int main()
{
int a = 10, b = 5, c = 3;
b != !a;
c = !!a;
printf("%d\t%d", b, c);
}Select an option to see the answer and solution.
Q136
Open questionSelect an option to see the answer and solution.
Q137
Open question#include <stdio.h>
int main()
{
int a = 10, b = 5, c = 5;
int d;
d = b + c == a;
printf("%d", d);
}Select an option to see the answer and solution.
Q138
Open question#include <stdio.h>
int main()
{
int i = -5;
i = i / 3;
printf("%d\n", i);
return 0;
}Select an option to see the answer and solution.
Q139
Open questione = a * b + c / d * f;Select an option to see the answer and solution.
Q140
Open question#include<stdio.h>
enum India
{
a,b,c
};
enum India g;
main()
{
g++;
printf("%d",g);
}Select an option to see the answer and solution.