C779 Pre Assessment
Which directive overrides normal cascading in CSS?
!Important
Which value of the opacity property in CSS3, represents completely opaque?
1.00
What is the maximum recommended file size for a web page in order to avoid long download times?
100KB
Which valid code shows a functional, formatted hyperlink reference?
<a href=http://www.wgu.edu>WGU</a>
Which attribute is used with the <img> tag to display text if the image fails to load?
<alt>
Which HTML5 tags is self-closing?
<br>
Which HTML5 element is used to draw graphics on a web page?
<canvas>
Which request method should be used in a form to append parameters into a query string?
<get>
Which two tags are containers for other tags?
<head> <body>
Which tag uses the manifest attribute to enable the offline support for a web page?
<html>
Which tag is a valid form field for exclusive use in HTML5?
<input type="email">
Which markup should be used to link a CSS document to a webpage?
<link rel= "stylesheet" type="text/css" href="theme.css">
Which tag should be added to ensure a responsive design in a webpage, and which will be accessed from a variety of devices?
<meta name="viewport" content="width=device-width, initial-scale=1">
Which two form elements should use the same name for groups of related elements?
<radio> <checkbox>
Which markup should be added to a form to create a drop-down list that allows users to select with three selectable options?
<select multiple> <option value="item1"> item 1 </option> <option value="item2"> item 2 </option><option value="item3"> item 3 </option></select>
Which two methods are used to apply Cascading Style Sheets (CSS)?
Embedding an internal style sheet in an HTML page. Linking an HTML page to an external style sheet.
Which two actions should be used to address users with visual impairments?
Ensure that pages support screen-reader apps. Provide text descriptions for images.
Which protocol should be used for publishing multiple files to a website?
FTP
Which multimedia technology did popular video sharing sites replace with Motion Picture Experts Group-4 (MP4) to address security concerns?
Flash
Which database type can store data in a single table only?
Flat File
Which property is used in CSS3 to specify the left or right alignment of an image?
Float
Which symbol with an href value tells the browser to look for an anchor within the current document?
Hash(#)
Which hosting solution required the purchase of hardware and software?
In-house
What are two characteristics of <!DOCTYPE>?
Instructs a web browser which HTML version to use. Read by an HTML validation engine.
What happens to data entered a web form after the Reset button is selected?
It is cleared and the form fields are set to their default values.
What is a working definition of ethics for a web designer?
Make choices to avoid violating the rights of people.
What are two characteristics of WYSIWYG editors?
Might fail to edit code that contains newer tags. Allow page creation by using a mouse.
What is a characteristic of a virtual server?
Multiple sites are hosted on individual servers.
Which HTML5 tag attribute should be supplied for an input field in a web form if submitted to the server?
Name
Which term describes the process of adding a pair of tags within another pair of tags?
Nesting
An organization plans to update a web page that has a multitiered architecture. The developer needs to ensure that a web page will function as expected before deploying the updates. Where should the developer perform regression testing?
On a clone of production machines.
What is an ethical risk to emailing surveys to people other than existing customers?
Organizations could be labeled as spammers.
Which method type securely sends form data that required additional processing by the GCI script?
Post
Which HTML tag is used to display text exactly as it is defined in the HTML markup?
Pre
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?
Purple
Which audience development technique can initiate an interaction with an online visitor?
Push technology
Which input tag type value is used to create a group of mutually exclusive options?
Radio
Given the following markup code: <nav id="basenav"> green or black </nav> #basenav { color:red; } nav { color: blue; } Which color will the navigation element be?
Red
What is a benefit of using a virtual machine on a shared host?
Reduced cost with less physical equipment
Which type of address does the hyperlink ../about/map.html point towards?
Relative Uniform Resource Locator (URL)
Which table element is always required when adding a table to an HTML page?
Row
What happens when a site visitor views a web page that uses a font unavailable on the visitor's computer?
The browser's default font will be displayed.
Who is responsible for protecting a copyright?
The entity whose work is being used
A user reports that when Navigate to 001 is clocked, the web page fails to navigate to that page. Given the following code: <h3><a name="menu">Menu</a></h3> <ul> <li><a href="#">Navigate to 001</a></li> <li><ahref="#">Navigate to 002</a></li> <li><a href="#">Navigate to 003</a></li></ul> Why is the navigation failing to work as expected?
The location should be specified within the href.
Which HTML5 geolocation API process retrieves the user's latitude and longitude?
getCurrentPosition()
What is the benefit of a GUI editor?
Writes HTML code automatically
Which file type allows a client to integrate to a vendor's purchasing system by transmitting data points when a user clicks send?
XML
An organization has users which run older versions of Internet Explorer. What action should be done to ensure that that web page content is visible in all browsers?
Add JavaScript code to HTML documents and create a new CSS rule.
What enables applications to add updates to an interface without the need to refresh the page?
Ajax
What is used to give web applications the same responsiveness as desktop applications?
Ajax
Which HTML5 element structure is defined for company services and blogs?
Article
What are Syntactically Awesome Sheets (SASS) used for with regard to adding functionality?
As a CSS extension language for preprocessing.
Which code block should be used to set the background image for a webpage?
Body { background-image: url('paper.gif') }
Which test is designed to detect the automated systems used by spammers?
CAPTCHA
Which technique is used to reduce the number of calls for static files?
Caching
Which two points are specified when defining a circular hot spot?
Center Radius
Which hosting option allows a company to ship specific hardware to the provider?
Colocation service
Which responsibility is expected of a web project manager?
Communicating with all stakeholders.
Which advantage does a dedicated mobile website have, compared to a mobile application?
Cross-platform usability
What is the purpose of the W3C Authoring Tool Accessibility Guidelines?
To guide development of editors for developers with disabilities.
Which term describes a unique word, phrase, or symbol that is officially registered by an organization with the government?
Trademark
Which attribute is used to specify the format of a video file?
Type
Which pair of points is specified when defining a rectangular hot spot?
Upper left and lower right
What does the W3C Authoring Tool Accessibility Guidelines evaluate?
Usability of the GUI editor by a user with disabilities.
What is the purpose of the WebM MIME type?
Uses a file format to stream online videos
Which attribute should be used to add default text to an input tag of type text?
Value
Which graphical image type scales without losing image quality?
Vector
Which table property has top, bottom, and middle values?
Vertical-align
Which HTML5 element has a poster attribute?
Video
Which CSS state selectors show uninspected HREF's in red?
a:link {color:red;}
