Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Programming languages... Consider the three Lisp functions: Now... 1: eval: The eval function can be used to execute another function. For example, (eval (+ 2

Programming languages...

Consider the three Lisp functions:

image text in transcribed

image text in transcribed

image text in transcribed

Now...

image text in transcribed

1: eval: The eval function can be used to execute another function. For example, (eval "(+ 2 4)) 6 returns the expected result 6. Notes (a) Lisp uses prefix notation, hence, (+ 2 4) is essentially equivalent Java or C++'s (2+4). (b) Lisp represents List data structures using parenthesis. For example, (1, 2, 3) or "one, two", "three") or ("one", 2, 3.0, "four", 4, (+4 2)) The first two lists have three elements and the third list cossix elements. Note, as demonstrated by the third list, Lisp allows mixed data types for the elements in a List. (c) Lisp functions are represented as a list data type(...), whose first element is a function, symbol, such as the arithmetic function symbols *, L, -. d) The evaluation of a number returns a number, a string returns a string, etc. (eval 6) 6 (eval" Hello")-"Hello" (e) Lisp evaluates function arguments before the function itself. A quote changes this behavior. For example, with a quote, the argument to the eval function is (+ 24), (eval "(+ 2 4)) 6 Without the quote, the argument to the eval function is 6 since the (+ 2 4) is first evaluated and its return value of 6 is subsequently passed to the eval function, (eval (+ 2 4)) (eval 6) 6

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Current Trends In Database Technology Edbt 2006 Edbt 2006 Workshops Phd Datax Iidb Iiha Icsnw Qlqp Pim Parma And Reactivity On The Web Munich Germany March 2006 Revised Selected Papers Lncs 4254

Authors: Torsten Grust ,Hagen Hopfner ,Arantza Illarramendi ,Stefan Jablonski ,Marco Mesiti ,Sascha Muller ,Paula-Lavinia Patranjan ,Kai-Uwe Sattler ,Myra Spiliopoulou ,Jef Wijsen

2006th Edition

3540467882, 978-3540467885

More Books

Students also viewed these Databases questions