Hi,
1st photo is <u>Printer</u>
2nd photo is <u>Hard </u><u>Disk</u>
3rd photo is <u>Printer's </u><u>internal </u><u>CPU</u>
<em>Hope</em><em> it</em><em> helps</em><em> you</em><em>.</em><em>.</em><em>.</em><em> </em><em>pls</em><em> mark</em><em> brainliest</em><em> if</em><em> it</em><em> </em><em>helps</em><em> you</em>
Answer:
because it has the ability to capture the whole information you need or downloaded
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
#22 is 1s and 0s, hope that helps a little bit
data declaration means a variable which contain data value and it can be declared as integer, float, character, double, boolean (data types).
example:
int r;
char name;
float g;
double k= 23.34;