NEWEST 2 VERSIONS AND PRACTICE QUESTION EXAM
WITH 500 QUESTIONS FROM ACTUAL EXAM AND 100%
CORRECT ANSWERS/ALREADY GRADED A+
<!DOCTYPE> - ANSWER: The 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) - ANSWER: A source code specification that
enables components of an application or program to work together to produce the
desired functionality.
Canvas - ANSWER: An HTML5 used for rendering visual images on the fly by
providing scripts with a bitmap canvas.
cascading Style Sheets (CSS) - ANSWER: A 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 - ANSWER: A video codec supported by HTML5-compliant browsers that does
not require a plug-in; uses less battery and processing resources.
JavaScript - ANSWER: scripting language that adds dynamic interactivity to Web
pages. Generally used on client side but can also be used on server side
MPEG-4 (MP4) - ANSWER: A streaming, digital multimedia format used to store
video, audio, subtitles and still images.
Ogg - ANSWER: An open-source audio and video format used for streaming digital
multimedia. Uses the Theoracodec for compression.
WebM - ANSWER: An 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. -
ANSWER: selector
A ___________ is a format instruction that consists of a specified selector and the
properties and values applied to it. - ANSWER: rule
A ____________ declaration selector rule curly braces semicolon inheritence
comment
consists of a property and its value. - ANSWER: declaration
,To define multiple declarations for one selector within a rule, you must separate
each declaration with a
______________. - ANSWER: semicolon
Except when declaring inline styles, you must place properties and their values
within _____________ . - ANSWER: curly 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. -
ANSWER: comment
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
_____________. - ANSWER: inheritence
background-color: #008080; - ANSWER: Declaration
body {background-color: #008080;} - ANSWER: rule
#008080; - ANSWER: value
body - ANSWER: selector
background-color; - ANSWER: property
Where do you place link for external style sheet - ANSWER: <head> </head>
The element remains in the same position when the page is scrolled - ANSWER: Fixed
The normal, or default, position of the element within a page. - ANSWER: Static
The element appears to float above the document and can be positioned as needed.
- ANSWER: Absolute
The element gets its position from the parent element. - ANSWER: Inherit
The element's position is affected by other elements on the page, usually because of
the top, bottom, left, and right properties. - ANSWER: Relative
In the CSS Box Model, the innermost box. - ANSWER: Content
Achieved by assigning specific pixel widths to elements - ANSWER: Fixed-width
layout
, In the CSS Box Model, the outer-most box that immediately encloses the border -
ANSWER: Margin
Specifies the typeface to be used - ANSWER: Font-family
Also known as relative width or fluid layout - ANSWER: Liquid layout
Change the way a selector renders in a browser - ANSWER: Property
Also know as cascading, the way that styles flow throughout a document or site -
ANSWER: inheritence
In the CSS Box model, the box that immediately encloses the padding - ANSWER:
Border
In the CSS Box Model, the defined are that immediately encloses the content -
ANSWER: Padding
Defines the file type, such as text or video, and the extension, such as css or mp4, for
a user agent or browser - ANSWER: Multipurpose 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 - ANSWER: property
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: -
ANSWER: support HTML5 in older IE browsers
What is the default value for aligning images relative to text using CSS? - ANSWER:
Bottom
CSS3: Selects every instance of a specified element whose specified attribute ends
with the specified value - ANSWER: element[attribute$=value]
CSS3: Selects every instance of a specified element whose specified attribute
contains the specified substring value - ANSWER: element[attribute*=value]
Selects every instance of a specified element whose specified attribute begins with
the specified value - ANSWER: element[attribute^=value]
CSS3:Selects every checked instance of a specified element - ANSWER:
element:checked
CSS3:Selects every disabled instance of a specified element - ANSWER:
element:enabled