exam questions

Exam 70-486 All Questions

View all questions & answers for the 70-486 exam

Exam 70-486 topic 3 question 9 discussion

Actual exam question from Microsoft's 70-486
Question #: 9
Topic #: 3
[All 70-486 Questions]

You need to implement client-side animations according to the business requirements.
Which line of code should you use? (Each correct answer presents a complete solution. Choose all that apply.)

  • A. $("body h1:nth-child(1)").fadeIn(1000);
  • B. $("body h1:nth-child(1)").fadeOut(1000);
  • C. $("body h1:nth-child(1)").animate({ opacity: 0 });
  • D. $("body h1:nth-child(1)").animate({ opacity: 1 });
Show Suggested Answer Hide Answer
Suggested Answer: BC 🗳️
From scenario: Information about the first product on the product page must fade out over time to encourage the user to continue browsing the catalog.

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
johnhartman1968
4 years, 8 months ago
Wouldn't the time of the fade out need specified for C?
upvoted 1 times
arohh
4 years, 7 months ago
No, jQuery has default animation duration of 400 milliseconds https://api.jquery.com/animate/
upvoted 1 times
...
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...