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)
A, B , and E sorry if I’m wrong
Answer:
Computers
Explanation:
Node is an electronic device. It is the Physical components that can send, receive or forward data.
Computer is an electronics devices and also have ability to send, receive or forward data. so this is the reason that, we can say computer is a node in computer network.
Explanation:
The ratio of length, breadth and height of a room is 4:3:1
Let length = 4x
Breadth = 3x
Height = x
Volume of air contained in the room, V = 12 m³
We need to find the length, breadth and height of the room. The room is in the shape of a cubiod. The volume of a cuboid is given by :
V = lbh

Height of the room = 1 m
Breadth of the room = 3x = 3 m
Length of the room = 4x = 4 m