This set of C Multiple Choice Questions & Answers (MCQs) focuses on “Float Datatype – 1”.
Pre-requisite for C Float Datatype MCQ set: Video Tutorial on C Data Types.
1. How many digits are present after the decimal in float value?
a) 1
b) 3
c) 6
d) 16
View Answer
Explanation: None.
2. Which among the following is never possible as an output for a float?
a) 3.666666
b) 3.666
c) 3
d) None of the mentioned
View Answer
Explanation: None.
3. In a 32-bit compiler, which 2 types have the same size?
a) char and short
b) short and int
c) int and float
d) float and double
View Answer
Explanation: None.
4. What is the size of float in a 32-bit compiler?
a) 1
b) 2
c) 4
d) 8
View Answer
Explanation: None.
5. Loss in precision occurs for typecasting from____________
a) char to short
b) float to double
c) long to float
d) float to int
View Answer
Explanation: None.
6. In the following C code, the union size is decided by?
union temp
{
char a;
int b;
float c;
};
a) char
b) int
c) float
d) both int and float
View Answer
Explanation: None.
7. %f access specifier is used for ________
a) Strings
b) Integral types
c) Floating type
d) All of the mentioned
View Answer
Explanation: None.
8. Select the odd one out with respect to type?
a) char
b) int
c) long
d) float
View Answer
Explanation: None.
Sanfoundry Global Education & Learning Series – C Programming Language.
To practice all areas of C language, here is complete set of 1000+ Multiple Choice Questions and Answers.
- Apply for Computer Science Internship
- Check C Books
- Watch Advanced C Programming Videos
- Apply for C Internship
- Practice BCA MCQs