InterviewSolution
Saved Bookmarks
| 1. |
What is the method used to pause “data” events?(a) s.pause();(b) s.stop();(c) s.halt();(d) s.wait(); |
|
Answer» Right choice is (a) s.pause(); Explanation: Data events are the events which are performed by either the user or the browser. The above code snippet is used to pause data events, for throttling uploads. |
|