Suppose you are considering the best way to present a round-table discussion of students discussing their reasons for choosing their majors. You know that your users are accessing the Web using a 56Kbps modem. You are considering the following possibilities: i. Four images each having a resolution of 400x600 and a file size of 250 KB each plus four audio clips that are 160 KB each. Each audio file is 20 seconds long. ii. Four video clips having a resolution of 160x120 and a file size of 375 KB
a. For each of these possibilities, what is the overall download time? Since your users are accessing the Web with a 56Kbps modem, use the estimate of 3 minutes per megabyte.
b. What is the difference in download times? Give the answer in minutes. Which possibility has the faster download time?
c. It’s always important to consider download time when choosing a multimedia presentation. In this case, it’s probably better to choose the possibility that has the slower download time. Why?
a. For scenario 1, there are four images at 250 KB, each which is 1MB, plus four audio clips at 160KB, which is 640 KB. Together this is 1.64
b. Scenario 1 has a download time of 4.92 minutes, or close to 5 minutes. Scenario 2 has download time of 4.5 minutes or 4 minutes, 30 seconds. The video option is actually faster by 30 seconds.
c. Currently technology can download and play audio files in real time, so a user doesn’t have to endure pauses and gaps while waiting for additional data to download. Unfortunately, the same is not true for video. Most likely, even though the download time is a little slower, the approach of using a picture plus audio is still work looking at carefully. In practice, 400x600 image files can probably be compressed to be significantly less than 250KB, so from this perspective, it’s also work reviewing the audio option.
You might also like to view...
What is the output of the following code?
int list[5]; for (int i = 0; i < 5; i++) list[i] = i + 4; cout << list[0] << “ “ << list[4];
To construct a Polygon with three points x1, y1, x2, y2, x3, and y3, use _________.
a. new Polygon(x1, y1, x2, y2, x3, y3) b. new Polygon(x1, y2, x3, y1, y2, y3) c. Polygon polygon = new Polygon(); polygon.getPoints().addAll(x1, y1, x2, y2, x3, y3) d. Polygon polygon = new Polygon(); polygon.getPoints().addAll(x1, y2, x3, y1, y2, y3)
A prebuilt set of formatting borders, effects, and layouts that are applied to a picture are a picture ________
Fill in the blank(s) with correct word
In a database, each vertical column stores information that describes a record and is referred to as a(n) ________
A) array B) table C) field D) item