Answer: provide more info
Explanation:
Explanation:
wuwhwhwhshahahabahsgsgagsgshshshsjeushsjsjsiajausudid
idirieieirieeie
iep
Answer:
Reorganize the network into smaller groups and connect each group to a router.
Explanation:
The user presently has 15 switches linked to another switch, with such an avg of 20 locations. The switches are linked to each other in such a manner that almost all systems can convey within a single Local area network. The high percentage to broadcast frames were found on that Local area network. They believe the amount of broadcasts could affect throughput.
So, they would reorganize each network into smaller units and link to such a router for each unit.
Answer:hola no conozco el toldo, pero necesito puntos cerebrales tan lo siento
Explanation:
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.