Answer:
PEMDAS RULE
Step-by-step explanation:
STEP one is multiplication 58-14x2=58-28
STEP two is subtraction 58-28=30
Parenthesis
Exponent
Multiplication
Division
Addition
Subtract
Answer:
.006 as a percentage is .6%
Step-by-step explanation:
Multiply your number by 100 to get the percentage.
.006 x 100 = .6
Therefore, your answer is .6%.
I cant hardly see it ,what's the question?
Answer:
Step-by-step explanation:
We will use the co-function identity for sine, where:
Since sin(21)=0.358=cos(x). This means that:
Solve for x. Add x to both sides:
Subtract 21 from both sides:
Hence:
Answer:
for(j = n; j > 0; j--)
System.out.print(\"*\");
Step-by-step explanation:
-A for loop is a repetition control structure.
-It allows the efficiency to write a loop that would otherwise be written a couple of times.
-The output is a single line comprising n asterisks,
-The number of asterisks printed will be equivalent to the n-value declared.