C++ Chapter 3

C++ Chapter 3

University

10 Qs

quiz-placeholder

Similar activities

Ice Breaker

Ice Breaker

University

10 Qs

C++ : Assignment 6

C++ : Assignment 6

University

10 Qs

Conditionals Unit Quiz

Conditionals Unit Quiz

9th Grade - University

15 Qs

Mengenal Algoritma dan Pemrograman C++

Mengenal Algoritma dan Pemrograman C++

10th Grade - University

15 Qs

Struktur Data

Struktur Data

University

10 Qs

If else

If else

University

15 Qs

C++ Quiz-1

C++ Quiz-1

University

15 Qs

CPP/C

CPP/C

University

10 Qs

C++ Chapter 3

C++ Chapter 3

Assessment

Quiz

Computers

University

Medium

Created by

Albert Gorup

Used 14+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

The cin << statement will stop reading input when it encounters a newline character.

True

False

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If you want to know the length of the string that is stored in a string object, you can call the object's size member function.

True

False

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Arithmetic operators that share the same precedence have right to left associativity.

True

False

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In C++, it is impossible to display the number 34.789 in a field of 9 spaces with 2 decimal places of precision.

True

False

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

The __________ operator always follows the cin object, and the __________ operator follows the cout object.

binary, unary

conditional, binary

>>, <<

<<, >>

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following will allow the user to input the values 15 and 20 and have them stored in variables named base and height, respectively?

cin << base << height;

cin base, height;

cin >> base >> height;

cin base >> cin height;

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which statement is equivalent to the following?

number += 1;

number = number + 1;

number = 1;

number + 1;

number =+ 1;

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?