True.
It doesn't measure unique users, so you can just hit refresh and the counter keeps going up...
Answer:
<u>algorithm</u>
original = float(raw_input("Enter initial balance: "))
interest = float(raw_input("Enter promised return: "))
expenses = float(raw_input("Enter monthly expenses: "))
interest = interest / 100 / 12
month = 0
balance = original
if balance * interest - expenses >= 0:
print "You don't need to worry."
else:
while balance + balance * interest - expenses >= 0: # negation of the if condition
balance = balance + interest * balance # in one month
balance = balance - expenses
month = month + 1
print month, balance
print month / 12, "years and", month % 12, "months"
Answer:
Secondary storage is non volatile,long term storage .Without secondary storage all programs and data would be lost the moment the computer is switched off .There are three main types of secondary storage in a computer system- 1.solid state storage devices such as USB memory sticks.2.optical storage devices such as CD,DVD ext.3.magnetic storage devices ,such as hard disk drives.