New Reply

If a computer has 2k of memory

 
Share Thread Thread Tools
Feb17-13, 10:23 AM   #1
 

If a computer has 2k of memory


What would the first and last address be? I said 0 and 1999 but the answer was 0 and some other number which i dont remember (it wasnt 1999 haha) What is the correct number for the last address and why isnt it 1999 since there are 2000 bytes in a 2k ram?
 
PhysOrg.com
PhysOrg
engineering news on PhysOrg.com

>> Researchers use light projector and single-pixel detectors to create 3-D images
>> GPS solution provides 3-minute tsunami alerts
>> Single-pixel power: Scientists make 3-D images without a camera
Feb17-13, 10:27 AM   #2
 
Recognitions:
Gold Membership Gold Member
Quote by lundyjb View Post
What would the first and last address be? I said 0 and 1999 but the answer was 0 and some other number which i dont remember (it wasnt 1999 haha) What is the correct number for the last address and why isnt it 1999 since there are 2000 bytes in a 2k ram?
In computers "K" mean 1024. Why do you think that might be?
 
Feb17-13, 10:35 AM   #3
 
Ahh so 2047? Does that mean a gig is 1,024,000,000 bytes?
 
Feb17-13, 10:44 AM   #4
 

If a computer has 2k of memory


Nevermind, I realized my error after i hit post
 
Feb17-13, 12:17 PM   #5

Engineering 2012
 
Recognitions:
Gold Membership Gold Member
Science Advisor Science Advisor
Get one of those cheap TI calculators that has BIN, OCT and HEX buttons.
You'll quickly become fluent.
 
Feb17-13, 01:20 PM   #6
 
Recognitions:
Gold Membership Gold Member
Quote by lundyjb View Post
Ahh so 2047? Does that mean a gig is 1,024,000,000 bytes?
AGAIN, I ask ... why do you think that might be?
 
Feb18-13, 06:26 AM   #7
 
lundyjb,

In general when discussing RAM, EEPROM and FLASH memories the capacity is given in 2^X format. Therefore 2K represents 2^11 = 2048 Bytes. Assuming the starting address is 0x00, and the memory is organized as 8 bit words, the last address would be 0x7FF (2047d). Directly addressing this space would require an address width of 11 bits if it were organized as 8 bit words, 10 bits if it were organized as 16 bit words, 9 bits if it were organized as 32 bit words and 8 bits if it were organized as 64 bit words.

When working with digital electronics it is generally beneficial to work in powers of 2 (and Hexadecimal notation greatly facilitates this); this gives you the clearest indication of what is actually happening.

The confusion and dis-ambiguous nomenclature surrounding GB, Gigabyte, gibibyte, Gb and other similar terms is discussed @: http://en.wikipedia.org/wiki/Gigabyte. In general gigabyte refers to 2^30 bytes when referencing pc memory (1,073,741,824 bytes) which is similar in value to the SI prefix "giga" which = 10^9 = 1,000,000,000.

One of the great travesties of marketing is that hard drives typically base capacity on SI units (ie, a 400GB HD = 400,000,000,000 bytes; however, Windows Operating systems report the hard drive capacity (and file sizes) in binary notation. As an example a "400GB" hard drive would likely be reported by windows to be a 372GB drive.

The final nebulous marketing scheme I will mention concerns data transmission rates. In almost every case from the early RS232 specifications to the bleeding edge SATA specifications, the transfer rate is defined as the number of bits per second. It might appear this means that the bytes per second is simply the bits per second divided by 8, but this, of course, is never possible in a serial transmission. At the very least a serial packet must have a "start condition" and a "stop condition". In many cases the packet length is a single 8 bit byte, so we have at the minimum, 1 start bit, 8 data bits and a stop bit. In noisy environments the addition of a parity bit is common, increasing the number of bits per byte to 11. There are lots communications standards and protocols, the common theme is that they all sound faster than they really are, lol.

LMAO, that was prolly a lot more than the OP was asking for, sorry for the verbosity.

Fish
 
New Reply
Thread Tools


Similar Threads for: If a computer has 2k of memory
Thread Forum Replies
processor and memory architecture of computer system Programming & Comp Sci 11
Computer Memory Calculation Engineering, Comp Sci, & Technology Homework 12
Protecting computer memory Electrical Engineering 3
the amount of cells in a computer`s main memory Engineering, Comp Sci, & Technology Homework 3
Memory Problem? Not using computer for 8 weeks Computing & Technology 10