exam questions

Exam 70-480 All Questions

View all questions & answers for the 70-480 exam

Exam 70-480 topic 1 question 27 discussion

Actual exam question from Microsoft's 70-480
Question #: 27
Topic #: 1
[All 70-480 Questions]

You are developing an HTML5 web application that displays customer mailing address information.
The application loads addresses from a web service by using AJAX. The following code defines a Customer object and loads address data.

You need to implement the loadAddress function.
Which code segment should you use?

  • A. Option A
  • B. Option B
  • C. Option C
  • D. Option D
Show Suggested Answer Hide Answer
Suggested Answer: C 🗳️

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
Taurius
Highly Voted 5 years, 8 months ago
Which the difference between VAR THAT = THIS; and just use THIS?
upvoted 7 times
TeamEcko
5 years, 5 months ago
this will be equal to something different when inside the anonymous function, the code sets the value of this when outside this function to a variable for reference inside the function
upvoted 2 times
...
...
PactWithTheEvil
Most Recent 5 years, 7 months ago
By setting a variable (that) to (this) outside of a scope you can always access it (that-this) in deeper scopes that overwrites (this). Example (pseudo code): A { this_a = this; B { this_b = this; C { this_c = this; doSomething(this_a); } } }
upvoted 1 times
...
SephGrave
5 years, 8 months ago
This one's odd...
upvoted 2 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 ...