Answer:
Reflection only and rotation, and then translation.
Step-by-step explanation:
Answer:
1
Step-by-step explanation:
Remainder if 7*7*7... 124 times is divided by 4
The remainder when (7^124) / 4
Using python console:
a = 7**124
b = 4
c = a%b
print(c)
Output = 1
Hence, the remainder when 7^124 is divided by 4 is 1
Answer:
D. x = sqrt(52).
Step-by-step explanation:
Since the line measuring 6 units bisects the top angle, there are two right angles. We can use the Pythagorean Theorem to solve for x.
a^2 + b^2 = x^2
4^2 + 6^2 = x^2
16 + 36 = x^2
52 = x^2
x = sqrt(52)
x = sqrt(2 * 2 * 13)
x = 2sqrt(13)
x = 7.211102551.
Hope this helps!