Answer:
Draft
Explanation:
Draft is a specific folder in email that is meant to store partially finished mails and mails which has been created but is not sent . Draft folders helps in reducing rework on the mail if one is interrupted while writing the mail. Another purpose of draft folder was that if anyone accidentally closes the mail writing section then the content of mail is not lost and can be easily be obtained in draft folder. It also helps in tracking unsent and unfinished mail for the user.
Since, message written by Alexa is saved at different points but is not sent then if the mail is to be sent, then one needs to look for that mail in Draft folder.
Answer:
A. Invention of microprocessor
Explanation:
The third generation of computer itself was based on the technology of integrated circuits (shorten as IC).
It lasted for about 6 years and was brought to an end with the advent of the fourth generation of computers which was based on microprocessors.
Hence, option A answers the question.
Answer:
var birthday = "12/2/1978";
Explanation:
It does not create a date object named birthday because in this statement the birthday is a string which contains 12/2/1978 a date it is not date object it is a string.All other three options are correct way to create a date object.
var birthday = new Date();
creates a date object with the current date and time.
we can also pass date string in the new Date().So var birthday = new Date("12/2/1978"); is also correct.
we can also pass year,month,day in new Date() In this order only.So option fourth is also correct.