Pre-Summer Sale 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: exams65

ExamsBrite Dumps

HTML5 Application Development Question and Answers

HTML5 Application Development

Last Update May 31, 2026
Total Questions : 68

We are offering FREE INF-306 IT Specialist exam questions. All you do is to just go and sign up. Give your details, prepare INF-306 free exam questions and then go for complete pool of HTML5 Application Development test questions that will help you more.

INF-306 pdf

INF-306 PDF

$36.75  $104.99
INF-306 Engine

INF-306 Testing Engine

$43.75  $124.99
INF-306 PDF + Engine

INF-306 PDF + Testing Engine

$57.75  $164.99
Questions 1

You need to identify the form elements.

Move the appropriate semantic elements from the list on the left to the correct locations on the right.

Note: You will receive partial credit for each correct response.

Options:

Discussion 0
Questions 2

What is the effect of applying the CSS float: right property to an image?

Options:

A.  

It positions the image to the right of the region and wraps text around the top, left, and bottom.

B.  

It positions the image to the right and wraps text to the top and bottom.

C.  

It positions the image to the left and displays all of the text to the right of the image.

D.  

It positions the image to the left of the region and wraps text around the top, right, and bottom.

Discussion 0
Questions 3

The development team just released a new version of an app for your team to test. Which three tasks should you perform during testing? Choose 3.

Options:

A.  

Check application functionality to ensure it works correctly.

B.  

Ask customers to submit bugs or problems.

C.  

Find any defects in the app.

D.  

Ensure that the app meets the design specifications.

E.  

Check for syntax errors.

F.  

Ask customers to submit feature requests.

Discussion 0
Questions 4

You need to ensure that the value of an input element is a valid 10-digit phone number with no symbols. The input element should initially display all zeroes, but that value should never be stored with the form.

Complete the markup by selecting the correct option from each drop-down list.

Options:

Discussion 0
Questions 5

Which code segment correctly displays images with 80% transparency and a blue 8px shadow?

Options:

A.  

filter: saturate(80%) drop-shadow(8px 8px blue);

B.  

filter: saturate(20%) box-shadow(8px 8px blue);

C.  

filter: opacity(80%) box-shadow(8px 8px blue);

D.  

filter: opacity(20%) drop-shadow(8px 8px blue);

Discussion 0
Questions 6

You need to contain overflowing text inside the element ' s border without creating unneeded scrollbars or losing text. Which attribute setting should you use?

Options:

A.  

overflow: hidden;

B.  

overflow: auto;

C.  

overflow: visible;

D.  

overflow: scroll;

Discussion 0
Questions 7

You need to complete the code for a registration form that must meet the following criteria:

• The Password must be 6–8 characters long and use only letters and numbers.

• The Member ID must follow the pattern ###-##-###.

Complete the markup by selecting the correct option from each drop-down list.

Note: You will receive partial credit for each correct selection.

Options:

Discussion 0
Questions 8

A form has four buttons with a class of item. You need to apply an event listener to all buttons to invoke the moveElement function when a button is pressed. Your code must ensure bubble capture.

Complete the markup by selecting the correct option from each drop-down list.

Note: You will receive partial credit for each correct selection.

Options:

Discussion 0
Questions 9

Which markup segment creates an SVG ellipse?

Options:

A.  

< svg height= " 140 " width= " 500 " > < ellipsp x= " 200 " y= " 80 " rx= " 100 " ry= " 50 " fill= " green " stroke-width= " 2 " / > < /svg >

B.  

< svg height= " 140 " width= " 500 " > < ellipse x= " 200 " y= " 80 " x= " 100 " y= " 50 " fill= " green " stroke-width= " 2 " / > < /svg >

C.  

< svg height= " 140 " width= " 500 " > < ellipse cx= " 200 " cy= " 80 " x= " 100 " y= " 50 " fill= " green " stroke-width= " 2 " / > < /svg >

D.  

< svg height= " 140 " width= " 500 " > < ellipse cx= " 200 " cy= " 80 " rx= " 100 " ry= " 50 " fill= " green " stroke-width= " 2 " / > < /svg >

Discussion 0
Questions 10

You need to define a grid that meets the following requirements:

• Explicitly sets the width of 6 equal columns of 1 fraction

• Explicitly sets 5 varied sized rows

• Defines 15px of space between each grid column

• Defines 10px between each grid row

Complete the code by selecting the correct option from each drop-down list.

Options:

Discussion 0
Questions 11

You are given the design for an app. The project manager asks you to outline the steps you must take to release and maintain the app.

Move each step from the list on the left to its correct sequence in the application lifecycle on the right.

Note: You will receive partial credit for each correct response.

Options:

Discussion 0
Questions 12

Which two functions support 2D transformations in CSS3? Choose 2.

Options:

A.  

move()

B.  

scroll()

C.  

matrix()

D.  

skew()

E.  

zoom()

Discussion 0
Questions 13

Which element should you use to rotate an SVG square?

Options:

A.  

animateMotion

B.  

animateTransform

C.  

circle

D.  

path

Discussion 0
Questions 14

You need to correctly apply a style rule for screen devices with a width of 480 pixels or less.

Complete the code by selecting the correct option from the drop-down list.

Options:

Discussion 0
Questions 15

Review the markup segment. Which entry will validate successfully according to the required pattern?

Options:

A.  

kukX-04-4938-WJDF

B.  

Kgyn-23-3978-Uhj6

C.  

y7Ts-A34876-ASFr

D.  

AGbe-23h-234-HBG6

Discussion 0
Questions 16

You want to display a message box showing the user ' s current latitude and longitude as identified by the user’s browser.

Complete the code by selecting the correct option from each drop-down list.

Note: You will receive partial credit for each correct selection.

Options:

Discussion 0
Questions 17

You define the Pet class as follows:

class Pet {

constructor(name, breed) {

this.name = name;

this.breed = breed;

this.show = function() {

var text = " < p > Your pet ' s name is " + name + " . The pet ' s breed is " + breed + " . < /p > " ;

return text;

};

}

}

You need to derive a Dog class from the Pet class.

Complete the code by selecting the correct option from each drop-down list.

Note: You will receive partial credit for each correct selection.

Options:

Discussion 0
Questions 18

You create an interface for a touch-enabled application. Some input buttons do not trigger when tapped. What are two possible causes?

Options:

A.  

The input areas are using event handlers to detect input.

B.  

The defined input areas are not large enough.

C.  

The touch screen is not initialized.

D.  

The input areas overlap with other input areas.

Discussion 0
Questions 19

Which three methods are associated with the HTML5 localStorage API? Choose 3.

Options:

A.  

setItem

B.  

removeItem

C.  

write

D.  

cookie

E.  

clear

Discussion 0
Questions 20

You need to use CSS to create the layout shown:

Review the layout shown on the left.

Complete the markup by selecting the correct option from each drop-down list.

Note: You will receive partial credit for each correct selection.

Options:

Discussion 0