C Data Types 2 Questions and Answers
Practice ModeShowing 10 of 159 questions
Q41
Indentifiers refer to
Answer: Option D
Q42
Which of the followint is a valid identifier ?
Answer: Option D
Q43
An individual entiry of a program is known as :
Answer: Option C
Q44
Find the output.
void main ( )
char s='A'
char a='a';
printf ("%d", s-a);
}
Answer: Option A
Q45
Character constant is 2 byte long to represent
Answer: Option C
Q46
The range of an integer constant for a computer with 'w' bit word is
Answer: Option D
Q47
ASCII code to represent a character set uses how many bits ?
Answer: Option B
Q48
Which of the following is/are valid white space character ?
Answer: Option C
Q49
Which of the following is/are valid white space character ?
I. Blank space
II. Horizontal tab
III. Form feed
IV. New line
Answer: Option C
Q50
Find the output
void main ( )
{
int a=5, b=3 c;
c=a, a=b, b=c;
printf (%d %d", a, b);
}
Answer: Option A