C Programing

C Programing

University

25 Qs

quiz-placeholder

Similar activities

TEST1.PY

TEST1.PY

10th Grade - University

20 Qs

Software Engineering

Software Engineering

University

20 Qs

ICT Short Quiz

ICT Short Quiz

University

20 Qs

DSA5541 Quiz 1 TRI 2210

DSA5541 Quiz 1 TRI 2210

University

20 Qs

Review Quiz (Chapter 3&4)

Review Quiz (Chapter 3&4)

University

20 Qs

ĐC CNTT_Chương 1

ĐC CNTT_Chương 1

University

20 Qs

C Programming Unit-1 Test-2

C Programming Unit-1 Test-2

University

20 Qs

Java Quiz 1

Java Quiz 1

University

20 Qs

C Programing

C Programing

Assessment

Quiz

Computers

University

Practice Problem

Medium

Created by

Mary Murphy

Used 437+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Choose a right C Statement.

Loops or Repetition block executes a group of statements repeatedly.

Loop is usually executed as long as a condition is met.

Loops usually take advantage of Loop Counter

All the above.

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the output of C Program.?

int main()

{

int a=25;

while(a <= 27)

{

printf("%d ", a);

a++;

}

return 0;

}

25 25 25

25 26 27

27 27 27

Compiler error

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the way to suddenly come out of or Quit any Loop in C Language.?

continue; statement

break; statement

leave; statement

quit; statement

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Loops in C Language are implemented using.?

While Block

For Block

Do While Block

All the above

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Choose a correct C for loop syntax.

for(initalization; condition; incrementoperation) { //statements }

for(declaration; condition; incrementoperation) { //statements }

for(declaration; incrementoperation; condition) { //statements }

for(initalization; condition; incrementoperation;) { //statements }

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Choose a correct C do while syntax.

dowhile(condition) { //statements }

do while(condition) { //statements }

do { //statements }while(condition)

do { //statements }while(condition);

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Who is Father of C Language

Bjarne Stroustrup

James A. Gosling

Dennis Ritchie

Dr. E.F. Codd

Create a free account and access millions of resources

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

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?