C++ : Selection

C++ : Selection

University

9 Qs

quiz-placeholder

Similar activities

01 HTML/CSS Einführung

01 HTML/CSS Einführung

University

12 Qs

HTML Basics

HTML Basics

University

12 Qs

Tutorial Basis Data

Tutorial Basis Data

University

10 Qs

Kuis Flutter Pemula

Kuis Flutter Pemula

10th Grade - University

10 Qs

Знаешь ли ты CSS?

Знаешь ли ты CSS?

University

10 Qs

ความรู้เบื้องต้น HTML

ความรู้เบื้องต้น HTML

University

10 Qs

SYS 1591

SYS 1591

University

10 Qs

Kuis 1 User Interface JWD

Kuis 1 User Interface JWD

University

10 Qs

C++ : Selection

C++ : Selection

Assessment

Quiz

Computers

University

Medium

Created by

ENNA NAWI

Used 12+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

The data type of the variable in the switch and value of a case must not be of the same type.

True

False

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

The _____ in switch statement is used to terminate the current sequence.

default

goto

break

jump

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

The default statement is optional and it can be used anywhere inside the switch statement.

True

False

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

We can have any number of case statements within a switch

True

False

5.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

What set of characters do you use to create a compound statement (block of code) in C++?

[ ]

( )

{ }

< >

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which one is the correct syntax for C++?.

if [ gross > 100000 ] then

net = gross - tax;

if ( gross > 100000 )

net = gross - tax;

if { gross > 100000 } then

net = gross - tax;

if < gross > 100000 > then

net = gross - tax;

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

What is printed by the following program segment?

HelloWorld!

Hello

Hello

World!

World!

8.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

Based on the following program segment, what is the output when input code is 'B'?

applebanana

bananacarrotinvalid

banana

invalid

9.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following conditions is to test whether weight is in between 50 to 90?

if (weight > 50 && weight < 90)

if (weight < 50 && weight > 90)

if (weight > 50 || weight < 90)

if (weight < 50 || weight > 90)