C Language MCQ - English
In which numbering system can the binary number 1011011111000101 be easily conve
Home | Discussion ForumIn which numbering system can the binary number 1011011111000101 be easily converted to?
Decimal system
Hexadecimal system
Octal system
No need to convert
Answer : B
View More Related Question
1) Pick up the odd one out from the following
2) Consider the following program segment: main()
The correct values are:
{
int a,b,c;
b=3;
a=2;
a=2*(b++);
c=2*(++b);
}
3) Which bitwise operator is suitable for checking whether a particular bit is on or off?
4) Consider the following statements: int a=2, b=3, c=4;
What are the values of a, b and c, respectively?
a=(b++) +c;
b=a+(++c);
5) What is the output of this C code?
#include <stdio.h>
void main()
{
int k = 8;
int x = 0 == 1 && k++;
printf("%d%d\n", x, k);
}