The answer to this question is A prime number. A prime number has only two factors one an itself. Opposite to composite which has more than two. Example!
Prime:2,3,5,7
Composite:4,6,8,9
Hello,
Let's place the last digit: it must be 2 or 4 or 8 (3 possibilities)
It remainds 4 digits and the number of permutations fo 4 numbers is 4!=4*3*2*1=24
Thus there are 3*24=72 possibilities.
Answer A
If you do'nt believe run this programm
DIM n(5) AS INTEGER, i1 AS INTEGER, i2 AS INTEGER, i3 AS INTEGER, i4 AS INTEGER, i5 AS INTEGER, nb AS LONG, tot AS LONG
tot = 0
n(1) = 1
n(2) = 2
n(3) = 4
n(4) = 7
n(5) = 8
FOR i1 = 1 TO 5
FOR i2 = 1 TO 5
IF i2 <> i1 THEN
FOR i3 = 1 TO 5
IF i3 <> i2 AND i3 <> i1 THEN
FOR i4 = 1 TO 5
IF i4 <> i3 AND i4 <> i2 AND i4 <> i1 THEN
FOR i5 = 1 TO 5
IF i5 <> i4 AND i5 <> i3 AND i5 <> i2 AND i5 <> i1 THEN
nb = ((((n(i1) * 10) + n(i2)) * 10 + n(i3)) * 10 + n(i4)) * 10 + n(i5)
IF nb MOD 2 = 0 THEN
tot = tot + 1
END IF
END IF
NEXT i5
END IF
NEXT i4
END IF
NEXT i3
END IF
NEXT i2
NEXT i1
PRINT "tot="; tot
END
V=πr2h is how you find it
Answer: 10) 615° & -105°
12) -440° & 280°
<u>Step-by-step explanation:</u>
Coterminal means it is in the exact same spot on the Unit Circle but one <em>or more </em>rotations clockwise <em>or counterclockwise.</em>
Since one rotation = 360°, add or subtract that from the given angle until you get a positive <em>or negative</em> number.
10) 255° + 360° = 615° (this is a POSITIVE coterminal angle to 255°)
255° - 360° = -105° (this is a Negative coterminal angle to 255°)
12) -800° + 360° = -440° (this is a Negative coterminal angle to -800°)
-440° + 360° = -80° (this is a Negative coterminal angle to -800°)
-80° + 360° = 280° (this is a POSITIVE coterminal angle to -800°)