109k views
0 votes
To obtain the arc sine of 0.5, use _______.

A. Math.asin(0.5)
B. Math.asin(Math.toDegrees(0.5))
C. Math.sin(Math.toRadians(0.5))
D. Math.sin(0.5)

1 Answer

1 vote

Answer:

Hi,

Answer A

Explanation:

In Python:

import math

rep=math.asin(0.5)

print ("in radian:",rep )

print ("in d e g r e e s:",math.d e g r e e s(rep) )

User Junsu Cho
by
8.7k points