C Programming Quiz

C Programming Quiz

12th Grade

51 Qs

quiz-placeholder

Similar activities

Python Coding Specialist Exam

Python Coding Specialist Exam

9th - 12th Grade

46 Qs

PCEP Questions in Python

PCEP Questions in Python

9th - 12th Grade

46 Qs

Their Python Exam

Their Python Exam

9th - 12th Grade

46 Qs

LATIHAN SOAL

LATIHAN SOAL

10th Grade - University

50 Qs

Python 3 Loops

Python 3 Loops

9th - 12th Grade

55 Qs

CS 241 Practice Test Week 3

CS 241 Practice Test Week 3

9th Grade - University

54 Qs

PYTHON PROGRAMMING - FINAL EXAM REVIEW

PYTHON PROGRAMMING - FINAL EXAM REVIEW

9th - 12th Grade

46 Qs

CSEC IT - 04 Loops & Trace Tables

CSEC IT - 04 Loops & Trace Tables

10th - 12th Grade

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