Chapter 11
Use _________ resolution when recording human speech in an audio file
8 bit
select the void element that can configure a Flash .swf on a web page:
<embed>
Select the term below which is a protocol that provides a method for software components to communicate, interact, and share data
Application Programming Interface (API)
The term Ajax stands for
Asynchronous JavaScript and XML
The _______ defines every object and element on a web page
Document Object Model
When displaying a Java applet, the browser invokes the _________________________ to interpret the bytecode into the appropriate machine language.
Java Virtual Machine (JVM)
select the TRUE statement from those listed below
Java applets may be contained in files with the .class extension
Use the _______ attribute on a video element to display an image that represents the movie.
Poster
In terms of copyright, Fair Use is determined to be:
The use of a copyrighted work for purposes such as criticism, reporting, teaching, scholarship, or research.
Scenario: The Internet Explorer 8 browser is being used to display a web page with an audio player but the audio element displays nothing on the page. Read the following code snippet and select the reason for the incorrect display from the choices below. <audio controls="controls"><source src="podcast.mp3" type="audio/mpeg" /> <source src="podcast.ogg" type="audio/ogg" /> </audio>
There is no fallback content to display for browsers that do not support the audio element
The CSS3 _____________ property provides for changes in property values to display in a smoother manner over a specified time.
Transition
Select the TRUE statement from those listed below
You should obtain permission before using files created by others.
JavaScript can be described as:
an object-based scripting language
Java can be described as:
an object-oriented programming language
The _______ element configures dynamic graphics
canvas
When coding an audio element, the code placed before the closing audio tag is considered to be:
fallback content
select the term below which names an HTML5 API that allows web page visitors to share their geographic location
geolocation
Use the ________ element to associate Javascript with a web page
script
Scenario: The Firefox browser is being used to display a web page with a video but no video controls display -only the poster image is shown. Read the following code snippet and select the reason for the incorrect display from the choices below. <video controls="controls" poster="sparky.jpg" width="160" height="150"> <source src="sparky.m4v" type="video/mv4" /> <source src="sparky.ogg" type="video/ogg" /> <a href="sparky.mov">Sparky the Dog</a> (.mov) </video>
the file extension .ogg is incorrect