Study Guide Question and answers
already passed 2025
* An organization has users which run older versions of Internet Explorer.
Which action should be done to ensure that that web page content is visible in
all browsers? - correct answer Add JavaScript code to HTML documents and
create a new CSS rule.
* What happens when a site visitor views a web page that uses a font
unavailable on the visitor's computer? - correct answer The browser's default
font will be displayed.
* Which two methods are used to apply Cascading Style Sheets aka CSS? -
correct answer Embedding an internal style sheet in an HTML page
Linking an HTML page to an external style sheet
* Which value of the opacity property in CSS3, represents completely
opaque? - correct answer 1.00
* Which directive overrides normal cascading in CSS? - correct answer !
Important
* What are Syntactically Awesome Style Sheets aka SASS used for with
regard to adding functionality? - correct answer As a CSS extension
language for preprocessing
,* Given the following CSS: p{color: red;} p{color: yellow;} p{color: green;}
p{color: purple;} Which color is used when text in the referenced paragraph
displays? - correct answer Purple
* Given the following markup and code: <nav id="basenav"> green or black
</nav> #basenav { color: red; } nav { color: blue; } Which color will the
navigation element be? - correct answer Red
* Which code block should be used to set the background image for a web
page? - correct answer body { background-image: url('paper.gif') }
* Which HTML tag is used to display text exactly as it is defined in the HTML
markup? - correct answer Pre
* Which CSS state selectors show uninspected HREFs in red? - correct
answer a:link { color:red; }
* Which type of address does the hyperlink ../about/map.html point towards? -
correct answer Relative Uniform Resource Locator (URL)
* Which attribute is used with the <img> tag to display text if the image fails to
load? - correct answer alt
* Which property is used in CSS3 to specify the left or right alignment of an
image? - correct answer float
* Which attribute is used to specify the format of a video file? - correct answer
type
, * Which symbol with an href value tells the browser to look for an anchor
within the current document? - correct answer Hash (#)
* Which valid code shows a functional, formatted hyperlink reference? -
correct answer <a href="http://www.wgu.edu">WGU</a>
* Which pair of points is specified when defining a rectangular hot spot? -
correct answer Upper left and lower right
* Which two points are specified when defining a circular hot spot? - correct
answer Center
Radius
* Which table element is always required when adding a table to an HTML
page? - correct answer Row
* Which two actions should be used to address users with visual impairments?
- correct answer Ensure that pages support screen-reader apps.
Provide text descriptions for images.
* Which two tags are containers for other tags? - correct answer <head>
<body>
* Which term describes the process of adding a pair of tags within another pair
of tags? - correct answer Nesting