WebQ3 IST 1154

1 September 2022
4.7 (114 reviews)
50 test answers

Unlock all answers in this set

Unlock answers (46)
question
Hierarchical, linear, and random
answer
Select the three most common methods of organizing websites.
question
provide alternative text for the images AND place text links at the bottom of the page
answer
Select the recommended design practice that applies to a website using images for main site navigation.
question
all of the above or under
answer
Consider _______ when designing for display on a mobile device.
question
use frames whenever possible
answer
Which of the following is not a web design recommended practice?
question
a different background color on each page
answer
Select the item below that does not belong in a consistent website design.
question
all of the above or under
answer
Select the items below that can help to appeal to the intended or target audience of a site.
question
visually grouped sections of hyperlinks
answer
The main site navigation or a section offering navigation choices should contain:
question
empty screen area around blocks of text and images
answer
Select the best description of "white space".
question
create the entire sentence as a hyperlink
answer
Select a good design recommendation for text hyperlinks.
question
1366 by 768
answer
Select the most popular screen resolution from those listed beow.
question
hierarchical
answer
Select the most commonly used site organization for commercial web sites.
question
Placing white space around graphics and headings helps them to stand out.
answer
Select the true statement below.
question
Animation should be used only if it enhances your web site
answer
Select the true statement below.
question
in different ways
answer
Different browsers and even different browser versions will display your web page ______.
question
Web Accessibility Initiative
answer
Select the group whose mission is to create guidelines and standards for web accessibility.
question
wireframe
answer
A ____________ is a sketch or blueprint of a web page that shows the structure (but not the detailed design) of basic page elements such as the logo, navigation, content, and footer.
question
perceivable, operable, understandable, robust
answer
The four principles of WCAG 2.0 are as follows:
question
proximity
answer
When applying the design principle of __________ related items are grouped together.
question
contrast
answer
Applying the design principle of __________ serves to add visual interest and draw attention.
question
fluid
answer
A page layout technique that often uses a percentage value for width is called _____________.
question
One Web
answer
The concept of _____________ relates to providing a single resource that is configured for optimal display on multiple types of devices.
question
responsive web design
answer
Progressively enhancing a web page for different viewing contexts (such as smartphones and tablets) through the use of coding techniques is called _________________________.
question
shade
answer
A ____ of a color is darker than the original color and is created by mixing the color with black.
question
tetradic
answer
A _______________color scheme consists of three colors that are equidistant on the color wheel.
question
class
answer
To apply a style to one or more elements on a web page, configure a CSS _____________.
question
padding, border, and margin
answer
The box model consists of a content area surrounded by:
question
padding
answer
The _______ is the area between the content and the border.
question
normal
answer
_________ flow displays the elements on the page in the order they appear in the web page source code.
question
relative
answer
Use ___________ positioning to slightly change the location of an element in relation to where it would otherwise appear when rendered by a browser.
question
a. .myfloat {float:right; margin:10px; border: 1px solid #000000; }
answer
The CSS to create the class called myfloat that floats to the right of the other page content, has a 10px margin, and a solid border is:
question
1 pixel
answer
The default value for the border property for an element is:
question
border
answer
When using the box model, the _____ is always transparent.
question
the style will apply to only one element on a page
answer
Use an id to configure a style when:
question
float:right;
answer
If an element is configured with ___________ the other content on the page will appear to its left.
question
margin:30px 0 0 150px;
answer
Which of the following configures a margin for an element with the following values: top margin 30 pixels, left margin 150 pixels, right margin 0 pixels, and bottom margin 0 pixels?
question
position:absolute;
answer
Use the ________ property along with the left, right and/or top property to precisely configure the position of an element.
question
clear or overflow
answer
Use the ________ or _______ property to clear a float.
question
/* comment */
answer
Choose the example below that configures a comment in CSS.
question
nav a
answer
Choose the example below of a descendent selector that configures the anchor tags with the nav element.
question
clear: right;
answer
Select the example below that could be used to clear a right float.
question
overflow: auto;
answer
Select the example below that configures a container to clear all floated elements that are within the container.
question
padding
answer
When configuring the background color of an element, the background color is applied to both the content and ______ areas.
question
list-style-image
answer
Use the _______________ property to configure an image to use as a bullet point in an unordered list.
question
link, visited, hover, active
answer
From the choices below select the correct order to code CSS pseudo-classes.
question
none
answer
Set list-style-type to the value ___________ to hide the display of the list markers on an ordered list.
question
hover
answer
The _______ pseudo-class configures the styles that will apply when the mouse is on a hyperlink.
question
link
answer
The _____ pseudo-class configures the appearance of the hyperlink before it is clicked.
question
article
answer
. Choose the HTML5 element below that is used to configure an area on a web page that can stand on its own and could potentially be syndicated.
question
wrapper
answer
Choose the item below that is not an HTML5 element.
question
#special a
answer
Choose the example below of a descendant selector that configures the anchor tags within the element assigned to an id named special.