How do interactive, Web, and multimedia differ from each other? What do they have in common?

What will be an ideal response?


Interactive media refers to any digital media experience that allows the viewer to activate links by placing a cursor over a key word or icon. Web media refers to media that is communicated through the Internet. Multimedia refers to the integration of animation or streaming audio and video with text, imagery, and interactivity. These three types of media are related in that they are digital.

Computer Science & Information Technology

You might also like to view...

Concatenating with Strings is done with:

a) reserved words. b) method calls. c) operator overloading. d) operator overloading and method calls.

Computer Science & Information Technology

As with the margin property, you can specify any or all of the ____ padding values.

A. two B. four C. one D. three

Computer Science & Information Technology

To start an application manually in Windows, you should _______________.

A. right-click on the application icon B. double-click on the disc icon in Explorer of File Explorer C. initiate an update of the application D. reboot Windows and start the system in protected mode

Computer Science & Information Technology

Which of the following statements correctly prints “Passed” if the student’s grade is greater than or equal to 60 and “Failed” if the stu-dent’s grade is less than 60? [The quotes, of course, should not print.]

a) printf("%s\n", grade >= 60 : "Passed" : "Failed"); b) grade >= 60 : puts("Passed ") ? puts("Failed "); c) printf("%s\n", grade >= 60 ? "Passed" : "Failed"); d) grade >= 60 ? puts("Passed ") ? puts("Failed ");

Computer Science & Information Technology