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?
Answer : B
Feel free to find and hire your online essay writer to help you with papers. AdvancedWriters will not let you down.
View More Related Question
1) Which of the following is not an arithmetic operation?
2) Consider the following program fragment: main()
Which one of the given answers in correct?
{
int a,b,c;
b=2;
a=2*(b++);
c=2*(++b);
}
3) In which numbering system can the binary number 1011011111000101 be easily converted to?
4) If the following variables are set to the values as shown below, then what will be the value of the following expression? answer=2;
marks=10;
!((answer<5)&&(marks>2))
5) What is the output of this C code?
#include <stdio.h>
int main()
{
int a = 10;
double b = 5.6;
int c;
c = a + b;
printf("%d", c);
}