Write a short note on primary memory?
Primary memory is where information is stored after it is first learned. It is also referred to as the short term memory.
a sector is a portion of a circle bounded by the two radii and the included arc.
What is computer memory in your opinion how much is good?
Computer MEMORY, Also known as Ram, is what speeds up your computer. Programs on your computer need memory as a temporary storage to run, only when the programs are running is it using memory. Depending on what computer you have and/or what you want and what you do on your computer. If you do a lot of multi-tasking with a lot of programs open then consider getting a 6 GB on a desktop and a 4 GB on a laptop. if you don't multi-task with multiple programs then consider getting from 4 GB on a desktop and 1-3 GB on a laptop. But usually 4 gigabytes is fine. I have a 3 GB Memory laptop with WIN7 Ultimate and it works pretty smoothly. If i had another GB for memory I would never have to worry about my laptop being slow on me
How do you transfer pictures from memory stick pro duo to MAC computer?
Stick it in the right port hole and hit real player download
What do you call the remaining computer memory?
the following names:
RAM (random access memory),
unused data,
free space,
gotta-fill-it,
space,
and memory
What are four things and or groups of people you feel have been on the receiving end of prejudice?
Women, Jews, African American, and Hispanic individuals are four groups of individuals who have been on the receiving end of prejudice. However, any group can be discriminated against depending on what groups are considered to be in or out groups.
What is the fastest memory and can support triple or dual channels or be installed as a single dimm?
DDR 3
240 pin DDR3 DIMMs
· Are currently the fastest memory commercially available and can support triple channeling, dual channeling and can be installed as a single DIMM.
Behavior
For an application that exceeds 64k the memory model should be?
For an application that exceeds 64k, the memory model should be huge.
Can you increase rom and ram of your pda?
Short answer, No. It depends on what you mean by this. Most mobile devices have fixed RAM & ROM capacity. You can, however get more internal storage space by re-flashing to a cooked (or hacked) ROM. That is, a custom ROM made for this device which may contain OS tweaks, software modifications, removal of unnecessary software to increase available internal storage, addition of other third party software and other misc tweaks and edits. Doing this may, or may not void your PDA/mobile device warranty, so do so at your own risk. As for RAM, there is no way to "ADD" more memory like one could on a PC or MAC. You can however, free up wasted memory by closing unnecessary applications (not being used), or by running a memory management program. This can free up RAM that is not currently in use but is floating around in leaked memory, so it isn't registered as "FREE".
How do you create an array for a memory block greater than 64Kb and store that array in a file?
The easy way to create a large array is to define it however big you want, and then use a compiler and operating system that can handle that size.
int length_test(void){
int stuff[99000] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 4};
stuff[4] = 7;
return stuff[4];
}
For this purpose there are two functions which may depend on the platform you you use , These both function increase and change your DATA SEGMENT and BREAK VALUE These are: 1. brk() 2. sbrk() Please use them. If feel unconfident write to me on: rupesh_joshi@sify.com rupesh.joshi@gmail.com
Many compilers for embedded systems limit the stack space used by any one function (including all the local arrays defined in that function) to 64 KB or sometimes 4 KB.Such compilers often treat local arrays, global arrays, constant arrays, and heap arrays differently. So sometimes, if you can change the program so the array is a different kind of array, you can make it much bigger. So if the above code is "too big", perhaps the following code will compile:
int stuff[99000] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 4};
int length_test(void){
stuff[4] = 7;
return stuff[4];
}
See the question "Write a C program to reverse the first n characters in a file?" for some tips on writing to a file.
How do you get windows to recognize all your ram?
32 bit Microsoft Operating Systems only recognize up to 4 GB of RAM (some less than that). Only 64 bit OSes can currently see more than 4 GB.
If you have a capable OS and are still not seeing your full amount of RAM, then check and re-seat the RAM on the motherboard and make sure that you are following the correct seating configuration for your motherboard and bios settings.
For more information regarding Microsoft Operating Systems and RAM, see the Related Link below.