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 Post Assessment C777 Exam with 100% Correct Answers 2023

Rating
4.0
(1)
Sold
-
Pages
5
Grade
A+
Uploaded on
01-03-2023
Written in
2022/2023

Question 67 :How can you override a particular style in an HTML element if the HTML document is linked to a style sheet? - Correct answer-By applying an inline CSS style attribute to the element whose style you want to override. Explanation: Answer C is correct.The styles you define in a style sheet will flow, or cascade, throughout the documents to which it is attached, unless another style defined inside of a page specifically overrides it. The style defined in an HTML element is called an inline CSS style. You can apply CSS styles to HTML documents in several ways. You can: declare an inline CSS style attribute in an HTML element, link an HTML page to an external style sheet, and embed an internal style sheet in an HTML page. Question 68 :What is the purpose of using the output element in a Web form? - Correct answer-It displays the result of a calculation in the form. Explanation: Answer D is correct. When a Web page form performs a calculation for the user, the result (or output) of the calculation can be displayed by using the HTML5 output element. Calculations are usually performed by a script, but the output element provides semantic meaning to the calculation results. The HTML5 keygen element is used to generate a key pair to add security in an HTML form. The HTML5 datalist element provides pre-defined options that sort and autocomplete themselves as users type into the field. The input element generates various form field types, depending on the attribute specified with it. Which of the following is a JavaScript event that occurs when a page opens in the browser? - Correct answer-Load Explanation: Answer C is correct.The load event occurs when the page opens, or loads, in the browser. The unload event occurs when the user leaves the page to go to a new page. It is important that you do not confuse user-driven events with script-driven event handlers. The onload event handler determines the response that will occur upon the load event. The onunload event handler determines the response that will occur upon the unload event. A Web designer who assigns percentage values to elements using the HTML structural elements is using what page-layout method? - Correct answer-Liquid Explanation: Answer D is correct.The liquid layout is achieved by assigning percentage values to elements using the HTML structural elements or the div tag. With this layout, the size of an element is flexible and will change dynamically depending on the size of the browser window. A fixed-width layout is achieved by assigning specific pixel widths to elements. This layout ensures that the text, images and layout will not vary from browser to browser. Question 71 :In an article about using inline validation in HTML5 forms, Maik reads that users typically find these forms to be easier and faster to complete. What feature on inline validation would cause this result from form users? - Correct answer-Users can resolve errors as they go along and submit the completed, validated form just once. Question 72 :Each time a user logs on to a service, shops or conducts online business, he or she is filling information into: - Correct answer-an HTML form. Question 73 :To change the position of a transformed element in CSS3, you use the: - Correct answer-transform-origin property. Question 74 :Which statement about modern Web design is true? - Correct answer-The design of mobile Web pages requires some differences from pages designed for desktop computers. Many markup code validators exist, but the most authoritative is the W3C Markup Validation Service. How does the W3C Markup Validation Service determine to what HTML standard to validate your code? - Correct answer-It reads the !DOCTYPE declaration on an HTML page and validates according to the specified DTD. When you define a named function in JavaScript, you begin the function block with the keyword function followed by the function name. The rest of the statements that form the function must be enclosed in: - Correct answer-curly brace { } characters. Sarah has written several JavaScript scripts for her Web site, but she realizes that implementing the scripts may be complicated by the fact that people may view her pages using different user agents and user agent versions. What should Sarah do to ensure that her scripts will run correctly without knowing what user agent a person will use to view her pages? - Correct answer-Test her scripts in the latest versions of popular browsers. Because JavaScript programs are typically designed to run within HTML documents, they are not tied to any specific hardware platform or operating system. However, JavaScript programs are tied to a specific user agent. Generally, these user agents are browsers. Each user agent tends to implement JavaScript differently. Different vendors and user agent versions can complicate your JavaScript implementation. Because you usually cannot guarantee that a user will access your JavaScript code using a specific user agent, take care to create code that will run on as many platforms as possible. At a minimum, you should test your scripts in the latest versions of Internet Explorer, Firefox, Chrome and Safari. Which CSS3 property can be used to apply a delay effect when an element changes from one style to another, such as when a user hovers over an element? - Correct answer-transition Consider the following Cascading Style Sheets (CSS) rule: body {color: #;} Which is the "declaration" portion of this rule? - Correct answer-The portion inside the curly braces Question 80 :Which of the following methods returns a value in the form of a text string? - Correct answer-Some methods can return values. The prompt()method returns a value in the form of a text string, which you can then pass to a variable or to another method, such as alert(). The alert() and click() methods do not return values. The () method also does not return a value to any other variable or function. Question 83 :What CSS3 property can be used to create rounded corners on an image or other element? - Correct answer-border-radius Question 82 :The CSS3 @font-face rule requires you to specify which two properties? - Correct answer-font-family and src Question 84 :A positive Z-index value usually places an element where? - Correct answer-In front of other elements Question 85 :Why is it important to test your JavaScript code in as many browsers as possible? - Correct answer-Because different browsers sometimes implement JavaScript differently Question 86 :Which of the following statements about validating markup is true? - Correct answer-If a code validator finds an error, the remaining code on the page may fail validation, even if the remaining code is actually valid. When validating your markup code, sometimes one small flaw can cause the remaining code on the page to fail validation, even if the remaining code is actually valid. Sometimes when a validation program finds a problem, it does not report the correct cause or it may not report the cause clearly. Many code validators, such as the W3C Markup Validation Service, read the !DOCTYPE declaration on an HTML page and validate according to the specified DTD. Question 87 :Which HTML5 attribute can help users input valid form data in the textarea element by providing the user with a hint identifying the expected input in the field? - Correct answer-The placeholder attribute Question 88 :Which scripting language is most commonly used within Microsoft's proprietary programs, such as Word and Excel? - Correct answer-VBScript Question 89 :You are a novice Web developer, and your mentor has suggested that you familiarize yourself with HTML5 and Cascading Style Sheets (CSS). Being somewhat unfamiliar with CSS, you discover that it is: - Correct answer-a Web design technology that enables you to determine how the HTML elements in your Web pages will display . What is another common name for the technique of requesting and reusing data using the JavaScript XMLHttpRequest object with HTML pages and CSS? - Correct answerAJAX Explanation: Answer D is correct.The technique of requesting and reusing data using the JavaScript XMLHttpRequest object with HTML pages and CSS is often called AJAX (Asynchronous JavaScript and XML). Question 91 :Which choice correctly describes two benefits of Cascading Style Sheets (CSS)? - Correct answer-CSS provides a consistent look and feel to site pages, and simplifies change management issues. Question 92 :To position an element behind another element, you can assign a negative value to: - Correct answer-the Z-index property. Correct Question 93 :What is the term for a relatively small application developed exclusively for mobile devices? - Correct answer-App Question 94 :Consider the following code:var yearBirth = "1956";What variable data type does this snippet of code represent? - Correct answer-String Question 95 :Probably the most important rule for designing any Web site is: - Correct answer-Give your users what they want, when they want it. Probably the most important rule for designing any Web site is: "Give the users what they want, when they want it." When you are designing Web sites for use on mobile devices, you must also consider some additional challenges: smaller screen sizes, touchscreen use, and demand for quicker action "on the go." Question 96 :What three technologies used together provide Web pages that easily adapt to smartphones, tablets, gaming devices and smart TVs, as well as to traditional computers? - Correct answer-HTML5, Cascading Style Sheets (CSS) and JavaScript Question 97 :Which statement about the Document Object Model (DOM) is true? - Correct answer-The DOM provides a standard interface so you do not need to develop multiple versions of your scripts tailored for each browser. Your form has a field for users to enter an e-mail address. You use input type="email" to create the field. What other HTML5 attributes could you use with the "email" input type to most effectively ensure that users do not inadvertently enter an extra space, an invalid format or an irrelevant answer? - Correct answer-pattern, placeholder, required

Show more Read less
Institution
WGU Post Assessment C777
Course
WGU Post Assessment C777









Whoops! We can’t load your doc right now. Try again or contact support.

Written for

Institution
WGU Post Assessment C777
Course
WGU Post Assessment C777

Document information

Uploaded on
March 1, 2023
Number of pages
5
Written in
2022/2023
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

$10.69
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

Reviews from verified buyers

Showing all reviews
3 year ago

3 year ago

Thank you for your review , all the best in your exam

4.0

1 reviews

5
0
4
1
3
0
2
0
1
0
Trustworthy reviews on Stuvia

All reviews are made by real Stuvia users after verified purchases.

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.
Tulips EXAM
Follow You need to be logged in order to follow users or courses
Sold
143
Member since
3 year
Number of followers
118
Documents
1507
Last sold
2 months ago
Myles orchid store

THE EASIEST WAY TO STUDY NURSING EXAMS,STUDY GUIDES,TESTBANKS AND QUALITY EXAMS Better grades start here! Find Study Notes, Exam answer packs, Assignment guided solutions and more. Study faster & better. Always leave a review after purchasing any document so as to make sure our customers are 100% satisfied.....All the Best!!!!!!

3.9

26 reviews

5
12
4
8
3
1
2
2
1
3

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