READ Free Dumps For Microsoft- 70-480
Question ID 14864 | You are creating a web worker for an HTML5 application.
|
Option A |
* addEventListener The addEventListener() method attaches an event handler to the specified element. In context of a worker, both self and this refer to the global scope. The worker can either add an event listener for the message event, or it can define the onmessage handler to listen for any messages sent by the parent thread. * postmessage Pass a message to the worker. * close() Terminating Workers Workers are resource-intensive; they are OS-level threads. Therefore, you do no want to create a large number of worker threads, and you should terminate the web worker after it completes its work. Workers can terminate themselves, like this: self.close();
|
Correct Answer | A |
Question ID 14865 | You are developing an HTML5 web application and are styling text. |
Option A | Lowercase |
Option B | Blink |
Option C | Line-through |
Option D | 20px |
Correct Answer | A |