MULTIPLE CHOICE
- While designing websites for mobile devices, _____ colors should be used so that pages are easily visible in outdoor lighting.
- contrasting
- red and blue
- darker
- lighter
- According to Ethan Marcotte's responsive design theory, _____ is a primary component that ensures that the page layout of websites automatically adjusts to screens of different widths.
- contrasting colors
- responsive images
- flexible layout
- media queries
- _____ are used to associate a style sheet or style rule with a specific device or list of device features.
- Flexible layouts
- Responsive images
- Viewports
- Media queries
- Identify the
link
element that accesses a style sheet file named output.css only when the device is a printer or a projection device.- <*link href="output.css" media="print&&projection" />
- <link *href="&output.css" ="print, projection" />
- <link href="output.css" media="print, projection" />
- <link href="output.css" ="*print, *projection" />
- The _____ is a possible media type value for the
media
attribute.- flexi
- embossed
- lnk
- view
- The _____ media type value for the
media
attribute is used for paged Braille printers.- braille
- embossed
- handheld
- screen
- Identify the
media
rule that must be included in a Cascading Style Sheet (CSS) file so that media queries can be used to associate specific style rules with specific devices.- #media devices {
style rules
} - &media devices {
style rules
} - @media devices {
style rules
} - *media devices {
style rules
}
- #media devices {
- Identify the Cascading Style Sheet (CSS) rule that imports a file named screen.css only when a screen or projection device is being used.
- @import url("screen.css") screen, projection;
- #import url("screen.css") screen, projection;
- @import url("screen.css") screen&&projection;
- @import url("screen.css") *screen, *projection;
- To target a device based on its features, identify the syntax used to add a feature and its value to the media attribute.
- @media="devices and|or (feature:value)"
- media="devices and|or (feature:value)"
- media="devices and&&or (feature:value)"
- media="devices and|or (*feature:value)"
- The _____ is a device feature that gives the ratio of the width of the display area to its height.
- index-ratio
- display-ratio
- aspect-ratio
- orientation-ratio
- Identify the media query that applies style rules only to screens that are at least 300 pixels wide.
- @media screen and (min-width: 300px) {
style rules
} - media screen and (@min-width: 300px) {
style rules
} - media screen and (least-width: 300px) {
style rules
} - @media screen and (@minwidth: 300px) {
style rules
}
- @media screen and (min-width: 300px) {
- Multiple media features can be combined using _____.
- real-time operators
- logical operators
- relational operators
- dimensional operators
- Identify the query that matches any screen device that also supports color.
- @media screen and color {
style rules
} - media (@screen) and (@color) {
style rules
} - @media screen and @(color) {
style rules
} - @media screen and (color) {
style rules
}
- @media screen and color {
- For older browsers that do not support media queries, Cascading Style Sheets (CSS) 3 provides the _____ keyword to hide style sheets from those browsers.
- initial
- none
- only
- auto
- Web pages are seen within a window called the _____.
- wireframe
- navigator
- prototype
- viewport
- Mobile devices have a _____ containing the entire content of the page, some of which may be hidden from a user.
- layout viewport
- navigating viewport
- wireframe viewport
- contextual viewport
- The problem wherein the user needs to scroll vertically down the web page to view information on a mobile device can be resolved by using _____.
- pulldown menus
- navigation viewports
- horizontal wireframes
- contextual data
- Identify the selector that should be used to let a submenu remain visible even when the pointer moves away from the title and hovers over the non-visible submenu.
- a.submenuTitle:hover+ul.submenu, hover: ul.submenu
- a.submenuTitle:hover+ul.submenu, ul.submenu:hover
- a.submenuTitle:hover+ul.submenu, *ul.submenu:&hover
- a.submenuTitle:hover+ul.submenu, ul.submenu:@hover
- A mobile browser will interpret a _____ event as a tap event in which a user taps a page object.
- block
- compilation
- selection
- hover
- When a hover event is used to hide an object or display it, mobile browsers employ a _____ event.
- double-tap
- compilation
- selection
- highlight-text
- When a hover event is used to hide an object or display it, mobile browsers employ a double-tap event in which the _____ displays the page object.
- first tap
- second tap
- title toolbar
- texting event
- An alternative to direct testing of mobile interfaces on all mobile devices is the use of _____.
- mobile device spurs
- mobile device synchronizers
- mobile device emulators
- mobile device initiators
- While creating a website for tablet design, to display the submenus horizontally rather than vertically, a style rule needs to be added to the tablet media query to _____.
- display the submenus one after the other
- float the submenus side-by-side
- reduce the width of the submenu display bars
- partially overlap the submenu titles
- To make the submenus in a tablet device overlay the page content, the submenus should be placed with _____.
- relative positioning
- z-index positioning
- incremental positioning
- absolute positioning
- While creating a website for tablet design, to keep the submenus in their current position on a page, one needs to make each main list item a container for its submenu by setting its position property to _____.
- relative
- actual
- logical
- absolute
- When submenus overlay page content, a(n) _____ should be added so that when a submenu is opened, it will stand out more from the page content.
- relative element
- drop shadow
- logical tag
- absolute position
- _____ can be used to have a single specification that automatically adapts itself to the screen width without requiring a new layout design.
- Flexible boxes
- Drop shadows
- Logical tags
- Absolute positioning
- Items within a flexbox are laid out along a _____, which can point in either the horizontal or vertical direction.
- void axis
- main axis
- sub axis
- cross axis
- In the context of a flexible box, perpendicular to the main axis is the _____, which is used to define the height or width of each item.
- flow axis
- logic axis
- void axis
- cross axis
- Identify the
flex-direction
property that is used to change the orientation of a flexbox.- flex-direction: orient_direction;
- flex-direction: direction;
- @flex-direction: direction;
- flex-direction: *direction;
- If flex items are unable to fit within a single line, identify the
flex-wrap
property used to wrap those items to a new line.- flex-wrap: type<flexbox>;
- flex-wrap: @type;
- @flex-wrap: type;
- flex-wrap: type;
- Identify the correct
flex-flow
style that combines both theflex-direction
andflex-wrap
properties.- flex-flow: direction wrap;
- flex-flow: direction||wrap;
- flex-flow: direction&&wrap;
- flex-flow: flex-direction, flex-wrap;
- Identify the default
flex
value that spontaneously sets the size of a flex item to match its content or the value of itswidth
andheight
property.- flex: 0 1 initial;
- flex: 0 1 none;
- flex: 0 1 inherit;
- flex: 0 1 auto;
- In Cascading Style Sheets (CSS) every printed page is defined as a _____.
- boxed element
- boxed schema
- page schema
- page box
- A page box is composed of a _____, which contains the content of a document.
- page element
- page schema
- page area
- page layout
- Identify the
page
rule using which styles are applied to a page box.- #page {
style rules
} - @page {
style rules
} - *page {
style rules
} - <page> {
style rules
}
- #page {
- Identify the correct format to set the size of a page margin to 0.5 inches.
- @page {
*margin: 0.5in
} - @page {
margin: 0.5in;
} - @page {
<margin>: 0.5in;
} - @page {
margin: (0.5in);
}
- @page {
- Identify the format for manually inserting a page break directly before an element.
- before(page-break): type;
- page-break-before: type;
- <page-break/>before: type;
- page-break: *before-type;
- For each h1 heading to start on a new page, identify the style rule that should be used to insert a page break before each heading.
- h1 {
page-break-before: always;
} - h1 {
page-break-before: auto;
} - h1 {
page-break-before: inherit;
} - h1 {
page-break-before: content;
}
- h1 {
- A page break can be prevented from being added before or after a heading by using the keyword _____ in the
page-break-before
orpage-break-after
properties.- hide
- stop
- avoid
- block
- Identify the
page-break-inside
property that prevents printers from inserting a page break.- page-break-inside: always;
- page-break-inside: type;
- page-break-insert: avoid;
- page-break-insert: type;
- Page breaks within block elements can often leave behind _____, which is a fragment of text left dangling at the top of page.
- lags
- orphans
- widows
- gaps
- Page breaks within block elements can often leave behind _____, which is a text fragment left at the bottom of a page.
- lags
- orphans
- widows
- gaps
- The desktop version of the website contains a long list of hyperlinks and this can obstruct the view of the main content when viewed from a mobile device. Which of the following should Alex use to hide this long list of hypertext links so that it appears only in response to a tap of a major heading in the navigation list?
- Pop-up links
- Header links
- Navigator menus
- Pulldown menus
- For the AllStyles's main web page, Alex creates a navigation bar that includes topical areas named Clothing, Accessories, and About Us. Alex wants to create nested lists within each of these topical areas that would contain links to specific pages on the AllStyles website. In order to do so, Alex must _____ while writing the HTML code.
- set the width of the layout viewport to the width of the nested lists
- put each of the nested lists within a class
- nsert the structure of the nested list within a specific style sheet structure
- use the
only
keyword to hide the list items
- Alex has placed each of the nested lists within a class called submenu. He wants to display a nested submenu only when the user hovers the mouse pointer over its associated submenu title. Which of the following selector formats should be used by Alex to select the submenu that is immediately preceded by a hovered submenu title?
- *submenuTitle:hover+<ul>submenu
- submenuTitle:@hover+ul.submenu
- a.submenuTitle:hover+ul.submenu
- a.submenuTitle: ul.submenu+hover
- To reduce the cluttered look of the web page, Jenny needs to separate the page content from page design. Which of the following properties must Jenny use to place the flex items in a desired order?
- align: value;
- order: value;
- justify: value;
- content: value;
- Jenny needs to change the existing layout where the flex items are laid down at the start of the main axis. Which of the following properties should Jenny use to specify a different placement for the flex items?
- align-content
- order-content
- justify-content
- organize-content
- Jenny wants to distribute the flex items in the magazine's website evenly with the first and last items aligned with the start and end of the main axis. Identify the keyword Jenny must assign to
value
in thealign-content: value;
property.- space-between
- space-around
- space-under
- space-above
Case-Based Critical Thinking Questions
Case 5-1 Alex, a web designer, is assigned the task of creating a mobile-device-friendly website for a leading fashion outlet called AllStyles. A desktop version of AllStyles's website already exists. Alex can refer to this desktop version of the website to create the mobile website design.
Case-Based Critical Thinking Questions
Case 5-2 Lara is the chief editor of "Laughter and Life," an online magazine. Lara has assigned Jenny the task of redesigning the magazine's website. Lara has supplied Jenny with all the necessary documents and images that are essential to enhance the look of the website. Lara's requirements necessitate the use of flexboxes to redesign the website.