Skip to content

Commit 50a5511

Browse files
committed
added review07 to chapter13
1 parent 8844ef3 commit 50a5511

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

Chapter13/README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,25 @@ Read a sequence of `Person`s from input (`cin`) into a `vector<Person>`; write t
6767

6868
## [Drill 21](drill/21)
6969
Change the representation of `Person` to have `first_name` and `second_name` instead of `name`. Make it an error not to supply both a first and a second name. Be sure to fix `>>` and `<<` also. Test.
70+
71+
72+
## [Review 1](review/01.txt)
73+
What is a function of one argument?
74+
75+
## [Review 2](review/02.txt)
76+
When would you use a (continuous) line to represent data? When do you use (discrete) points?
77+
78+
## [Review 3](review/03.txt)
79+
What function (mathematical formula) defines a slope?
80+
81+
## [Review 4](review/04.txt)
82+
What is a parabola?
83+
84+
## [Review 5](review/05.txt)
85+
How do you make an x axis? A y axis?
86+
87+
## [Review 6](review/06.txt)
88+
What is a default argument and when would you use one?
89+
90+
## [Review 7](review/07.txt)
91+
How do you add functions together?

Chapter13/review/07.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
We add functions together by executing each function (with the same arguments) and adding their returned values.

0 commit comments

Comments
 (0)