C Programming Quiz(session2)

C Programming Quiz(session2)

10th Grade

21 Qs

quiz-placeholder

Similar activities

C++ Conditionals

C++ Conditionals

10th Grade

24 Qs

APCSA Arrays

APCSA Arrays

9th - 12th Grade

20 Qs

Loops

Loops

5th - 12th Grade

16 Qs

Javascript Basics

Javascript Basics

9th - 12th Grade

16 Qs

if - else

if - else

10th Grade

23 Qs

การเขียนโปรแกรมภาษา python ม.5 ภาคเรียนที่ 2 ปีการศึกษา 2561

การเขียนโปรแกรมภาษา python ม.5 ภาคเรียนที่ 2 ปีการศึกษา 2561

10th - 12th Grade

20 Qs

Java by Mr Sam

Java by Mr Sam

10th Grade

16 Qs

Синтаксис Python

Синтаксис Python

7th - 11th Grade

21 Qs

C Programming Quiz(session2)

C Programming Quiz(session2)

Assessment

Quiz

Computers

10th Grade

Medium

Created by

Sumithra pm

Used 2+ times

FREE Resource

21 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following is the correct syntax for the ternary operator in C?

if ? else :

condition ? true_value : false_value;

? condition : true_value;

if (condition) ? true : false;

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the output of the following code? int a = 10; if (a > 5) printf("A"); else printf("B");

A

B

Nothing

Error

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which loop guarantees at least one execution of the loop body?

for

while

do...while

if

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which control statement is best suited for multiple constant-value selections?

if

else if

switch

while

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will the following code print? int i; for (i = 1; i 0) ? printf("Positive") : printf("Negative");

Positive

Negative

Error

Nothing

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following is not a valid keyword in C for control statements?

if

switch

select

else

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

The default keyword is used in which control structure?

if

else if

switch

while

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?