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

Pass the IT Specialist Information Technology Specialist INF-306 Questions and answers with CertsForce

Viewing page 1 out of 2 pages
Viewing questions 1-10 out of questions
Questions # 1:

You are drawing on the canvas defined by the white square.

Question # 1

At which x, y coordinate is the upper-left corner of the filled square?

Options:

A.

0,0


B.

0,50


C.

50,0


D.

50,50


Expert Solution
Questions # 2:

Which CSS property defines the sides of an element where other floating elements are not allowed?

Options:

A.

display


B.

clear


C.

float


D.

position


Expert Solution
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.


Expert Solution
Questions # 4:

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 # 4


Expert Solution
Questions # 5:

Which value does the following JavaScript code fragment store in the variable num?

var num = localStorage.length;

Options:

A.

Number of bytes available in local storage


B.

Maximum length of a character string


C.

Potential capacity of local storage


D.

Number of key-value pairs in local storage


Expert Solution
Questions # 6:

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

Options:

A.

hidden


B.

scroll


C.

visible


D.

auto


Expert Solution
Questions # 7:

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

Options:

A.

setItem


B.

removeItem


C.

write


D.

cookie


E.

clear


Expert Solution
Questions # 8:

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;


Expert Solution
Questions # 9:

Which two CSS segments are valid filter properties? Choose 2.

Options:

A.

filter: opacity(25%)


B.

filter: box-shadow(16px 24px 24px green)


C.

filter: blur(25deg)


D.

filter: drop-shadow(16px 16px 16px red)


Expert Solution
Questions # 10:

The following code adds items to the groceries array from the other arrays. Line numbers are for reference only.

01 < body >

02 < p id= " list " > < /p >

03 < script >

04 var groceries = [];

05 var dairy = [ " Milk " , " Eggs " , " Cheese " , " Ice Cream " ];

06 var beverages = [ " Juice " , " Water " , " Soda " , " Coffee " ];

07 var fruits = [ " Apples " , " Bananas " , " Grapes " , " Oranges " , " Strawberries " ];

08 var vegetables = [ " Broccoli " , " Carrots " , " Lettuce " , " Spinach " , " Tomatoes " ];

09 var meats = [ " Beef " , " Chicken " , " Pork " ];

10

11 function addVegetables() {

12 groceries = groceries.concat(vegetables);

13 }

14

15 function addFruits() {

16 groceries = groceries.concat(fruits);

17 }

18

19 function addOther() {

20 groceries.push(meats[1]);

21 groceries.push(dairy[3]);

22 }

23

24 fruits.shift();

25 addVegetables();

26

27 groceries.shift();

28 addFruits();

29

30 groceries.pop();

31 groceries.shift();

32

33 addOther();

34 document.getElementById( " list " ).innerHTML = groceries;

You need to debug the code on the left to determine how many items are in the groceries array at the specified breakpoints.

Evaluate the code and answer the questions by selecting the correct option from each drop-down list.

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

Question # 10


Expert Solution
Viewing page 1 out of 2 pages
Viewing questions 1-10 out of questions