edited by
3,870 views

4 Answers

Best answer
8 votes
8 votes

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

Reference :Garbage Collection

selected by
10 votes
10 votes

Answer is A) LISP

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

4 votes
4 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 votes
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:

Related questions

8 votes
8 votes
3 answers
1
go_editor asked Jun 10, 2016
15,779 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
1 votes
1 votes
2 answers
3
ajit asked Aug 15, 2015
2,422 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...