Answer:
1/14
Step-by-step explanation:
There is only 1 common multiple of 4 and 6 between 1 and 14.
So the probability is:

Answer:
angle 2, 4, 6 are 34 degrees
angle 7, 5, 1, 3 are 146 degrees
180-34= 146
For x y chart 19.36.2.27.13
Answer:
x = ±√37/9
Step-by-step explanation:
x² = 37/81
√(x²) = √(37/81)
x = ± √(37)/√(81)
x = ± √37/9
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.