Highlight the variables in gt and label them with the word "size".

(EXAMPLE (gt 20) (triangle 20 "solid" "green"))

(EXAMPLE (gt 50) (triangle 50 "solid" "green"))

(define (gt size) (gt size "solid" "green"))

Highlight and label the variables in the example lists below. Then, using gt as a model, match the examples to their corresponding function definitions.

Examples Definition

(EXAMPLE (f "solid") (circle 8 "solid" "red")) (EXAMPLE (f "outline") (circle 8 "outline" "red"))

1

A

(define (f s) (star s "outline" "red"))

(EXAMPLE (f 2) (+ 2 2)) (EXAMPLE (f 4) (+ 4 4)) (EXAMPLE (f 5) (+ 5 5))

2

B

(define (f num) (+ num num))

(EXAMPLE (f "red") (circle 7 "solid" "red")) (EXAMPLE (f "teal") (circle 7 "solid" "teal"))

3

C

(define (f c) (star 9 "solid" c))

(EXAMPLE (f "red") (star 9 "solid" "red")) (EXAMPLE (f "grey") (star 9 "solid" "grey")) (EXAMPLE (f "pink") (star 9 "solid" "pink"))

4

D

(define (f s) (circle 8 s "red"))

(EXAMPLE (f 3) (star 3 "outline" "red")) (EXAMPLE (f 8) (star 8 "outline" "red"))

5

E

(define (f c) (circle 7 "solid" c))

These materials were developed partly through support of the National Science Foundation, (awards 1042210, 1535276, 1648684, and 1738598). CCbadge Bootstrap by the Bootstrap Community is licensed under a Creative Commons 4.0 Unported License. This license does not grant permission to run training or professional development. Offering training or professional development with materials substantially derived from Bootstrap must be approved in writing by a Bootstrap Director. Permissions beyond the scope of this license, such as to run training, may be available by contacting contact@BootstrapWorld.org.