Consider three different raster systems with resolutions of
Solution
Question 1.
Frame-buffer size of the system 640 × 480 × 12 bits ÷ 8 bits per byte = 460800 byte
Frame-buffer size of the system 1280 × 1024 × 12 bits ÷ 8 bits per byte = 1966080 byte
Frame-buffer size of the system 2560 × 2048 × 12 bits ÷ 8 bits per byte = 7864320 byte
Question 2.
8 bit
[Explanation: 8-bit color (28 = 256 colors)]
Question 3.
2/3
[Explanation:The aspect ratio of an image describes the proportional relationship between its width and its height.]
Question 4.
As glutInitWindowPosition function requires an initial location for the top-left corner of the display window, so we have found out the pixel position of top-left corner and it is (200-100=100,200-75=125).
The statements are:
glutInit (&argc, argv);
glutCreateWindow (\"Window Title \");
glutInitWindowPosition(100,125);
glutInitWindowsize (100, 75);
