Answer Posted / poonam
RAM is Random Access Memory. It is a form of computer data
storage that allows data to be stored in any order(ie
random).It is the temporary volatile memory of the computer
system which when the computer is switched off the memory
inside the RAM is lost.
| Is This Answer Correct ? | 21 Yes | 3 No |
Post New Answer View All Answers
What is the difference between break and continue?
How do you view the path?
Which built-in library function can be used to match a patter from the string?
What is the difference between text files and binary files?
What are multidimensional arrays?
What is openmp in c?
What does *p++ do? What does it point to?
Explain the concept and use of type void.
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What is sorting in c plus plus?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
What are the different types of objects used in c?
Is fortran faster than c?
Describe the modifier in c?
Write program to remove duplicate in an array?