Selection Structure

Selection Structure

University

4 Qs

quiz-placeholder

Similar activities

Quiz Mentoring 7

Quiz Mentoring 7

University

8 Qs

6.2 Cloning Concepts

6.2 Cloning Concepts

1st Grade - University

9 Qs

№15 ЕГЭ (инорматика)

№15 ЕГЭ (инорматика)

11th Grade - University

8 Qs

Python Lists Methods

Python Lists Methods

9th Grade - Professional Development

7 Qs

Python Lists

Python Lists

9th Grade - Professional Development

7 Qs

Ch. 4 While loops, concatenation, shortcut operators

Ch. 4 While loops, concatenation, shortcut operators

11th Grade - University

7 Qs

E-Commerce Concept 3

E-Commerce Concept 3

University

9 Qs

Ecommerce Quiz

Ecommerce Quiz

University

8 Qs

Selection Structure

Selection Structure

Assessment

Quiz

Computers

University

Hard

Used 39+ times

FREE Resource

4 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You create a statement block by enclosing one or more statements in ___.

parentheses

square brackets

quotation marks

none of the above

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following determines whether an int variable named quantity contains the number 100?

if (quantity = 100)

if quantity = 100

if (quantity ==100)

none of the above

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following determines whether the value contained in the sales variable is at least $300.99?

if (sales >= 300.99)

if (sales => 300.99)

if (sales >= 300.99)

none of the above

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the inequality operator in C++

&=

!=

==

none of the above