Selected Think Pair Share Solutions
Note: Not all think pair share solutions are here. Some are in the notes for the corresponding day. Others may be on Canvas (in the event of a multiple choice TPS). Regardless of where the solutions are for a given TPS, the material covered is still fair game for quizzes and exams.
Contents
Jan. 30
Question 1
Which of the following is the correct way to create a new folder name "folder1" on the command line?
cd folder1
mkdir folder1
ls folder1
pwd
Answer: mkdir folder1
Question 2
Why would a programmer want to use pseudo code as opposed to just diving right into a real programming language like C++?
Answer: There are lots of reasons! One is that pseudo code avoids syntax, which helps us write steps that can be implemented in any language and allows writing at a higher conceptual level. Also, you don't need to worry about anything compiling or running.
(Back to top)Feb. 4
Question 1
For each of the following values, list the appropriate type for a C++ variable that will hold it:
- 3.564
- "Howdy!"
- 5
- 'M'
- 39392929394
Answer:
- 3.564 (float or double)
- "Howdy!" (string)
- 5 (int or char)
- 'M' (char)
- 39392929394 (long or double)
Question 2
Why would a programmer want to use a constant over a variable?
Answer: Constants are useful when the value needed won't change during the lifetime of the program. For examples, if a program is using π, he or she may use a constant named PI
to store an approximate value, e.g., const float PI = 3.14;
.
Feb. 11
Question 1
What will the following snippet of code print?
1 2 3 4 5 6 7 | bool isFinished = true ; float time = 6.4; if ( isFinished == true && time < 7 ) cout << "You completed your mile in under seven minutes!" << endl; else cout << "You haven't broken the seven-minute mile boundary quite yet." << endl; |
Answer: You completed your mile in under seven minutes!
Question 2
What will the following snippet print at the end if the user enters the number 70? This one is tricky, so really think about it!
1 2 3 4 5 6 7 8 9 10 | int number; cout << "Please enter a number: " ; cin >> number; if ( number > 60 ) cout << "Your number is above 60." << endl; else if ( number == 70 ) cout << "Your number is exactly 70." << endl; else cout << "Your number is 60 or lower." << endl; |
Answer: Your number is above 60.
Feb. 18
Question 1
Define a struct that hold three fields: firstName, lastName, phoneNumber (don't worry about writing any other code). Also, indicate where the struct definition will go: above main or inside of main.
Answer: It goes above main. Here's what it looks like:
1 2 3 4 5 6 | struct Person { string firstName; string lastName; string phoneNumber; }; |
Question 2
Now create an instance of the struct and set the fields such that firstName is Willy, lastName is Wonka, and phone number is 555-333-1111.
Answer:
1 2 3 4 5 6 7 | int main() { Person willy; willy.firstName = "Willy" ; willy.lastName = "Wonka" ; willy.phoneNumber = 5553331111; } |
Mar. 6
Question 1
Consider this code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | void function1( int num); void function2( int &num); int main() { int x = 10; function1(x); cout << x << endl; function2(x); cout << x << endl; return 0; } void function1( int num) { num += 5; } void function2( int &num) { num += 5; } |
What does the first cout statement in main output? What does the second cout statement output?
Answer:
10 15
Question 2
What's the following program output (for both the first and second cout statements)?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | void incrementBy1( int &num); int incrementBy5( int num); int main() { int x = 10; incrementBy1(x); cout << x << endl; x = incrementBy5(x); cout << x << endl; return 0; } void incrementBy1( int &num) { num += 1; } int incrementBy5( int num) { return num + 5; } |
Answer:
11 16(Back to top)
Apr. 17
Question 1
What library must be included in order to read from or write to a file?
Answer: fstream, e.g., #include <fstream>
Question 2
The function below takes a file name and a message to write to that file. Complete the function so that it writes that message to the file. Hint: think back to the 4 steps of writing to a file we went over in class on Tuesday.
1 2 3 4 | void writeMessageToFile(string filename, string message) { // Write the code that goes here. } |
Answer:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | void writeMessageToFile(string filename, string message) { // Step 1. Create an ofstream instance. ofstream fileOut; // Step 2. Open the output file. fileOut.open(filename.c_str()); // Step 3. Write the message to the file. fileOut << message; // Step 4. Close the file. fileOut.close(); } |
Apr. 22
Question 1
What is the difference between a struct and a class in C++?
Answer: The default access level of a struct is public, whereas it is private for a class.
Question 2
Say I have the following class:
1 2 3 4 5 6 7 8 | class Movie { public : float rating; string name; int year; string director; } |
One way to set each of the data members for an instance is the following:
1 2 3 4 5 | Movie titanic; titanic.rating = 5.0; titanic.name = "Titanic" ; titanic.year = 1997; titanic.director = "James Cameron" ; |
It is pretty tedious to set each and every one of the data members. What could we add to the Movie interface to make this easier? Write the C++ code for that.
Answer: A constructor, like this one:
1 2 3 4 5 6 7 | Movie( float rating, string name, int year, string director) { this ->rating = rating; this ->name = name; this ->year = year; this ->director = director; } |
Apr. 24
Question 1
Suppose I want to create a new class called Foo. What are the two files I should make for Foo? What goes in each?
Answer:
- Foo.h -- class interface
- Foo.cpp -- class implementation
Question 2
Now, supposing that main is in a file called main.cpp, what is the terminal command to compile main.cpp along with the Foo class into an executable called main? Hint: take a look at what we did for parts 2--4 of Lab 11.
Answer: Any of the following are okay (the order of the arguments to g++ don't matter, except that main
must follow the -o
.:
g++ Foo.cpp main.cpp -o main g++ main.cpp Foo.cpp -o main g++ -o main main.cpp Foo.cpp g++ -o main Foo.cpp main.cpp g++ main.cpp -o main Foo.cpp g++ Foo.cpp -o main main.cpp(Back to top)