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


Please Help Members By Posting Answers For Below Questions

Write a Program to find whether the given number or string is palindrome.

613


Explain how can you avoid including a header more than once?

603


How to establish connection with oracle database software from c language?

1677


What kind of structure is a house?

557


Why we not create function inside function.

1750






What are global variables and explain how do you declare them?

580


#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }

720


What’s the special use of UNIONS?

659


What are the scope of static variables?

601


Are the variables argc and argv are always local to main?

574


Explain how do you use a pointer to a function?

641


main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

636


Explain what is the benefit of using const for declaring constants?

616


int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer

657


When should structures be passed by values or by references?

585