edited by
5,718 views

4 Answers

Best answer
9 9 votes

Except Lisp all language C, C++, Fortran have manual memory management.So Lisp provide automatic garbage collection.

Reference :Garbage Collection

selected by
8 8 votes

Answer is A) LISP

Because C,C++ and FORTRAN does not provide that. 

3 3 votes

Answer :  Lisp

Lisp is especially notable as both the first functional programming language and the first language to introduce garbage collection.

edited by
0 0 votes
I guess the answer should be lisp. No doubt JAVA does provide automatic Garbage collection for sure. Traditional C/C++ Compilers do not support Garbage collection. The answer should be lisp.
Answer:
Position:
Show:

Related questions

61 61 votes
5 answers 5 answers
14.5k
14.5k views
Kathleen asked Sep 17, 2014
14,480 views
A program consists of two modules executed sequentially. Let $f_1(t)$ and $f_2(t)$ respectively denote the probability density functions of time taken to execute the two ...
30 30 votes
1 answers 1 answer
11.6k
11.6k views
Ishrat Jahan asked Oct 29, 2014
11,555 views
Consider the program below in a hypothetical language which allows global variable and a choice of call by reference or call by value methods of parameter passing. ...
1 1 vote
3 3 answers
3.2k
3.2k views
ajit asked Aug 15, 2015
3,167 views
If only one memory location is to be reserved for a class variable, no matter how many objects are instantiated, then the variable should be declared asexternstaticvolati...
10 10 votes
3 answers 3 answers
19.1k
19.1k views
go_editor asked Jun 10, 2016
19,105 views
Consider the following pseudo-codex:=1; i:=1; while (x <= 1000) begin x:=2^x; i:=i+1; end;What is the value of i at the end of the pseudo-code?4567