Tip

Tap
a student's name
below to see what they need help with
placeholder image to represent content

C PROGRAMMING Practice Test

Quiz by Pooja Puri

Feel free to use or edit the questions

includes Teacher and Student dashboards

Measure skills
from any curriculum

Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.

Q 1/15
Score 0

​Who invented C

30

​Dennis Ritchie

​Ken Thompson

​Richard Ritchie

​Dennis Beckham

15 questions

Q.Who invented C
1
30 sec
Q.Evaluate the equation and assume the variable to be an integery=5*6/2+6-12%3&&7||5
2
30 sec
Q.output of the program will be
3
30 sec
Q.Output is
4
30 sec
Q.hexadecimal of 110011010110
5
30 sec
Q.To print out a and b given below, which of the following printf() statement will you use?#include<stdio.h>int main(){float a=3.14;double b=3.14;}
6
30 sec
Q.output will be
7
30 sec
Q.convert into binary 457
8
30 sec
Q.output is
9
30 sec
Q.1. What is the output of this C code?    int main()    {        int i = -5;        int k = i %4;        printf("%d\n", k);    }
10
30 sec
Q.What is the value of x in this C code?    int main()    {        int x = 4 *5 / 2 + 9;    }
11
30 sec
Q.Which of the following is not an arithmetic operation?
12
30 sec
Q.What is the output of this C code?    int main()    {        int a = 20;        double b = 15.6;        int c;        c = a + b;        printf("%d", c);    }
13
30 sec
Q.What is the output of this C code?    int main()    {        int x = 2, y = 2;        x /= x / y;        printf("%d\n", x);        return 0;    }
14
30 sec
Q.Array is ______ datatype in C Programming language.
15
30 sec

Give this quiz to my class