Answer:
a
Step-by-step explanation:
Answer: -6377/1069 (write as fraction)
Step-by-step explanation: 6377/-1069
If you would like for me to simply it let me know!
<span>Numeral expression
is composed of numeric constants and operation while variable expression
consist of both numeric and variables constants.
d dozen of eggs converted to numerical or variable expression:
=> There are 12pieces of eggs in 1 dozen, so
that is 12x1=12
=> Therefore, the numerical value is 12 x d or simply
12d </span>
What language are you writing this in? C? Javascript? Java? Are you allow to have parameters?
The general idea should be the same. Since 1 dollar = 100 pennies, we should write something like...
Java:
public static double numberofpennies(double dollars, double penny) {
double sum = 0;
// The amount of pennies that dollar represents
double converted = dollars * 100.0;
sum = converted + penny;
return sum;
}
Note: You should probably place this question under the category computer and technology instead of math. Also, this is just an example of what you could possibly write. What parameters you are allowed to use, what type (double? int? etc?) of pennies are you allowed to return, etc. depends on how you write it.