Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Exam (elaborations)

WGU C779 Test Prep - Web Development Foundations Already Passed

Rating
-
Sold
-
Pages
16
Grade
A+
Uploaded on
13-09-2022
Written in
2022/2023

WGU C779 Test Prep - Web Development Foundations Already Passed Which of the following accommodates Web users with vision impairment? Ensuring that all pages and page elements can be rendered by audio screen readers. What does XHTML use to format a page's appearance in the Web browser? HTML Which of the following was developed by the W3C to ensure core technologies used on the Web are equally accessible to all users, including disabled people? Web Accessibility Initiative (WAI) Which language was created by IBM to describe the information within a document, but not the formatting of it? SGML Which language can be used to describe the data in a Webpage? XML Providing a link from your Web site to another site without permission is considered: unethical Which issue is like to happen when you specify a particular font in an HTML Webpage? Some browsers may render your Webpages improperly. Which HTML 4.01 flavor must you use to place Webpages inside each other to create panes in the browser window? HTML 4.01 Frameset Which of the following is an American with Disabilities Act (ADA) compliance factor? You must provide text-based alternatives to all non-text content (e.g., Java applets). Which of the following can you use to create a markup language code? A text editor You have a contract job to create Webpages in HTML for a company based in Canada. How can you ensure usability as defined by the Canadian government for this company's disabled website users? Create pages according to acts passed by the Canadian government. When conducting a Web development project meeting, why might it be useful to have a third party deliver a summary of progress? A third party may help ensure clarity in meetings that include technical and non-technical participants. Which of the following is an element of an initial Website plan? Storyboard Which of the following accommodates Web users with vision impairment? Ensuring that all pages and page elements can be rendered by audio screen readers. After several meetings, your team's Web site plan has been developed. Which step is now necessary? Documenting the decisions for approval by all parties. Which activity is most likely to be necessary during a Website planning meeting? Explaining branding issues to members of the Web development team. What is the best source from which you can obtain feedback about your website to evaluate the site's effectiveness and determine ways you can improve the site? Sales representatives Why should you be sure to articulate the steps of the project cycle during a Web development project? To facilitate working closely with individuals and teams of individuals. What can you do to ensure continued attention when presenting your team's Website plan to upper management during a meeting? Use presentation software. Which step can most directly help your team follow up on decisions made during Web development meetings? Creating a list of action items and distributing minutes. Why might you consider using presentation tools during your meeting? Because presentation tools helps you convey information. Which method is the best way to ensure that your team gets high-quality, reliable, private feedback from trusted sources? Conducting in-person surveys Who should attend the Web project planning meeting that helps determine the audience and message for a Web site? Customer representatives, suppliers and shareholders. ...The images were simple "spacer" images that helped create a more uniform webpage. The images did not contain any logos or product-specific information. What violation may have nevertheless occurred? Copyright infringement During an oral presentation of plans for your company's new Website. What must you do to ensure that the stakeholders who are responsible for funding the project understand the goals of the site? Ensure that you clarify technical concepts for a non-technical audience. Another website used your logos and you suspect infringement on your copyright and trademark. Which step should your team leader take? Retain a lawyer and obtain advice. When creating markup code and designing Webpages, which of the following is an ethical point you should follow? All aspects of a Website are copyrighted, so you should not "borrow" images, text, logos, etc, etc without permission. You want to open the discussion for some brainstorming with those attending, and you want to write notes that encourage discussion and show everyone you are listening to all ideas. Which presentation tool is most effective for this purpose? Whiteboard Which strategy can help a Web team avoid copyright infringement? Conducting regular content reviews. When validating Web site design issues, which of the following might you need to change? The approach used to convey the company message. Which service provides the ability to automate the planning and operations of an entire organization? Enterprise resource planning (ERP) A cloud service provider has given you a price quote for the service you need to hire. Your team wants to negotiate. Which strategy can best help you obtain the lowest quote? Have the team manager contact the sales representative's manager. Which service is typically provided by a cloud service provider but not by an Internet Service Provider (ISP)? Software-as-a-service (SaaS) Which of the following would constitute an act of copyright infringement? Your company posts on its site, sample questions from another company's industry certification exam to help students study for the exam. You need to replace the script. Which choice describes some of the information you will need to obtain from your cloud service provider in order to upload a new script to the server? A user name What is the appropriate code for html5 doctype tag? !DOCTYPE html What is the purpose of the linktag in an HTML document? To create a link to a style sheet. Which code example demonstrates a valid container or non-empty tag in HTML? p/p Container or non-empty tags contain what? Opening and closing tags. Which of the following does the HTML head tag contain? The title tag You want to verify that the Webpages you create are compliant with an accessibility standard supported by a particular government. Which approach will verify your compliance most quickly? Validating the pages with an automated validation tool provided by the government. Which of these HTML elements is considered a text-level element? br What are some paragraph-level or block-level elements?

Show more Read less
Institution
Course

Content preview

WGU C779 Web Development
Foundations - Study Guide Latest 2022
* 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? ✔✔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? ✔✔The browser's default font will be displayed.


* Which two methods are used to apply Cascading Style Sheets aka CSS? ✔✔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? ✔✔1.00


* Which directive overrides normal cascading in CSS? ✔✔!Important


* What are Syntactically Awesome Style Sheets aka SASS used for with regard to adding
functionality? ✔✔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? ✔✔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? ✔✔Red

,* Which code block should be used to set the background image for a web page? ✔✔body {
background-image: url('paper.gif') }


* Which HTML tag is used to display text exactly as it is defined in the HTML markup? ✔✔Pre


* Which CSS state selectors show uninspected HREFs in red? ✔✔a:link { color:red; }


* Which type of address does the hyperlink ../about/map.html point towards? ✔✔Relative Uniform
Resource Locator (URL)


* Which attribute is used with the <img> tag to display text if the image fails to load? ✔✔alt


* Which property is used in CSS3 to specify the left or right alignment of an image? ✔✔float


* Which attribute is used to specify the format of a video file? ✔✔type


* Which symbol with an href value tells the browser to look for an anchor within the current
document? ✔✔Hash (#)


* Which valid code shows a functional, formatted hyperlink reference? ✔✔<a
href="http://www.wgu.edu">WGU</a>


* Which pair of points is specified when defining a rectangular hot spot? ✔✔Upper left and lower
right


* Which two points are specified when defining a circular hot spot? ✔✔Center


Radius

, * Which table element is always required when adding a table to an HTML page? ✔✔Row


* 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 two tags are containers for other tags? ✔✔<head>


<body>


* Which term describes the process of adding a pair of tags within another pair of tags? ✔✔Nesting


* Which multimedia technology did popular video sharing sites replace with Motion Picture
Experts Group-4 (MP4) to address security concerns? ✔✔Flash


* Which markup should be used to link a CSS document to a web page? ✔✔<link rel= "stylesheet"
type="text/css" href="theme.css">


* 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 graphical image type scales without losing image quality? ✔✔Vector


* Which HTML5 tag is self-closing? ✔✔<br>


* Which HTML5 element is used to draw graphics on a web page? ✔✔canvas

Written for

Course

Document information

Uploaded on
September 13, 2022
Number of pages
16
Written in
2022/2023
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

$9.99
Get access to the full document:

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF


Also available in package deal

Get to know the seller

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
BrilliantScores Chamberlain College Of Nursng
Follow You need to be logged in order to follow users or courses
Sold
2875
Member since
4 year
Number of followers
2237
Documents
16200
Last sold
1 week ago
latest updated documents, correct, verified &amp; graded A study materials

get bundles, documents, test banks, case studies, shadow health's, ATIs, HESIs, study guides, summary, assignments &amp; every kind of study materials.

3.8

782 reviews

5
391
4
118
3
118
2
38
1
117

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions