Search Header Logo
C++ Operators w\ Variables

C++ Operators w\ Variables

Assessment

Presentation

Computers

9th - 12th Grade

Medium

Created by

Michael Ask

Used 3+ times

FREE Resource

4 Slides • 8 Questions

1

C++ Operators w\ Variables

by Michael Ask

2

Multiple Choice

Which of these characters is used for multiplication?

1

+

2

-

3

*

4

/

5

x

3

​Operating on Variables

​The most important operations will be done on variables, in C++. Frequently you will want to add two variables together, or subtract something from one of them, or multiply two together.

​It might look something like this...

​int x = 3;

​int y = 4;

​cout << x + y;

4

Multiple Choice

What is the output of this code?

int c = 4;

int d = 2;

cout << c*d;

1

6

2

2

3

8

4

16

5

Lots of variables

​Maybe you have a need for more than one variable. It happens! Maybe like this...

​int l = 4;

​int w = 2;

​int h = 3;

​cout << "The volume is " << l*w*h;

​What is the purpose of this code?

6

Multiple Choice

What does this code output?

int g = 2;

int h = 2;

int j = 3;

cout << (g + j) * h;

1

10

2

8

3

12

4

6

7

Multiple Choice

What does this code output?

int r = 2;

int s = 3;

int t = 5;

cout << r + s * t;

1

11

2

17

3

25

4

10

8

​Changing variables

​Look at this code...

​​int x = 3;

​What if we want to change it to a 6? We can do this...

​x = 6;

OR

x = x * 2;

9

Multiple Choice

What is the output of this code?

int x = 5;

x = 3;

cout << x;

1

3

2

5

3

15

4

2

10

Multiple Choice

What is the output of this code?

int x = 3;

x = x + 2;

cout << x;

1

5

2

2

3

3

4

1

11

Multiple Choice

What is the output of this code?

int x = 4;

int y = 2;

y = x * y;

cout << y;

1

8

2

16

3

2

4

4

12

Multiple Choice

What is the output of this code?

int x = 2;

int y = 6;

y = y / 2;

x = x + y;

cout << x;

1

5

2

6

3

2

4

3

C++ Operators w\ Variables

by Michael Ask

Show answer

Auto Play

Slide 1 / 12

SLIDE