
C++ Operators w\ Variables
Presentation
•
Computers
•
9th - 12th Grade
•
Medium
Michael Ask
Used 5+ 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?
+
-
*
/
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;
6
2
8
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;
10
8
12
6
7
Multiple Choice
What does this code output?
int r = 2;
int s = 3;
int t = 5;
cout << r + s * t;
11
17
25
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;
3
5
15
2
10
Multiple Choice
What is the output of this code?
int x = 3;
x = x + 2;
cout << x;
5
2
3
1
11
Multiple Choice
What is the output of this code?
int x = 4;
int y = 2;
y = x * y;
cout << y;
8
16
2
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;
5
6
2
3
C++ Operators w\ Variables
by Michael Ask
Show answer
Auto Play
Slide 1 / 12
SLIDE
Similar Resources on Wayground
10 questions
Function Notation Lesson
Presentation
•
9th - 12th Grade
8 questions
HTML Links
Presentation
•
9th - 12th Grade
9 questions
Алгоритм
Presentation
•
9th - 12th Grade
11 questions
Square Root Functions
Presentation
•
9th - 12th Grade
10 questions
Writing Equations for Exponential Functions
Presentation
•
9th - 12th Grade
10 questions
Writing Piecewise Functions from Graphs
Presentation
•
9th - 12th Grade
8 questions
Text Formatting
Presentation
•
9th - 12th Grade
Popular Resources on Wayground
6 questions
Secondary Safety Quiz
Presentation
•
9th - 12th Grade
10 questions
Afterschool Activities & Sports
Quiz
•
6th - 8th Grade
19 questions
ROAR Week 2026
Quiz
•
9th - 12th Grade
20 questions
Lab Safety Quiz
Quiz
•
6th Grade
15 questions
Cool Tool:Chromebook
Quiz
•
6th - 8th Grade
22 questions
would you rather
Quiz
•
3rd - 11th Grade
21 questions
Continents and Oceans
Quiz
•
6th Grade
20 questions
Parts of Speech
Quiz
•
5th Grade
Discover more resources for Computers
20 questions
Early Computing
Quiz
•
7th - 12th Grade
10 questions
Exploring the Parts of a Computer
Interactive video
•
6th - 10th Grade
10 questions
Navigating Digital Citizenship and Online Safety
Interactive video
•
6th - 10th Grade
20 questions
Binary Numbers
Quiz
•
11th Grade
10 questions
Mastering Proper Keyboarding Techniques
Interactive video
•
6th - 10th Grade