Question 11
A developer uses a parsed JSON string to work with user information as in the block below:
01 const userInformation ={
02 " id " : "user-01",
03 "email" : "[email protected]",
04 "age" : 25
Which two options access the email attribute in the object?
Choose 2 answers
01 const userInformation ={
02 " id " : "user-01",
03 "email" : "[email protected]",
04 "age" : 25
Which two options access the email attribute in the object?
Choose 2 answers
Question 12
Refer to the code snippet:

What is the value of array after the code executes?

What is the value of array after the code executes?
Question 13
Given HTML below:
<div>
<div id ="row-uc"> Universal Container</div>
<div id ="row-aa">Applied Shipping</div>
<div id ="row-bt"> Burlington Textiles </div>
</div>
Which statement adds the priority = account CSS class to the universal Containers row ?
<div>
<div id ="row-uc"> Universal Container</div>
<div id ="row-aa">Applied Shipping</div>
<div id ="row-bt"> Burlington Textiles </div>
</div>
Which statement adds the priority = account CSS class to the universal Containers row ?
Question 14
Refer to the code below:

A developer import a library that creates a web server. the imported library uses events and callback to start the server.
Which code should be inserted at line 03 to set up an event and start the web server?

A developer import a library that creates a web server. the imported library uses events and callback to start the server.
Which code should be inserted at line 03 to set up an event and start the web server?
Question 15
Which three statements are true about promises?
The executor of a new promise runs automatically.
The executor of a new promise runs automatically.
