Due: Thursday 09/26 10:00am
Submission name: test00.rkt
Write Possible Test Questions
With your TableBuddy™ write three potential test questions.
- The first two should be multiple choice questions with 4 options.
- The third one should be a function to program.
- This should be similar to the programming work you have had so far. Include all the information needed to write the function (formulas, etc).
Put both questions, and the answers in a racket file. You are working with your TableBuddy™, but both of you need to submit this file. You can put multiple lines together in a single comment using #| .... |#
. Use this format:
#lang racket
#|
MC Question:
Options:
Answer
|#
#|
MC Question:
Options:
Answer
|#
#|
Programming question:
Description
Possible solution:
|#
CODE GOES HERE
Here is a filled in Example:
#|
MC Question:
What is the air speed of an unladen swallow?
Options:
A) 2 mph
B) 20 mph
C) 200 mph
D) African or European?
Answer: D
|#
#|
MC Question:
Who you gonna call?
Options:
A) Transformers
B) Ghostbusters
C) Thundercats
D) Teenage Mutant Ninja Turtles
Answer: B
|#
#|
Programming question:
Write a function that takes the radius of a
circle and returns it's area.
area = pi * r^2
Possible solution:
|#
(define areaC
(lambda (radius)
(* pi radius radius)))
(areaC 10)
Skills For Test I
Skill | Minimal Competency | Developing Competency | Competency | Mastery |
---|---|---|---|---|
2. Using Functions | Can explain the concept of a function. | Uses a single function to produce a desired outcome. | Combines multiple functions to produce a desired outcome. | Appropriately uses functions that return and do not return values, combining them to produce a desired outcome. |
3. Writing functions/procedures. | Can write the contract for a function. | Can write simple functions given a contract. | Can write complex functions given a contract and can write contracts for functions given a specified task. | Can write contracts for complex functions, implement those functions and create effective test cases for them. |
5. Working with Boolean Values | Understands the purpose of boolean values. | Demonstrates the appropriate use of comparison operators. | Demonstrates the appropriate use of comparison and boolean operators. | Writes functions that take in boolean values and/or return boolean values. |
22. Using Variables | Recognizes the difference between variables and literals | Demonstrates ability to understand code which uses variables | Correctly uses variables in programming | Correctly uses the appropriate types of variables for different programming algorithms |
23. How Functions Operate | Knows the difference between calling and defining a function | Can correctly define and call functions | Understands, in general terms, the difference between what happens in the computer when you define or when you call a function. | Can correctly explain what happens in the computer when a function is called and when a function is defined, using the correct vocabulary (ex, parameters/arguments). |