Verified Multiple Choice and Conceptual Actual
100% Correct Detailed Answers
Guaranteed Pass!!Current Update!!
1. How can you link an HTML document to an AppCache manifest file named
date.appcache?
A) By adding the appcache="date.appcache" attribute to the <html> tag
B) By adding the manifest="date.appcache" attribute to the <body> tag
C) By adding the manifest="date.appcache" attribute to the <html> tag
D) By adding the appcache="date.appcache" attribute to the <body> tag -
ANSWER By adding the manifest="date.appcache" attribute to the <html> tag
2. jQuery's DOM-related methods provide a simpler way to access and
manipulate HTML elements and attributes. HTML elements are selected and
jQuery performs various actions on them using the following code:
$(selector).action()
Which portion of this code specifies and accesses jQuery?
A) (selector)
B) action()
C) (selector).action()
D) $ - ANSWER $
,3. Why is it challenging to use images in your page designs for mobile sites?
A) Because images are required for hyperlinks but generally do not work well
B) Because of size constraints in device screens and memory
C) Because plug-ins are required in order to view the images
D) Because images do not provide essential content, only visual appeal - ANSWER
Because of size constraints in device screens and memory
4. What is the default security algorithm used with the HTML5 <keygen>
element?
A) RGBA
B) EC
C) DSA
D) RSA - ANSWER RSA
5. Roshon wants to create an HTML5-compliant page that has four sections: a
section that contains the site navigation links, top and bottom sections that
contain a logo and copyright information, and a section that contains the main
message of the page. Which elements should Roshon use to create these
sections?
A) The <header>, <footer>, <nav> and <aside> elements
B) The <header>, <footer>, <article> and <aside> elements
C) The <main>, <nav>, <article> and <aside> elements
D) The <header>, <footer>, <nav> and <main> elements - ANSWER The
<header>, <footer>, <nav> and <main> elements
, 6. Consider the following code:
function dateTodayTomorrow(a, b)
{
a.concat(b);
return a.valueOf();
}
alert(dateTodayTomorrow('Wednesday','Thursday'));
What message will appear in the alert box when this script is run in the browser?
A) WednesdayThursday
B) Wednesday
C) ThursdayWednesday
D) Thursday - ANSWER Wednesday
7. Hugo has created an HTML document to which he has attached an external CSS
style sheet containing styles that define all HTML elements in the document. Hugo
wants to apply styles to his home page only that will override the style definitions
of the attached style sheet. How can he accomplish this?
A) Embed an internal style sheet.
B) Apply inline styles to each affected element.
C) Disassociate the HTML document from the external CSS style sheet.
D) Attach to the HTML document another HTML document containing the desired
styles. - ANSWER Embed an internal style sheet.