what is mean by Garbage collection ?
Please answer me.
Advance thanks.

Answers were Sorted based on User's Feedback



what is mean by Garbage collection ? Please answer me. Advance thanks...

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

what is mean by Garbage collection ? Please answer me. Advance thanks...

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

what is mean by Garbage collection ? Please answer me. Advance thanks...

Answer / reshma pawar

garbage collection is a concept which suports automatic
deallocation of resources

Is This Answer Correct ?    0 Yes 0 No

what is mean by Garbage collection ? Please answer me. Advance thanks...

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

Post New Answer

More C Interview Questions

What is calloc in c?

0 Answers  


What is the size of enum in bytes?

0 Answers  


declare afunction pointer to int printf(char *)?

1 Answers   HCL,


What does struct node * mean?

0 Answers  


How can I implement sets or arrays of bits?

0 Answers  






can please someone teach me how to create this program using while statement.. this is the output should look like 0 2 4 6 8 10 -thanks.. :) need it asap...

7 Answers  


What does the c preprocessor do?

0 Answers  


struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?

1 Answers   Wipro,


main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }

1 Answers  


what are the different storage classes in c?

0 Answers   TCS,


main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }

3 Answers   CSC,


What are qualifiers in c?

0 Answers  


Categories