unit 4 Jump control

unit 4 Jump control

University

5 Qs

quiz-placeholder

Similar activities

QUIZ 2

QUIZ 2

University

10 Qs

Macro Excel

Macro Excel

University

7 Qs

Java Quiz on 19-07-2021 - 1

Java Quiz on 19-07-2021 - 1

University

5 Qs

TIU Quiz-4

TIU Quiz-4

University

10 Qs

Java quiz 1

Java quiz 1

University

10 Qs

FOP - CHAPTER 6

FOP - CHAPTER 6

University

10 Qs

DECISION MAKING IN C

DECISION MAKING IN C

University

10 Qs

Unit 2 Python

Unit 2 Python

University

10 Qs

unit 4 Jump control

unit 4 Jump control

Assessment

Quiz

Computers

University

Easy

Created by

Abhishek Pandey

Used 4+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which one of following is an exit controlled loop ?

for

while

do while

all

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which C reserved keyword is used to come out of the loop

  1. break

continue

go to

all

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When there is a need to skip the remaining code of the current iteration, which keyword is useful in C

continue

break

goto

all

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In C, what is the purpose of the "goto" statement

To jump to a random location in code

To exit the program

To transfer control to a labelled statement within the same function

all

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the "break" statement in C

To transfer control to a labeled statement within the same function

To skip the current iteration of a loop

To exit the program

To exit from a loop or switch statement