I was solving some old MCQs and found this question:
A RAM chip has 7 address lines, 8 data lines and 2 chip select lines. Then the number of memory locations is _____.
(A) $2^{12}$ (B) $2^{10}$ (C) $2^{19}$ (D) $2^{13}$
Assuming a word consisting of a byte, this should have
2 chip select lines, meaning total $2^2$ chips.
With 7 address lines, we can address $2^7$ memory locations in a chip.
8 data lines should be used to access only the data in the memory location, and not to specify any location.
That'll make for a total of $2^2\times2^7=2^9$ memory locations. But none of the option matches my answer. What should be the correct answer?