7.17. Multiple Choice Exercises¶
x
-
x
is anint
. y
-
y
is adouble
. word
-
word
is astring
. "hello"
-
“hello” is not a variable.
letter
-
letter
is astring
. c
-
c
is achar
. isPrime
-
isPrime
is abool
.
Q-1: Which variables below is declared as a string
type?
int main() {
int x = 0;
double y = 4.5;
string word = "hello";
string letter = "a";
char c = 'c';
bool isPrime = 1;
}
11
-
Remember that indexing begins at 0 in C++.
10
-
‘p’ is located at index 10 in quote.
4
-
The character ‘m’ is located at index 4.
0
-
The character “N” is located at index 0.
Q-2: What value should replace the question mark to output the character ‘p’?
int main() {
string quote = "Not my tempo.";
cout << quote[?];
}
I
-
The value of
z
is not 0. 0
-
The value of
z
is not greater than 11. o
-
The value of
z
is not 3. y
-
The final value of
z
is 7, and ‘y’ is at index 7 ofquote
.
Q-3: What is the output of the code below?
int main() {
string quote = "I love you 3000.";
int x = 3;
int y = 3 * x;
int z = 1;
if (y > 12) {
z = z + x + y;
}
else {
z = z + y - x;
}
cout << quote[z];
}
-1
-
-1 is not in
quote
. w
-
x
is not the index value of the character ‘w’. .
-
x
is not the index value of the last period. ‘ ‘
-
It might be logical to think that memory outside of the
string
is empty space, but there could be leftover junk values. Error, we are indexing out of bounds.
-
x
has a value of 32 and there is no index 32 inquote
.
Q-4: What is the output of the code below?
int main() {
string quote = "Look at me. I'm the captain now.";
int x = quote.size();
cout << quote[x];
}
teeest
-
Remember that indexing begins at 0 in C++.
Wg reeest
-
If we print out every fifth character, including the first, this is the answer.
ith reatpowe coms grat rsponibliy.
-
This is what we would get if we removed every fifth character.
With great power comes great responsiblity.
-
Take a look at the conditional in the while loop.
Q-5: What is the output of the code below?
int main() {
string quote = "With great power comes great responsiblity.";
int n = 0;
while (n < quote.size()) {
if (n % 5 == 0) {
cout << quote[n];
}
n++;
}
}
-1
-
Since ‘a’ is not found in
quote
, thefind
function returns -1. 0
-
The character at index 0 is ‘W’.
8
-
The character at index 8 is ‘e’.
15
-
There is no index
15
in quote.
Q-6: What is the output of the code below?
int main() {
string quote = "Why so serious?";
int index = quote.find("a");
cout << index;
}
4
-
Although “wood” appears four times in the
string
, that is not what thefind
function returns. 9
-
The index of ‘w’ in the first “wood” is at index 9.
10
-
Remember indexing begins at 0 in C++.
12
-
The
find
function returns the index of the first character of the found string. 22
-
The
find
function returns the index of the first character of the found string.
Q-7: What is the output of the code below?
int main() {
string tongue_twister = "How much wood could a woodchuck chuck if a woodchuck could chuck wood?";
int index = quote.find("wood");
cout << index;
}
9
-
Take a closer look at the starting index for where we should start looking.
22
-
After the first ‘w’, the second ‘w’ appears at index 22.
43
-
Take a closer look at the
find
function and its arguments. 65
-
Take a closer look at the
find
function and its arguments.
Q-8: What is the output of the code below?
int main() {
string tongue_twister = "How much wood could a woodchuck chuck if a woodchuck could chuck wood?";
int index = find (quote, 'w', quote.find("wood") + 1);
cout << index;
}
0
-
Are there any occurences of the letter ‘e’ in
quote
? 6
-
Count the number of ‘e’s in
quote
. 7
-
There are 7 occurences of the letter ‘e’ in
quote
. 12
-
Count the number of ‘e’s in
quote
.
Q-9: What is the output of the code below?
int main() {
string quote = "Life is like a box of chocolates. You never know what you're gonna get.";
int i = 0;
int count = 0;
while (i < quote.size()) {
if (quote[i] == 'e') {
++count;
}
++i;
}
cout << count;
}
Marco! Polo!
-
Take a closer look at the initialization of
output
. Marco!Polo!
-
Take a closer look at the initialization of
output
. call response
-
Can we concatenate “call” and “response”?
callresponse
-
Can we concatenate “call” and “response”?
Error!
-
We cannot concatenate native C strings like “call” and “response”, so this code results in an error.
Q-10: What is the output of the code below?
int main() {
string call = "Marco!";
string response = "Polo!";
string output = "call" + "response";
cout << output;
}
question['X'] = 's';
-
The argument in the
[]
operator should be a position in the string. 's' = question[i];
-
Check the order of your assignment.
'X' = 's';
-
We cannot assign the value of ‘s’ to ‘X’.
question[i] = 's';
-
This will successfully replace all instances of ‘X’ with ‘s’.
Q-11: An error occured while delivering a message. All instances of the letter ‘s’ got replaced by ‘X’s. Can you complete the code below to fix this error by selecting the correct line of code to replace the question marks?
int main() {
string question = "Honey? Where'X my Xuper Xuit?";
int i = 0;
while (i < question.size()) {
if (question[i] == 'X') {
?????
}
i++;
}
cout << question;
}
butterbutterfly
-
The operator between “butter” and “butterfly” is the
<
operator, not<<
. 0
-
Does “butter” come before or after “butterfly”?
1
-
“butter” comes before “butterfly” in the dictionary.
false
-
In C++, boolean values are printed as either a 0 or 1 unless
boolalpha
is used. true
-
In C++, boolean values are printed as either a 0 or 1 unless
boolalpha
is used.
Q-12: What is the output of the code below?
cout << ("butter" < "butterfly");
3
-
The code is not counting the number of a’s or e’s after position 17. Rather adding up their indices.
4
-
The code is not counting the number of a’s or e’s. Rather adding up their indices.
64
-
Correct! the occurences of ‘a’ are 19 and 21, while that of ‘e’ is 24 (after
index
17). The total is 64. 68
-
The first occurence of ‘e’ is at index 4 so it is not counted.
Q-13: What is the output of the code below?
int main() {
string quote = "Suffering builds character";
int count = 0;
int index = 17;
while ( index != quote.size() ){
if ( quote[index] == 'a' || quote[index] == 'e' ){
count = count + index;
}
index = index + 1;
}
cout << count << endl;
}
“IMM MondM James Mond”
-
Correct! We change indices 1,2,4,8,16 to M before
index
becomes>
quote.size()
. “IMMMMMMMMMMMMMMMMMMM”
-
We are not increasing
index
by 1, instead we are doubling it. “MMM MondM James Mond”
-
We don’t start at position 0 this time.
“IMsMBMnM,MJMmMsMBMnM”
-
we are not increasing
index
by 2, instead we are doubling it.
Q-14: What is the output of the code below?
int main() {
string quote = "Its Bond, James Bond";
int index = 1;
while( index < quote.size() ){
quote[index] = 'M';
index = index * 2;
}
cout << quote << endl;
}