answersLogoWhite

0


Best Answer

1024 bytes is 8192 bits.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the bit capacity of a memory that has 1024 addresses and can store 8 bits at each address?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Memory address register is used to store?

memory addres register is used hold data addresses that refer to the data portion of the memory(by umar farooq.pk) memory addres register is used hold data addresses that refer to the data portion of the memory(by umar farooq.pk)


What is used to store email addresses?

Address Book


What stores the data that the CPU actively uses?

The CPU registers. If the data is too large to physically store in a register, the register stores the memory address containing the data instead (usually a RAM address but could be any address in the physical address space, including ROM and graphic memory). On a 32-bit system, data registers need to be at least 32-bits long in order to store memory addresses.


What is the memory's addressibility?

HI I am Ahtarva,The addressibility is how many bits does that particular processor or micro-controller's architecture use to specify the address of a memory location in the memory. For example if someone say that addressibility is 8 bit then your memory address contains 8 bits and at maximum you have 2^8 different memory locations (or say memory addresses in your device). Here 2^8 is called Address space.


What is meant by memory address?

A memory address is an identifier for a memory location, at which a computer program or a hardware device can store data and later retrieve it.


What is the purpose of an address bus?

The address bus is used by the processor in a computer to locate a piece of data from the RAM (Random Access Memory) that it needs to access. No real data is carried via the address bus, as this is the job of the Data Bus. The pieces of data that the address bus locates are called "addresses" and the address bus transfers "data addresses" to and from the control unit.


What is called pointers-c plus plus?

Yes, C++ has pointers, which are references to memory locations. which are variables that store memory addresses, or NULL (zero). If the pointer is non-NULL, the pointer is said to dereference the object (or variable) residing at the stored memory address, which permits indirect access to that object so long as the object remains in scope.


Where is a MAC address stored in a Switch?

Switches store the MAC addresses in an internal database called MAC Address Table. The entries in that table can be addresses learned by the switch or that can be entered manually by the switch administrator. This table is analogy to a router's routing table, only a switch operates at layer 2 whereas the router operate at Layer 3.


Why memory is divided in even and odd banks in 8086 microprocessor?

in 8086 there is 20 bit address bus,so it can address 1,048,576 address. At each address we can store 8 bit address (1-byte)but if want to write a word(16-bit)into a memory segment to store data in byte form then we write the data in two consecutive memory address which are even(low) and odd(high) memory.


Where can one find the address for a local Rack Room shoe store?

Rack Room shoe store addresses can be found at Rack Room Shoes store locator. They list all of their stores with addresses and phone numbers for your convenience.


Function of a MAR and MDR?

store address of memory location currently in use


What does star with identifier mean in c language?

It depends on the context. If used in a declaration, it means that the identifier is declared a pointer to a named type. If used in an expression, it means that you wish to dereference a pointer. A pointer is used to store memory addresses. Dereferencing a pointer allows the programmer to access the value stared in the memory address. In other words, it provides indirect access to the value stored in the memory address being pointed at.int i, *p; /* declare an integer and a pointer to an integer */p = &i; /* store the address of i in p (point to i)*/*p = 42; /* store the value 42 in that address (dereference) */assert (i==42); /* assert that i now holds the value 42 */It mean the content of that identifier.