What is RAM memory? and What is ROM?Who designed one is
temparary and another is permanent?why they designed like
that?By using far pointer which type data(whether
hexadecimal)we can access?
Answer Posted / vignesh1998i
1) RAM (RANDOM ACCESS MEMORY) , ROM (READ ONLY MEMORY) are the two types of memory that computer uses ....
2) RAM is a primary memory , ROM is a secondary storage memory..
3) when ever we start our PC or Mobile or Lap top the ROM starts booting up and give the instructions to the OPERATING SYSTEM , then latter takes cares of ...... (TAT'S WHY WHEN EVER WE BUY A SYSTEM , OUR 'C' DRIVE WILL SHOW LESS MEMORY SPACE FREE , OUT OF THE TOTAL HARD DISK SPACE )
4) RAM Memory is also called Cache memory , since evey time processor cant access the secondary memory device for accessing the data ,since times increases ... so our data from external memory will be stored in the primary memory (RAM) , then only our processor will start accessing our data ......
4) In RAM if ones our data is processed it will be sent to the secondary storage devices like hard disk or pen drive or printer etc etc....... so RAM is called as re-writable memory.....
5) ROM is only used for reading the data from it... once it is programmed it cant be erased , only using UV rays it can be erased i think..........
the reason behind one making permanent and other is temperory is to reduce the time complexity for the processor as it is mentioned above in one of the points .......
every time processor cant access the 'a data' from the secondary memory , for this the processor has to halt other process till it access the info. from the other memory.....
remainig questions iam not sure for answering.....
thank u
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is sorting in c plus plus?
What are the features of the c language?
What do you mean by c what are the main characteristics of c language?
Which is the best website to learn c programming?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What is #define size in c?
Write the Program to reverse a string using pointers.
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
Is it better to use a macro or a function?
What is the difference between the local variable and global variable in c?
How can I get the current date or time of day in a c program?
What is difference between structure and union?
What are the scope of static variables?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?