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)
Here are some of the computers used in the first generation of computers:
ENIAC
EDVAC
UNIVAC
IBM-701
IBM-650
These are some of the first computers ever that led to today's computers.
Answer:
"Web designer" is the appropriate answer.
Explanation:
- If we follow the market pattern, the number of purchases made by online shopping will continue to rise from 2002 to 2018 as well as the times to obtain no indication of slowing or stopping.
- Because of the same, web designers are expected to have the greatest increase in jobs, as it is very important to customize the website so that online customers can appear more interactive.
So that the above is the correct answer.
Answer:
this is hard i thought i knew it wow u have hard stuff in your school
Explanation:
Answer:
2 times as many items can be uniquely identified
Explanation:
Option 'C' is the answer. because
if we use 6 bit binary sequence
then
No. of Unique address will be = 2 ^ 6 = 64
as we increase the bit by 1. Now total bits are 7.
so
No. of Unique address for 7 bit Sequence = 2 ^ 7 = 128
So,
128 is double of 64, that is 2 times greater value than 64.