C Programming Quiz

C Programming Quiz

University

10 Qs

quiz-placeholder

Similar activities

Scratch

Scratch

KG - Professional Development

10 Qs

DCN5511: Chapter 5 - 7

DCN5511: Chapter 5 - 7

University

15 Qs

Structured/Traditional SDM

Structured/Traditional SDM

University

9 Qs

Process modeling

Process modeling

University

10 Qs

 QUIZ  MS Core Java Quiz-3 2023

QUIZ MS Core Java Quiz-3 2023

University

11 Qs

QUIZ GAME

QUIZ GAME

University

10 Qs

computer Networks

computer Networks

University

10 Qs

Tes Awal Modul 5

Tes Awal Modul 5

University

10 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?

Discover more resources for Computers