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

INF-306 Questions and Answers

Question # 6

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.

Question # 6

Full Access
Question # 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.

Question # 7

Full Access
Question # 8

A local photographer asks you to add filters as shown to the images in their photo gallery so that the images are not recognizable until authorized users log in.

Example of original and filtered images:

    Original image: full-color flower image

    Filtered image: blurred grayscale image

Question # 8

Analyze the images on the left.

Construct a CSS selector that will apply the appropriate filters to the images to meet the requirements.

Complete the markup by moving the appropriate HTML tags from the list on the left to the correct locations on the right. You may use each HTML tag once, more than once, or not at all.

Note: There is more than one correct markup. You will receive credit for any correct markup completion.

Question # 8

Full Access
Question # 9

Match each property to its corresponding value for creating the CSS flexible box layout.

Move each property from the list on the left to the correct value on the right.

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

Question # 9

Full Access
Question # 10

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

A.

setItem

B.

removeItem

C.

write

D.

cookie

E.

clear

Full Access
Question # 11

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

A.

move()

B.

scroll()

C.

matrix()

D.

skew()

E.

zoom()

Full Access
Question # 12

You are creating the styling for your webpage. Which two CSS attributes produce a scroll bar if your content overflows its element? Choose 2.

A.

hidden

B.

scroll

C.

visible

D.

auto

Full Access
Question # 13

Identify the filter applied to each image.

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

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

Question # 13

Full Access
Question # 14

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;}

Full Access
Question # 15

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.

Question # 15

Full Access
Question # 16

You need to create the following form:

Question # 16

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

Question # 16

Full Access
Question # 17

You need to implement media queries for the responsive layout of a new website.

Low-resolution wireframes for the desktop, tablet, and mobile layouts are shown.

Question # 17

Full Access
Question # 18

You want to position a specific element so that it always directly follows the previous element, which is positioned by default, regardless of the viewport characteristics. Which positioning method should you use?

A.

absolute

B.

fixed

C.

static

D.

sticky

Full Access
Question # 19

Which three events are valid for the HTML canvas element? Choose 3.

A.

mouseup

B.

scroll

C.

play

D.

datareceived

E.

blur

Full Access
Question # 20

You need to create the layout shown, which defines five content areas:

    Logo and page title

    Menu

    Main content area

    Additional content area

    Copyright and contact information

You define the following classes:

A.

.grid-container { display: grid; grid-template-columns: 33% 33% 33%; grid-template-rows: 300px 500px 300px; grid-gap: 10px; background-color: orange; padding: 10px;}

B.

.grid-container { display: grid; grid-template-rows: " 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;}

C.

.grid-container { display: grid; grid-template-columns: " 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;}

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;}

Full Access