C Programming Quiz

C Programming Quiz

12th Grade

51 Qs

quiz-placeholder

Similar activities

SAINS KOMPUTER TINGKATAN 4 BAB 1

SAINS KOMPUTER TINGKATAN 4 BAB 1

3rd Grade - University

50 Qs

CS Awesome Unit 4 Review

CS Awesome Unit 4 Review

9th - 12th Grade

46 Qs

Python Programming Quiz

Python Programming Quiz

11th Grade - University

50 Qs

PCEP Questions

PCEP Questions

9th - 12th Grade

46 Qs

Python Practical Questions

Python Practical Questions

9th - 12th Grade

46 Qs

Coding Midterm

Coding Midterm

9th - 12th Grade

54 Qs

TSA Prep 3

TSA Prep 3

9th - 12th Grade

50 Qs

Ujian Tengah Semester TIK-9A

Ujian Tengah Semester TIK-9A

9th Grade - University

55 Qs

C Programming Quiz

C Programming Quiz

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Dr. PRASAN

FREE Resource

51 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following is the correct syntax for an if statement in C?

if condition then statement;

if (condition) statement;

if condition statement;

if {condition} statement;

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

The if-else statement in C is used for:

Repeating a set of statements

Branching between two alternatives

Comparing two loops

Declaring variables

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

In a nested if statement, the innermost if is executed:

Only if the outer if condition is false

Always, regardless of the outer condition

Only if the outer if condition is true

None of the above

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the correct syntax for an if-else-if ladder?

if (condition) {...} else if (condition) {...} else {...}

if (condition): else if (condition): else:

if (condition) {else if (condition); else;}

if (condition); else if (condition); else;

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

In a switch statement, which keyword is used to exit from a case?

exit

stop

break

return

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following cannot be used as a condition in a switch statement?

int

char

float

enum

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

If none of the cases match in a switch statement, which block is executed?

First case

Last case

default

else

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?