In C++ a variable that has an & appended is storing a(n):
C++ References

Quiz
•
Computers, Science
•
6th - 12th Grade
•
Hard
Natalia Fumero
Used 29+ times
FREE Resource
12 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
3 mins • 1 pt
value
address
integer
string
2.
MULTIPLE CHOICE QUESTION
3 mins • 1 pt
The "&" symbol is called a(n):
sandpaper
ampersand
percentage sign
andthisthat
3.
MULTIPLE CHOICE QUESTION
3 mins • 1 pt
I have a variable int a = 2;
then a variable int& b = a;
What happens if I change the value of b
Nothing
a changes as well
b gets bigger
a disappears
4.
MULTIPLE CHOICE QUESTION
3 mins • 1 pt
Which of these looks like a possible output
int variable = 5;
cout<<&variable;
5
0x7ffc8d64e404
&5
this would throw an error
5.
MULTIPLE CHOICE QUESTION
3 mins • 1 pt
If the address of b is at 0x7ff.
What would the following code output?
int b = 160;
int &a = b;
int &c = a;
cout<<a <<endl;
cout<<&c;
160
160
0x7ff
160
160
0x7ff
0x7ff
0x7ff
6.
MULTIPLE CHOICE QUESTION
3 mins • 1 pt
Given the function
int var(int& x){
x+= 10;
return 0;
};
What will this code output?
int main(){
int b = 160;
var(b);
cout<<b <<endl;
}
160 160
170
b
22xff
7.
MULTIPLE CHOICE QUESTION
3 mins • 1 pt
Given the function
int var(int& a){
a*= 2;
return 0;
};
What will this code output?
int main(){
int b = 160;
int a = b - 60;
var(a);
cout <<b <<endl;
cout<< a <<endl;
}
160
200
160
320
320
160
160
80
Create a free account and access millions of resources
Similar Resources on Quizizz
10 questions
Test if si for

Quiz
•
10th Grade
10 questions
Dasar Pemrograman C++

Quiz
•
10th Grade
13 questions
Операторы If и Switch в C++

Quiz
•
10th Grade
12 questions
Массивы C++

Quiz
•
10th - 11th Grade
10 questions
Wprowadzenie do C++

Quiz
•
8th Grade
12 questions
Test Cls 7 Sem I

Quiz
•
6th Grade
17 questions
Flow of Control in C++ ( Conditional statements)

Quiz
•
9th Grade - University
15 questions
asesmen awal

Quiz
•
11th Grade
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade
Discover more resources for Computers
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade
20 questions
Taxes

Quiz
•
9th - 12th Grade
20 questions
Final Exam Vocabulary

Quiz
•
6th Grade
17 questions
Parts of Speech

Quiz
•
7th - 12th Grade
20 questions
Chapter 3 - Making a Good Impression

Quiz
•
9th - 12th Grade