what is mean by Garbage collection ?
Please answer me.
Advance thanks.
Answers were Sorted based on User's Feedback
Answer / preeti singh
Garbage collection refers to a daemon process that reclaims
the memory that is no longer referenced by an application
that uses dynamic memory allocation.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / amutha
garpage collection one of the dynamic memory allocation so
that don't use long reference application
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / reshma pawar
garbage collection is a concept which suports automatic
deallocation of resources
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sunita yadav
when we use small amount of data in a large memory space
then since the data is less so memory will waste.to resolve
this probleb the concept of garbag collection is used,by
this concept we gathere all the free wastag memory so that
it can be used by other programs.
| Is This Answer Correct ? | 0 Yes | 0 No |
program for comparing 2 strings without strcmp()
differnce between do and do while
What is unary operator?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
Why do we write return 0 in c?
where does malloc() function get the memory?
What is wrong in this statement?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
What are the benefits of c language?
What is the total generic pointer type?
Write a program for the following series? 1 121 12321 1234321 123454321 12345654321 1234567654321 123456787654321 12345678987654321 1234567890987654321 123456789010987654321 12345678901210987654321 1234567890123210987654321 .........1234321............ ..........123454321............ ..........12345654321............ 7 8 9 0 1 Pls............?
How can we allocate array or structure bigger than 64kb?