Hi everyone, Here is an opportunity fr y’all. The Digital Adda has launched C Programming Certification Quiz & after completing the quiz you get Free Certificate. Get complete details below and apply:
About the Quiz:
C Programming Language Certification measures your ability to accomplish coding tasks related to the basics of programming in the C programming language, as well as fundamental programming techniques, customs and vocabulary, including the most common library functions and the usage of the preprocessor.
Terms and Conditions:
- There are 15 MCQ Questions in this test.
- You need to score at least 50% to get a certificate.
- A certificate of achievement will be awarded.
Benefits: Get C Programming Language Certificate from The Digital Adda which you can share in the Certifications section of your LinkedIn profile, on printed resumes, CVs, or other documents.
Question 1: Who is the father of C language? *
- Steve Jobs
- James Gosling
- Dennis Ritchie
- Rasmus Lerdorf
Question 2: Which of the following is not a valid C variable name? *
- int number;
- float rate;
- int variable_count;
- int $main;
Question 3: All keywords in C are in _ *
- LowerCase letters
- UpperCase letters
- CamelCase letters
- None of the mentioned
Question 4: Which is valid C expression? *
- int my_num = 100,000;
- int my_num = 100000;
- int my num = 1000;
- int $my_num = 10000;
Question 5: How many number of pointer (*) does C have against a pointer variable declaration? *
- 1
- 127
- 255
- No limits
Question 6: Which of the following is not possible statically in C language? *
- Jagged Array
- Rectangular Array
- Cuboidal Array
- Multidimensional Array
Question 7: Which of the following return-type cannot be used for a function in C? *
- char *
- struct
- void
- none of the mentioned
Question 8: The standard header is used for variable list arguments (…) in C. *
- < stdio.h >
- < stdlib.h>
- < math.h>
- < stdarg.h>
Question 9: In C language, FILE is of which data type? *
- int
- char *
- struct
- None of the mentioned
Question 10: What is the sizeof(char) in a 32-bit C compiler? *
- 1 bit
- 2 bits
- 1 Byte
- 2 Bytes
Question 11: Local variables are stored in an area called *
- Heap
- Permanent storage area
- Free memory
- Stack
Question 12: The size of both stack and heap remains the same during run time. *
- True
- False
Question 13: Choose the statement which is incorrect with respect to dynamic memory allocation. *
- Memory is allocated in a less structured area of memory, known as heap
- Used for unpredictable memory requirements
- Execution of the program is faster than that of static memory allocation
- Allocated memory can be changed during the run time of the program based on the requirement of the program
Question 14: Which of the following header files must necessarily be included to use dynamic memory allocation functions? *
- stdlib.h
- stdio.h
- memory.h
- dos.h
Question 15: The type of linked list in which the node does not contain any pointer or reference to the previous node is __ *
- Circularly singly linked list
- Singly linked list
- Circular doubly linked list
- Doubly linked list