what is mean by Garbage collection ?
Please answer me.
Advance thanks.
Answer Posted / 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 View All Answers
What are comments and how do you insert it in a C program?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
What is int main () in c?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
What is the size of array float a(10)?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
What does the characters “r” and “w” mean when writing programs that will make use of files?
The purpose of this exercise is to benchmark file writing and reading speed. This exercise is divided into two parts. a). Write a file character by character such that the total file size becomes approximately >10K. After writing close the file handler, open a new stream and read the file character by character. Record both times. Execute this exercise at least 4 times b). Create a buffer capable of storing 100 characters. Now after generating the characters, first store them in the buffer. Once the buffer is filled up, store all the elements in the file. Repeat the process until the total file size becomes approximately >10K.While reading read a while line, store it in buffer and once buffer gets filled up, display the whole buffer. Repeat the exercise at least 4 times with different size of buffer (50, 100, 150 …). Records the times. c). Do an analysis of the differences in times and submit it in class.
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
How many types of functions are there in c?
How to explain the final year project as a fresher please answer with sample project
difference between Low, Middle, High Level languages in c ?
What is a pragma?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What is formal argument?