If there are 1024*1280 pixels on a screen and each pixel can have around 16 million colors. Find the memory required for this?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Each pixel can have around 16 million colors, so we need 24 bits to represent one pixel (on 24 bits we can write 2^24 = 16777216 different values), that is 3 bytes.
So, to represent 1024 1280 pixels we need 3 1024*1280 = 3932160 bytes, which is more than 3MB, but less than 4MB (or more precisely, it is 3.75MB).
Therefore the correct answer is 4MB.