WGU C777 Final Exam Review (Latest 2024/ 2025
Update) Web Development Applications |Qs & As |
100% Correct| Grade A (Verified Answers)
<!DOCTYPE> - ANSWERThe first tag in an HTML document; it informs the interpreter
(usually a browser) which version of HTML the Web page is written in.
application programming interface (API) - ANSWERA source code specification that
enables components of an application or program to work together to produce the
desired functionality.
Canvas - ANSWERAn HTML5 used for rendering visual images on the fly by providing
scripts with a bitmap canvas.
cascading Style Sheets (CSS) - ANSWERA W3C technology for applying structure and
formatting instructions total pages and other markup language documents.
Formatting can be placed within the HTML or called remotely from an external style
sheet.
H.264 - ANSWERA video codec supported by HTML5-compliant browsers that does
not require a plug-in; uses less battery and processing resources.
JavaScript - ANSWERscripting language that adds dynamic interactivity to Web
pages. Generally used on client side but can also be used on server side
MPEG-4 (MP4) - ANSWERA streaming, digital multimedia format used to store video,
audio, subtitles and still images.
Ogg - ANSWERAn open-source audio and video format used for streaming digital
multimedia. Uses the Theoracodec for compression.
WebM - ANSWERAn open-source media file format designed for the Web. Web M
audio streams are compressed with the Vorb is audio codec. WebM video streams
are compressed with the VP8 video codec.
A ____________ refers to any element to which designated styles are applied. -
ANSWERselector
A ___________ is a format instruction that consists of a specified selector and the
properties and values applied to it. - ANSWERrule
A ____________ declaration selector rule curly braces semicolon inheritence
comment
consists of a property and its value. - ANSWERdeclaration
,To define multiple declarations for one selector within a rule, you must separate
each declaration with a
______________. - ANSWERsemicolon
Except when declaring inline styles, you must place properties and their values
within _____________ . - ANSWERcurly braces
If you want a particular rule in a style sheet to be ignored, you can create a
_________________ by placing code in between the /* and */ characters. -
ANSWERcomment
The style you define will flow, or cascade, throughout your documents, unless
another style defined inside of a page specifically overrides it. This concept is known
as
_____________. - ANSWERinheritence
background-color: #008080; - ANSWERDeclaration
body {background-color: #008080;} - ANSWERrule
#008080; - ANSWERvalue
body - ANSWERselector
background-color; - ANSWERproperty
Where do you place link for external style sheet - ANSWER<head> </head>
The element remains in the same position when the page is scrolled - ANSWERFixed
The normal, or default, position of the element within a page. - ANSWERStatic
The element appears to float above the document and can be positioned as needed.
- ANSWERAbsolute
The element gets its position from the parent element. - ANSWERInherit
The element's position is affected by other elements on the page, usually because of
the top, bottom, left, and right properties. - ANSWERRelative
In the CSS Box Model, the innermost box. - ANSWERContent
Achieved by assigning specific pixel widths to elements - ANSWERFixed-width layout
In the CSS Box Model, the outer-most box that immediately encloses the border -
ANSWERMargin
, Specifies the typeface to be used - ANSWERFont-family
Also known as relative width or fluid layout - ANSWERLiquid layout
Change the way a selector renders in a browser - ANSWERProperty
Also know as cascading, the way that styles flow throughout a document or site -
ANSWERinheritence
In the CSS Box model, the box that immediately encloses the padding -
ANSWERBorder
In the CSS Box Model, the defined are that immediately encloses the content -
ANSWERPadding
Defines the file type, such as text or video, and the extension, such as css or mp4, for
a user agent or browser - ANSWERMultipurpose Internet Mail Extensions (MIME)
A descriptive characteristic of an object (such as color, width or height) that the
developer stipulates in the creation of the object - ANSWERproperty
What is the default value for aligning images relative to text using CSS? - ANSWER
Remy Sharp has created a script that has become the de facto standard for many
Web developers around the world. The script enables Web developers to: -
ANSWERsupport HTML5 in older IE browsers
What is the default value for aligning images relative to text using CSS? -
ANSWERBottom
CSS3: Selects every instance of a specified element whose specified attribute ends
with the specified value - ANSWERelement[attribute$=value]
CSS3: Selects every instance of a specified element whose specified attribute
contains the specified substring value - ANSWERelement[attribute*=value]
Selects every instance of a specified element whose specified attribute begins with
the specified value - ANSWERelement[attribute^=value]
CSS3:Selects every checked instance of a specified element -
ANSWERelement:checked
CSS3:Selects every disabled instance of a specified element -
ANSWERelement:enabled
CSS3:Selects every instance of a specified element that is the first of its parent -
ANSWERelement:first-of-type
Update) Web Development Applications |Qs & As |
100% Correct| Grade A (Verified Answers)
<!DOCTYPE> - ANSWERThe first tag in an HTML document; it informs the interpreter
(usually a browser) which version of HTML the Web page is written in.
application programming interface (API) - ANSWERA source code specification that
enables components of an application or program to work together to produce the
desired functionality.
Canvas - ANSWERAn HTML5 used for rendering visual images on the fly by providing
scripts with a bitmap canvas.
cascading Style Sheets (CSS) - ANSWERA W3C technology for applying structure and
formatting instructions total pages and other markup language documents.
Formatting can be placed within the HTML or called remotely from an external style
sheet.
H.264 - ANSWERA video codec supported by HTML5-compliant browsers that does
not require a plug-in; uses less battery and processing resources.
JavaScript - ANSWERscripting language that adds dynamic interactivity to Web
pages. Generally used on client side but can also be used on server side
MPEG-4 (MP4) - ANSWERA streaming, digital multimedia format used to store video,
audio, subtitles and still images.
Ogg - ANSWERAn open-source audio and video format used for streaming digital
multimedia. Uses the Theoracodec for compression.
WebM - ANSWERAn open-source media file format designed for the Web. Web M
audio streams are compressed with the Vorb is audio codec. WebM video streams
are compressed with the VP8 video codec.
A ____________ refers to any element to which designated styles are applied. -
ANSWERselector
A ___________ is a format instruction that consists of a specified selector and the
properties and values applied to it. - ANSWERrule
A ____________ declaration selector rule curly braces semicolon inheritence
comment
consists of a property and its value. - ANSWERdeclaration
,To define multiple declarations for one selector within a rule, you must separate
each declaration with a
______________. - ANSWERsemicolon
Except when declaring inline styles, you must place properties and their values
within _____________ . - ANSWERcurly braces
If you want a particular rule in a style sheet to be ignored, you can create a
_________________ by placing code in between the /* and */ characters. -
ANSWERcomment
The style you define will flow, or cascade, throughout your documents, unless
another style defined inside of a page specifically overrides it. This concept is known
as
_____________. - ANSWERinheritence
background-color: #008080; - ANSWERDeclaration
body {background-color: #008080;} - ANSWERrule
#008080; - ANSWERvalue
body - ANSWERselector
background-color; - ANSWERproperty
Where do you place link for external style sheet - ANSWER<head> </head>
The element remains in the same position when the page is scrolled - ANSWERFixed
The normal, or default, position of the element within a page. - ANSWERStatic
The element appears to float above the document and can be positioned as needed.
- ANSWERAbsolute
The element gets its position from the parent element. - ANSWERInherit
The element's position is affected by other elements on the page, usually because of
the top, bottom, left, and right properties. - ANSWERRelative
In the CSS Box Model, the innermost box. - ANSWERContent
Achieved by assigning specific pixel widths to elements - ANSWERFixed-width layout
In the CSS Box Model, the outer-most box that immediately encloses the border -
ANSWERMargin
, Specifies the typeface to be used - ANSWERFont-family
Also known as relative width or fluid layout - ANSWERLiquid layout
Change the way a selector renders in a browser - ANSWERProperty
Also know as cascading, the way that styles flow throughout a document or site -
ANSWERinheritence
In the CSS Box model, the box that immediately encloses the padding -
ANSWERBorder
In the CSS Box Model, the defined are that immediately encloses the content -
ANSWERPadding
Defines the file type, such as text or video, and the extension, such as css or mp4, for
a user agent or browser - ANSWERMultipurpose Internet Mail Extensions (MIME)
A descriptive characteristic of an object (such as color, width or height) that the
developer stipulates in the creation of the object - ANSWERproperty
What is the default value for aligning images relative to text using CSS? - ANSWER
Remy Sharp has created a script that has become the de facto standard for many
Web developers around the world. The script enables Web developers to: -
ANSWERsupport HTML5 in older IE browsers
What is the default value for aligning images relative to text using CSS? -
ANSWERBottom
CSS3: Selects every instance of a specified element whose specified attribute ends
with the specified value - ANSWERelement[attribute$=value]
CSS3: Selects every instance of a specified element whose specified attribute
contains the specified substring value - ANSWERelement[attribute*=value]
Selects every instance of a specified element whose specified attribute begins with
the specified value - ANSWERelement[attribute^=value]
CSS3:Selects every checked instance of a specified element -
ANSWERelement:checked
CSS3:Selects every disabled instance of a specified element -
ANSWERelement:enabled
CSS3:Selects every instance of a specified element that is the first of its parent -
ANSWERelement:first-of-type