Loading...

C Multiple Choice Questions

Our C questions and answers focuses on all areas of C programming language covering 100+ topics in C

C Fundamentals-1 MCQs

C Fundamentals Page-2


1. Which Committee standardize C Programming Language ?

a) ANSI
b) W3C
c) TRAI
d) ISO



2. Ritchie and Brian Kernighan jointly carried out the development of C and that version is ________ .

a) K&R C
b) ANSI C
c) C99
d) R&K C



3. Who was Creator of B Language , which inspired Dennis Ritchie to create Strong Procedural Language called C ?

a) Ken Thompson
b) Thomas E. Kurtz
c) John W. Backus
d) Brian Kernighan



4. Dennis Ritchie Born On ___________ ?

a) September 9, 1941
b) September 9, 1951
c) September 9, 1958
d) September 9, 1947



5. By Nationality , Dennis Ritchie Was _________ ?

a) British
b) Russian
c) American
d) Canadian



6. Dennis Ritchie Completed his graduation from _________ University ?

a) MIT University
b) Harvard University
c) Stanford University
d) Cembridge University



7. What is Full Name of Dennis Ritchie ?

a) Dennis George Ritchie
b) Dennis Drew Ritchie
c) Dennis Bill Ritchie
d) Dennis MacAlistair Ritchie



8. Dennis Ritchie Was Creator of Famous Programming Language

a) BCPL
b) C++ Programming
c) C Programming
d) BASIC



9. Dennis Ritchie Born in ________ city ?

a) Santa Ana
b) California
c) Bronxville , New York
d) New Mexico



10. What will be printed after execution of the following program code?

voidmain() 
{
    char = not;
    not = !2
    printf("%d", not);
}

a) 2
b) Garbage Value
c) 0
d) None of these



- Related Topics