what is ram?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
Write a program to find given number is even or odd without using any control statement.
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
How many identifiers are there in c?
printf("%d",(printf("Hello")); What it returns?
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
How can I return multiple values from a function?
write the program for prime numbers?
73 Answers Accenture, Aptech, Infosys, TCS,
how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.
How can you find the exact size of a data type in c?
how can i get output like this? 1 2 3 4 5 6
Is exit(status) truly equivalent to returning the same status from main?
What is volatile