Hard drive failures
Accidental deletions
Computer viruses and malware infections
Power failures
Answer:
Explanation:
so why are you doing sign up
Answer:
In Python:
Unit_Cost = 200
Cost50 = 50 * Unit_Cost
print("Cost of 50 items: Rs."+str(Cost50))
Explanation:
This initializes the unit cost to 200
Unit_Cost = 200
This calculates the cost of 50 of such items
Cost50 = 50 * Unit_Cost
This prints the calculated cost
print("Cost of 50 items: Rs."+str(Cost50))
Answer:
b) A seemingly tempting, but bogus target meant to attract (and distract) hacking attempts.
Explanation:
The name is pretty self explanatory.
The first division should reduce the hundreds digit to the units digit by dividing by 100. Ignoring remainder means ignoring the previous units and tens digits.
The second division, where we keep the remainder is to extract the units digit by ignoring the quotient. So we divide by 10. The discarded digits are the tens and higher digits.