My Report

C Programming Mock Test 9


Correct Answer: 2 points | Wrong: -1 point
Grades: A* (100% score) | A (80%-99%) | B (60%-80%) | C (40%-60%) | D (0%-40%)
advertisement
 10%

Question 1 of 10

1. Which of the following is not defined under the header file stddef.h?

Question 1 of 10

Question 2 of 10

2. What will be the output of the following C code?

char str[20];
str= "123546"; res= atof(str);
printf("String value = %s, Float value = %f\n", str, res);

Question 2 of 10

Question 3 of 10

3. Which header file is used to define data formats and currency symbols?

Question 3 of 10

Question 4 of 10

4. Select the correct statement.

Question 4 of 10

Question 5 of 10

5. Initial seed is ________ for the function srand(unsigned int seed).

Question 5 of 10

Question 6 of 10

6. What is returned by the function if the space cannot be allocated by the function malloc(), realloc() and calloc()?

Question 6 of 10

Question 7 of 10

7. The assert shall be implemented as a ______ not as an actual ________

Question 7 of 10

Question 8 of 10

8. Which line from the given code is the passive form?

#undef assert 
#ifdef NDEBUG 
#define assert (test) ( (void) 0) 
#else 
#define assert (test)  
#endif 

Question 8 of 10

Question 9 of 10

9. Which of the following is the correct description of the macro SIGFPE?

Question 9 of 10

Question 10 of 10

10. Which macro can be used to detect and report exceptional conditions?

Question 10 of 10


 

Manish Bhojasia - Founder & CTO at Sanfoundry
Manish Bhojasia, a technology veteran with 20+ years @ Cisco & Wipro, is Founder and CTO at Sanfoundry. He lives in Bangalore, and focuses on development of Linux Kernel, SAN Technologies, Advanced C, Data Structures & Alogrithms. Stay connected with him at LinkedIn.

Subscribe to his free Masterclasses at Youtube & discussions at Telegram SanfoundryClasses.