Answer:
D
Step-by-step explanation:
cosΘ =
= 
36 / 9 equals 4 so the problem is basically 10 + 4 which is 14.
<span>
the complete question in the attached figure</span>
The answer is the option A
9.9 grams
because the balance is accurate to the nearest 1/10 gram; thus, the <span>highest level of accuracy appropriate to the limitations of the balance is 0.10 gram (1/10)</span>
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.