
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
8 questions
расшифровка анаграмм
Presentation
•
9th - 12th Grade
10 questions
IP ADDRESS
Presentation
•
9th - 12th Grade
8 questions
Normal Distribution Curve
Presentation
•
9th Grade - University
7 questions
MATERI INFORMATIKA 7
Presentation
•
KG - 12th Grade
7 questions
Pelatihan FPD
Presentation
•
KG
10 questions
Genetics Dihybrid Crosses
Presentation
•
9th - 12th Grade
9 questions
Music and Technology intro to Digital Audio Workstations
Presentation
•
9th - 12th Grade
11 questions
Pythagorean Theorem
Presentation
•
9th - 12th Grade
Popular Resources on Wayground
28 questions
US History Regents Review
Quiz
•
11th Grade
36 questions
Biology Regents Review
Quiz
•
9th - 10th Grade
20 questions
Math Review
Quiz
•
3rd Grade
38 questions
Regents Life Science General Review
Quiz
•
9th Grade
20 questions
Math Review
Quiz
•
6th Grade
21 questions
EOY Grade 6 Benchmark Assessment - Content Skills
Quiz
•
6th Grade
20 questions
Inferences
Quiz
•
4th Grade
20 questions
Figurative Language Review
Quiz
•
6th Grade
Discover more resources for Computers
28 questions
US History Regents Review
Quiz
•
11th Grade
36 questions
Biology Regents Review
Quiz
•
9th - 10th Grade
38 questions
Regents Life Science General Review
Quiz
•
9th Grade
45 questions
Earth and Space Science Regents: Exam Cram
Presentation
•
7th - 12th Grade
36 questions
NYS Biology Regents Exam: Word on the Street
Quiz
•
10th Grade
50 questions
Global Regents Review 1
Quiz
•
10th Grade
6 questions
Regression Practice
Quiz
•
9th Grade
50 questions
Earth Science Regents Review
Quiz
•
10th Grade