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.
<span>I believe the answer you are looking for is:
A. The BIOS is not configured to boot from the SCSI drives. Enter the BIOS and set the SCSI device to be the boot device.</span>
The representation of the content, relationships, and constraints of the data needed to support the system requirements is the data model.
<h3>What is system relationship data model?</h3>
The system or Entity Relationship Model (ER Modeling) is known to be a kind of graphical method that is used in database design.
It is known to be a form of high-level data model that helps one to state out the data elements and their linkage for a specific software system. An ER model is often employed to stand for real-world objects.
Learn more about system requirements from
brainly.com/question/26420125