Advertisement
Advertisement
Advertisement

11th Grade C Quizzes, Questions & Answers

Top Trending C Quizzes


What do you know about C programming? C Programming Language is a strong and all-purpose procedural programming language that supports structured programming. It was developed in 1972 by Bell Telephone Laboratories to create...

Questions: 10  |  Attempts: 4235   |  Last updated: Jun 17, 2025
  • Sample Question
    C language has been developed by?
    Radio Button
    Radio Button
    Radio Button
    Radio Button

This Aptitude test on C-Programming focuses on pointers and strings. It assesses understanding through questions on pointer operations, structure access, and string manipulations, essential for proficiency in C programming.

Questions: 15  |  Attempts: 2439   |  Last updated: May 21, 2025
  • Sample Question
    Are the expression *ptr++ and ++*ptr are same?
    Radio Button
    Radio Button

C is a programming language which was developed by Dennis Ritchie. C language incorporates low-level access to memory, clean style and simple set of keywords which makes 'C' language a perfect system...

Questions: 10  |  Attempts: 11081   |  Last updated: Apr 21, 2025
  • Sample Question
    void main() { int const * p=5; printf("%d",++(*p)); }
    Radio Button
    Radio Button
    Radio Button
    Radio Button
    Radio Button

“C” is a computer programming language, which supports structured programming, recursion, and lexical variable scope. It first appeared in 1972 and variations of it are still used prominently today. What do you...

Questions: 10  |  Attempts: 270   |  Last updated: Mar 22, 2025
  • Sample Question
    )#include void call(int,int,int); int main(){  int a=10; call(a,a++,++a); return 0; } void call(int x,int y,int z){  printf("%d %d %d",x,y,z); }
    Radio Button
    Radio Button
    Radio Button
    Radio Button
    Radio Button

This Data types Trivia quiz assesses understanding of C programming data types, focusing on variable declarations, pointer usage, and output predictions. It's ideal for learners enhancing their programming skills and...

Questions: 9  |  Attempts: 184   |  Last updated: Oct 1, 2025
  • Sample Question
    Predict the output of following program. Assume that the numbers are stored in 2's complement form. #include<stdio.h>   int  main()   {      unsigned int x = -1;      int y = ~0;      if(x == y)         printf("same");      else         printf("not same");      return 0;   }
    Radio Button
    Radio Button

Popular C Quizzes



Questions: 10  |  Attempts: 13350   |  Last updated: Mar 22, 2025
  • Sample Question
    C language has been developed by ?
    Radio Button
    Radio Button
    Radio Button
    Radio Button


Questions: 16  |  Attempts: 3062   |  Last updated: Mar 21, 2025
  • Sample Question
    1. create table { empno numeric (4) constraint emp_prim primary keyEmpname varchar2 (20) constraint emp_const check(empname = upper(empname))}
    Radio Button
    Radio Button
    Radio Button
    Radio Button


Questions: 10  |  Attempts: 2055   |  Last updated: Sep 1, 2025
  • Sample Question
    Print the output of this program  void main() {        int  a, b, c, abc = 0;          a = b = c = 40;          if (c) {                int abc;                abc = a*b+c;         }         printf ("c = %d, abc = %d ", c, abc); }
    Radio Button
    Radio Button
    Radio Button
    Radio Button

Recent C Quizzes

Advertisement