answersLogoWhite

0

Lisp is both compiled and interpreted language.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What has the author Guy L Steele written?

Guy L. Steele has written: 'COMMON LISP' -- subject(s): COMMON LISP (Computer program language), LISP (Computer program language), LISP, Common Lisp (Langage de programmation)


What is a auto lisp?

Auto lisp is a programming language, comes with Autocad Software. Autocad software is Cad software used for designing 2d and 3d drawings. The Auto lisp language automates the design process.


Do Germans lisp?

Yes. Because stuttering is a type of nervous tick (or so I've heard) there are no languages that do not have people who lisp.


Sample program on LISP and c program?

Bigloo, chicken or gambit are just designed for that: mixing c and scheme (a dialect of lisp): You easily mix both language in a same program, il you want in the same source file, then it get compile in c Best of both world!


Which Language is used for artificial intelligence?

The major computer language is lisp and prolog.


What is the full form of LISP?

List Processing (programming language)


What does Lisp mean in computer language?

LISP programming refers to creating applications using LISP languages - a family of old high level programming languages that used Polish notation. LISP languages are the second oldest HLLs after FORTRAN.


What does LISP stand for?

LISP is not exactly an acronym, but stands for "List Programming". It is a popular language for artificial intelligence programming, along with its dialect "Scheme". See the Wikipedia article on LISP. http: //en.wikipedia.org/ wiki/ Lisp_programming_language


Tell about something about LISP?

Lisp was invented by John McCarthy in 1958 while he was at the Massachusetts Institute of Technology (MIT). LISP is a high-level programming language specified in 1958. The term derived from "List Processing Language" and as the term indicates, its main data structure is linked lists. It is the oldest high level programming language, second to fortran.


Give an example of a compiler?

A programming language can be made into a working program either by Interpretation or compilation. There isn't a Compiler and an Interpreter language. But any code any be made into a program by compiling it using an Interpreter (checks a line of your code at a time and stops at errors) or compiler (checks the entire code at a time and displays all errors at the end).As the Answer above states any language can be Interpreted (the program is executed one line at a time, and errors are reported when and if they occur) and any language can be compiled (the whole program is rendered as a single executable file, and run in one go).But some languages are usually interpreted (though they may sometimes be compiled) and some languages are usually compiled (though they may be sometimes interpreted).An interpreted language is more easily debugged (and errors will usually be less disastrous). A compiled language runs faster (and the executable file will be smaller and more portable).So interpreted languages tend to include languages used for teaching and also languages used for robotic control (when you drive robots you will often want them to do things one step at a time).BASIC is a teaching language, it is usually interpreted. FORTH (for radio telescopes) and LOGO (for floor crawlers) are other languages which are usually interpreted, since they are robotic.Languages which are used for commercial programming will nearly always be compiled. C, C++, C# are nearly always compiled, and so is Pascal and all its derivatives (Oberon, Delphi &c.).


What has the author Wendy L Milner written?

Wendy L. Milner has written: 'Common Lisp' -- subject(s): COMMON LISP (Computer program language)


What is the difference between prolog and lisp?

1) Prolog is a logical and declarative language and LISP is a functional language. 2) The major data structure used in Prolog is Binary Tree and in LISP is Linked List. 3) Prolog is an interpreter and LISP is a compiler as prolog compiles the program line by line and LISP compiles the whole program at a time. 4) Lisp is very flexible due to its fast prototyping and macro features,so it actually allows extending the language to suit the problem at hand. In the areas of AI, graphics and user interfaces,Lisp has been used extensively because of this rapid prototyping ability. However, due to its inbuilt logic programming abilities, Prolog is ideal for AI problems with symbolic reasoning, database and language parsing applications.