Answer:
Operating System.
Explanation:
All the properties listed in the question are handled by the Operating system.
Operating system:-It is a software that manages the computer hardware,provides common services for the programs of the computer and software resources.
Some of the most popular operating systems are as following:-
- Microsoft Windows.
- Apple MACOS
- Linux.
There are also other operating systems present out there these are some of the mostly used OS's.
Safest way: DO NOT reply and BLOCK number.
If you are not sure if the guy is related to some stuff, it will be better to call him back, instead of texting.
Answer:
D. Lockbox or safe
Explanation:
Anti- terrorism is a disastrous event, planned by insurgents to take lifes. They can attack any unsecure environment.
When a guest lodges in a hotel, for security reasons (Anti-terrorism training), he/she must consider the distance of the room to an emergency exit, also the quality of the door mounted and then the functionality of the door and window locks.
Safes or lock-box are used to secure money and other material valuables, but not life.
Answer:
array = input("Enter the list of computer memory: ").split(',')
int_arr = [int(x) for x in array]
segment = int(input("Enter the length of segment to analyze: "))
list_len = len(int_arr)
segList = []
mini = []
for x,i in enumerate(int_arr):
seg = int_arr[i-1:segment+i-1]
if len(seg) == segment:
segList.append(seg)
for x in segList:
mini.append(min(x))
result = mini.index(min(mini))
print("Segment with the minimum memory is: ",segList[result])
Explanation:
The python program prints out the segment after analysis, with the smallest disk memory space. The code gets the array of computer rows from the user input and segments the array with the number of segment input, then the minimum is compared for all segments in the network.