what is ram?

Answers were Sorted based on User's Feedback



what is ram? ..

Answer / 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

what is ram? ..

Answer / sakthi

RAM is Random Access Memory.There are two types of memory 1.ROM 2.RAM. RAM is the temporary volatile memory when the computer is turned off the memory inside the RAM is lost.

Is This Answer Correct ?    3 Yes 1 No

what is ram? ..

Answer / naresh lingampally

RAM Random Access Memory...

This is a temporary buffer memory...

Reason/Use :

NO storage devices connected to the computer can
work/compensate with the Processor speed so... here RAM
stores the data or the instructions that needs to be
executed by the processors so that it can at least provide
the data on time to the processor.

That is the reason .. higher the RAM (compatible with
Processor) faster is the computer.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Interview Questions

Just came across this question, felt worth sharing, so here it is I want you to make a C/C++ program that for any positive integer n will print all the positive integers from 1 up to it and then back again! Let's say n=5 I want the program to print: 1 2 3 4 5 4 3 2 1. Too easy you say? Okay then... You can ONLY USE: 1 for loop 1 printf/cout statement 2 integers( i and n) and as many operations you want. NO if statements, NO ternary operators, NO tables, NO pointers, NO functions!

1 Answers  


main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }

2 Answers   CSC,


What is the difference between static and global variables?

1 Answers  


What are different types of variables in c?

0 Answers  


what is the output for the code : main() { int i,j; printf("%d %d ",scanf("%d%d",&i,&j)); }

20 Answers   Infosys,






what does " calloc" do?

7 Answers   Cadence, Logos,


totally how much header files r in c language

8 Answers   TCS,


Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.

11 Answers   Microsoft,


a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none

0 Answers  


Program to swap the any two elements in an array containing N number of elements?

1 Answers   Bosch, Glenwood, Ugam Solutions,


int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?

7 Answers   Parimal, Wipro,


Why use int main instead of void main?

0 Answers  


Categories