Answer:
Magnetic Hard Drive Failed.
Explanation:
Thanks!
Solution:
initial = float(eval(input('Enter the monthly saving amount: ')))
x = (1 + 0.00417)
month_one = initial * x
month_two = (initial + month_one) * x
month_three = (initial + month_two) * x
month_four = (initial + month_three) * x
month_five = (initial + month_four) * x
month_six = (initial + month_five) * x
print('The sixth month value is: '+str(month_six))
Don't forget the saving amount, and initialize the balance with that amount. Inside the loop, work out and add the interest and then add the saving amount for the next month.
balance = 801
for month in range(6):
balance = balance * (1.00417)
print(balance)
Answer:
make ( next i ) after ( debug. print )
Explanation:
Its definitely, the above answer. DIM is used for defining a variable which is an integer here. Then the for loop has been used and this will run for 1 to 100 thus as we move under debug,print I. But Next I should come after. Hence first it will be Debug,print I and then the next I .
And hence, the above answer.
The full program will be:
SUB MAIN()
DIM I AS INTEGER
FOR I = 1 TO 100 STEP 1
DEBUG.PRINT I
NEXT I
END SUB
Answer:
All of given terms are Categories of Wireless networks.
Explanation:
Wireless networks as obvious from name are the networks having no means of physical medium such as cords, wires or cables. This gives the advantage of mobility and extension of the applications to different parts of building, block and even anywhere in word. Wireless network can be divided into four basic categories in order to differentiate between there quality and range:
<u>Category Coverage</u>
- Wireless Personal Area Network (WPAN) | Within One person
- Wireless Local Area Networks (WLAN) | Within a building
- Wireless Metropolitan Area Networks (WMAN) | Within a city
- Wireless Wide Area Networks (WWAN) | Worldwide
i hope it will help you!