One thought on “Quick Questions”

  1. Let me get you started, here is the first solution

    Calculate the number of Pixels
    Pixels = Length X DPI X Height X DPI
    =6 x 600 x 8 x 600
    =17280000 Pixels

    Calculate the number of bits
    Bits = Pixels X Colour Depth
    =17280000 X 8
    =138240000 bits

    Convert it to Bytes, KilioBytes, MegaBytes etc
    Divide by 8 for Bytes and 1024 for the rest
    =138240000/8
    =17280000 Bytes

    =17280000/1024
    =16875 KiloBytes

    =16875/1024
    =16.4794921875 MegaBytes

    It is good practice to round up to 2 decimal places

    Answer = 16.48MB

Comments are closed.