
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
Linear Equations Review
Presentation
•
9th - 11th Grade
7 questions
Programming in C
Presentation
•
9th - 12th Grade
7 questions
Domain 1 - Concepts and Terminology
Presentation
•
9th - 12th Grade
6 questions
Clase 2 - Introducción
Presentation
•
9th - 12th Grade
9 questions
Мастер-класс: «Использование искусственного интеллекта в препод
Presentation
•
KG - University
11 questions
Linear & Quadratic Regression using Desmos
Presentation
•
10th - 12th Grade
10 questions
Coding in Kindergarten 2023
Presentation
•
KG
10 questions
Pengenalan Konsep Pemrograman Komputer
Presentation
•
9th - 12th Grade
Popular Resources on Wayground
24 questions
PBIS-HGMS Day 10
Quiz
•
6th - 8th Grade
10 questions
HCS SCI 03 Summer School Review 3
Quiz
•
3rd Grade
11 questions
Home Scope
Quiz
•
7th - 8th Grade
15 questions
HCS SCI 05 Summer School Assessment 3 Review
Quiz
•
5th Grade
35 questions
Lufkin Road Middle School Student Handbook & Policies Assessment
Quiz
•
7th Grade
18 questions
Geo 11.3 Area of Circles and Sectors
Quiz
•
9th - 11th Grade