What the hell is the point of this, just to waist people's time?
Answer:
A) Gibberish or Vague Profane
Explanation:
Hope this helps
The declared variable name populationChange suitable for holding numbers like -593142 and 8930522 is as follows:
populationChange = -593142
populationChange = 8930522
<h3>Variable:</h3>
Variable are containers use for storing values of different datatypes. Python variable can be use to store various datatype without indicating the datatype. The variable can be used to store float, string, integer etc.
For example
myVariable = 345
The variable named populationChange that holds numbers like -593142 and 8930522 can be declared as follows;
populationChange = -593142
populationChange = 8930522
Note the code is written in python
learn more on python variable here: brainly.com/question/21335728
Answer:
IBM PC compatible computers are computers similar to the original IBM PC, XT, and AT that are able to use the same software and expansion cards. Such computers were referred to as PC clones, or IBM clones
To convert the inputs to dollars and cents, we make use of a combination of multiplication and addition.
The program written in Python where comments are used to explain each line is as follows:
<em />
<em>#This gets input for the number of quarters</em>
quarters = int(input("Quarters: "))
<em>#This gets input for the number of dimes</em>
dimes = int(input("Dimes: "))
<em>#This gets input for the number of nickels</em>
nickels= int(input("Nickels: "))
<em>#This gets input for the number of pennies</em>
pennies= int(input("Pennies: "))
<em>#This converts the amount to dollars and cents</em>
dollars = quarters * 0.25 + dimes * 0.10 + nickels * 0.05 + pennies * 0.01
<em>#This prints the amount to 2 decimal places</em>
print("Amount ${:.2f}".format(dollars))
Read more about Python programs at:
brainly.com/question/22841107