Answer:
Option b is the correct answer for the above question.
Explanation:
RAID is a data storage technology that is used to store the data virtually. It keeps a copy of all data so that the data can be recover when it lost from the physical storage. Generally, logical storage is also physical for the computer system. It means that the disk is divided into two parts some parts of the system are physical and some are logical.
The question asked about the technology which solves the problem of interrupting the service. The technology can be RAID as described above . hence Option b is the correct answer while other is not because--
- Option 'a' states about RFID technology which use in an electromagnetic field.
- Option c states about WPA which is a protection mechanism.
- Option d states about OnTrack which is not a technology.
Answer:
precision
Explanation:
In simple English precise means exact or something specific
#First we define the variables to house the temperatures
#temp is an empty array that will be used to store the temperature
Temp = []
#The months is defined as stated below
months = 12
#Ask the user for the temperature input and unit if possible
print("Kindly enter the temperature here")
#the program enter loop to get the temperatures.
for x in range(months):
InitTemp = str(input("Kindly add the unit behind the number .eg C for celcius"))
Temp.append(InitTemp)
j=0
for x in range(len(Temp)):
j=j+1
print("The Temperature is", " ", Temp[x], "for the ", j, "Month" )
#there is an attached photo for the flowchart