C Programming Quiz

C Programming Quiz

University

10 Qs

quiz-placeholder

Similar activities

Network Management Week 14

Network Management Week 14

University

10 Qs

How Safe are you? (Disclaimer: I do not own these questions)

How Safe are you? (Disclaimer: I do not own these questions)

University

10 Qs

QUIZZ 1 : DATABASE FUNDAMENTALS

QUIZZ 1 : DATABASE FUNDAMENTALS

University

10 Qs

Determining System Requirements

Determining System Requirements

University

11 Qs

INTO Artificial Intelligence

INTO Artificial Intelligence

University - Professional Development

10 Qs

ITF Chapter 1 Computing Devices

ITF Chapter 1 Computing Devices

University

14 Qs

INTRODUCCION A LA PROGRAMACION

INTRODUCCION A LA PROGRAMACION

6th Grade - University

10 Qs

Application Development Midterm Quiz

Application Development Midterm Quiz

University

15 Qs

C Programming Quiz

C Programming Quiz

Assessment

Quiz

Computers

University

Practice Problem

Hard

Created by

Manka Sharma

Used 2+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following C code considering the size of a short int is 2, char is 1 and int is 4 bytes? #include int main() { short int i = 20; char c = 97; printf("%d, %d, %d\n", sizeof(i), sizeof(c), sizeof(c + i)); return 0; }

2, 1, 2

2, 1, 1

2, 1, 4

2, 2, 8

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the data type of the result of the following operation? (float)a * (int)b / (long)c * (double)d

int

long

float

double

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the range of short signed int data type in C Programming, considering 4 bytes are allocated for int?

-128 to + 127

0 to 255

-32768 to +32767

0 to 65535

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the range of unsigned char data type in C Programming?

-128 to + 127

0 to 255

-32768 to +32767

0 to 65535

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code snippet? int a = 10; while(a > 5) { printf("%d ", a); a--; }

10 9 8 7 6 5

10 9 8 7 6

9 8 7 6 5

Infinite loop

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many times is the loop executed in the following code? for (int i = 0; i <= 10; i += 2) { printf ("%d ", i); }

5 times

6 times

10 times

11 times

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following C code? int i = 1; while(i <= 5) { if(i == 3) { break; } printf("%d ", i); i++; }

1 2

1 2 3

1 2 3 4 5

No output

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?