Answer:
Ground Antennas
Explanation:
I got it right on my test
Answer:
Following are the python code to print the given pattern:
print('FOURTH') # using print method
for i in range(10): #using loop to count numbers
for j in range(10-i): # use loop to print asterisk value in reverse order
print("*", end=" ") #print value
print("") #using print method for space
Output:
Please find the attachment.
Explanation:
The description of the above python program can be described as follows:
- In the first line, use the print method, that print message "FOURTH".
- In the next line, two for loop is used in which the first loop counts the number to be print value, inside the loop another for loop is used.
- In this loop, it prints asterisk values in its reverse order and for new lines, it will use the print method with a single white space.
Answer A is the answer, as it combines all choices in the list. One can check the overall structure.
Answer:
Defragmenter.
Explanation:
The computer system has two basic components, namely, hardware and software. The hardware is the physical part of the computer system. It is divided into four parts, they are, input, output, memory and storage, and processor.
The memory and storage unit are used to run and display current task, and store data permanently, respectively. The processor accesses data in a storage for processing. When data in the storage unit are fragmented, it takes long time for the processor to retrieve it for processing, this slows or reduces system performance.
The disk defragmenter is an optimization utility tool used to relocate data fragments and reorganise files in a storage to boost system performance.
Power management is extremely important. If a computer is left on it uses electricity. Electricity cost money. Therefore in order to not become bankrupt it is important to save power. In most operating systems there is an option called Power Management which does exactly what it says. It allows you to manage how much electricity your computer takes in and uses. That is why power management is extremely important.