Question: 6. Define a LISP function SCORE->GRADE which takes a single argument, s, and returns a symbol according to the following scheme: s>90 A 73 GRADE

 6. Define a LISP function SCORE->GRADE which takes a single argument,

6. Define a LISP function SCORE->GRADE which takes a single argument, s, and returns a symbol according to the following scheme: s>90 A 73 GRADE 86.3) = =>B+ (SCORE->GRADE 106) => A (SCORE->GRADE -10.1) => F (SCORE->GRADE 59.9) => F (SCORE->GRADE 83) => B+ (SCORE->GRADE 74) => C+ (SCORE->GRADE 67) => D (SCORE->GRADE 87.0) => A- (SCORE->GRADE '(86.3)) => NIL (SCORE->GRADE 'DOG) => NIL

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!