The variable named "ctx" is the context of an HTML5 canvas object. What does the following code
fragment draw? ctx.arc(x, y, r, 0, Math.PI, true);
Show answer and explanation
Correct answer: C
98-375 Real Exam Questions
146 questions available · Page 1 of 15
Updated Exam DumpsVerified AnswersPass Guarantee
The variable named "ctx" is the context of an HTML5 canvas object. What does the following code
fragment draw? ctx.arc(x, y, r, 0, Math.PI, true);
Correct answer: C
Which three are valid JavaScript variables? (Choose three.)
Correct answers: A, C, D
Variable names must begin with a letter or special variable with either $ or _
Variable names are case sensitive (y and Y are different variables)
Which code fragment prepares the HTML5 application to be used offline?

Correct answer: B
Which two outcomes will this code fragment accomplish? (Each correct answer presents a complete solution. Choose two.)

Correct answers: A, B
Audio on the Web Until now, there has not been a standard for playing audio files on a web page.
Today, most audio files are played through a plug-in (like flash). However, different browsers may have different plug-ins.
HTML5 defines a new element which specifies a standard way to embed an audio file on a web page: the
<audio> element.
Browser Support
Internet Explorer 9+, Firefox, Opera, Chrome, and Safari support the <audio> element.
Example: <audio controls> <source src="/vcedump/questions/original/horse.ogg" type="audio/ogg"> <source src="/vcedump/questions/original/horse.mp3" type="audio/mpeg"> Your browser does not support the audio element. </audio>
You work as a senior developer at ABC.com. The ABC.com network consists of a single domain named
ABC.com.
You are running a training exercise for junior developers. You are currently discussing a technology that is described as a language that controls the formatting and style of a document.
Which of the following is the technology being discussed?
Correct answer: A
You work as a senior developer at ABC.com. The ABC.com network consists of a single domain named ABC.com. ABC.com makes use of HTML and CSS3 in their development process.
You have been instructed to develop an interface for a new ABC.com application that is touch-enabled.
You have been asked to make sure that multiple input areas are not triggered when a touch occurs.
Which of the following actions should you take?
Correct answer: B
DRAG DROP
Match the CSS position property values to the corresponding descriptions. (To answer, drag each value from the column on the left to its description on the right. Each value may be used once, more than once, or not at all. Each correct match is worth one point.)



You work as a senior developer at ABC.com. The ABC.com network consists of a single domain named
ABC.com.
You are running a training exercise for junior developers. You are currently discussing a position property value that is used when an element is positioned relative to the first positioned ancestor.
Which of the following is the value being discussed?
Correct answer: D
DRAG DROP
Match the HTML5 technologies to the corresponding descriptions. (To answer, drag the appropriate technology from the column on the left to its description on the right. Each technology may be used once, more than once, or not at all. Each correct match is worth one point.)



Which three code fragments define an HTML input control? (Choose three.)

Correct answers: C, D, E
HTML input types include:
button
checkbox
color
date
datetime
datetime-local
email
file
hidden
image
month
number
password
radio
range
reset
search
submit
tel
text
time
url
week
Note:
HTML Forms - The Input Element
The most important form element is the <input> element.
The <input> element is used to select user information.
An <input> element can vary in many ways, depending on the type attribute. An <input> element can be of type text field, checkbox, password, radio button, submit button, and more.