C Programming Quiz

C Programming Quiz

University

10 Qs

quiz-placeholder

Similar activities

OCS752_CP_MODEL 1_PART B (16.10.2020)

OCS752_CP_MODEL 1_PART B (16.10.2020)

University

10 Qs

Coding club Summit Online Quiz

Coding club Summit Online Quiz

University

15 Qs

Operators in C(29/08)

Operators in C(29/08)

University

10 Qs

C - Pointers

C - Pointers

University

10 Qs

C program quiz 1

C program quiz 1

University

10 Qs

Programming Java

Programming Java

9th Grade - University

11 Qs

Coding Fundamentals in C

Coding Fundamentals in C

6th Grade - Professional Development

12 Qs

1. hét

1. hét

University

10 Qs

C Programming Quiz

C Programming Quiz

Assessment

Quiz

Computers

University

Hard

Created by

Manka Sharma

Used 2+ times

FREE Resource

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

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?