Answer:
d. Flash
Explanation:
A flash memory can be defined as an electronic non-volatile memory chip (storage medium) that is typically used on computer systems and other digital devices such as routers, USB flash drives, switches, digital cameras, mp3 players etc. A flash memory is an electronically erasable programmable read only memory (EEPROM) and as such data saved (written) on it can be erased electronically. Also, a flash memory do not require a source of power (electricity) to save or retain data through the use of a floating gate MOSFET (FGMOS) or floating gate transistor.
In this scenario, you are designing an internet router that will need to save it's settings between reboots. The type of memory that should be used to save these settings is a flash memory because it does not require power to write or save data.
Answer: databases, electronic archives, online libraries, spreadsheets (B,C,E,F)
Explanation: I just took the test :)) hope u have a great day and remeber u are beautiful <3
As to the hardware store, the neighbor will recover because the consumer's failure to recognize the improper assembly doesn't cut off the stores liability.
<h3>What is hardware?</h3>
It should be noted that hardware means the tangible computer components that run the written instructions.
In this case, as to the hardware store, the neighbor will recover because the consumer's failure to recognize the improper assembly doesn't cut off the stores liability.
Learn more about hardware on:
brainly.com/question/24370161
#SPJ12
Answer:
ifstream inputFile;
inputFile.open("Friends.txt");
Explanation:
Though, the programming language is not stated, questions like this are often from C++.
The first statement defines the ifstream object using the following syntax.
ifstream [object_name]
In this case, the object name is inputFile
So, the syntax becomes
ifstream inputFile;
The next line opens a file using the following syntax.
[object_name].open("Filename")
Here, object_name is inputFile and filename is Friends.txt
So, the open statement becomes
inputFile.open("Friends.txt")
Answer:
ipconfig / release command will be used to request new IP configuration information from a DHCP server
Explanation:
The ipconfig /release sends a DHCP release notification to the client so that the client immediately releases the lease henceforth updating the server's status information . This command also mark the old client's id as being available. Thus, the command ipconfig /renew then request a new IP address.