Pre-Summer Sale Special - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: sntaclus

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.

You are creating a form that requires the category to be entered as a two- or three-letter abbreviation. The input is mandatory.

You need to configure the input validation for the form.

Complete the markup by typing into the boxes.

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

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.

Review the grid container requirements and mockup on the left. Which markup should you use to define the grid container?

A.

Uses grid-template-columns and grid-template-rows with percentage and pixel sizing.

B.

Incorrectly places named area strings under grid-template-rows.

C.

Incorrectly places named area strings under grid-template-columns.

D.

.grid-container { display: grid; grid-template-areas: " heading heading heading heading heading heading " " menu content content content right right " " menu contact contact contact contact contact " ; grid-gap: 10px; background-color: orange; padding: 10px;}

Review the images on the left.

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

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

You need to display the following user interface:

Motorcycle

Truck

Boat

Car

Bicycle

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

Which two application features should you implement by using session storage? Choose 2.

A.

Saving customized UI/UX settings

B.

Saving temporary authentication tokens

C.

Passing form data to a confirmation page

D.

Saving game play status for future use

E.

Passing data to a function within a program

You need to display the following user interface:

A text input field that displays a selectable suggestion list containing:

Motorcycle

Truck

Boat

Car

Bicycle

You are creating a form that asks a user to enter their phone number. The form must be submitted only if the phone number field is not empty and matches the format 111-444-7777. Which markup should you use?

A.

< input type= " tel " name= " phone " maxlength= " 12 " required >

B.

< input type= " tel " name= " phone " pattern= " [0-9]{3}[0-9] {3}[0-9]{4} " >

C.

< input type= " tel " name= " phone " pattern= " [1]{3}-[4] {3}-[7]{4} " required >

D.

< input type= " tel " name= " phone " pattern= " [0-9]{3}-[0-9] {3}-[0-9]{4} " required >

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

A.

setItem

B.

removeItem

C.

write

D.

cookie

E.

clear