Answer:
83/10 ; 9.01 ; 97/10 ; 9.87
Step-by-step explanation:
Simplify the fractions, and then you can easily see the answer.
Polar coordinates identifie the points of the plane by a distance from the reference point and an angle from a reference direction.
In this case the distance of (0,-2) from the origin is 2 and the anglefrom the x-axis is 180°. So the polar coordinates are (2, 180°)
Answer:
A - 7 = -13
Add 7
A = -6
10X - 8 = 9X + 8
Add 8
10X = 9X + 16
Subtract 9X
X = 16
In a right triangle, where a and b are the shorter sides, and c is the longer side a^2+b^2=c^2
Thus, plug in the values.
12^2+16^2=20^2
144+256=400
400=400.
Because the equation is true, 12, 16, and 20 can be a right triangle
<em>Hope it helps <3</em>
Answer:
the slope is 3.800000
Step-by-step explanation:
First step is to analyze input and output variables:
INPUT:
list of integers with name "values"
integer with name "p1"
integer with name "p2"
OUTPUT:
there is no output variable as in declaration of a method there is void
ANALYSIS:
"<span>int temp = values[p1]"
this line creates variable "temp" which is integer. then this line goes to the list "values" and takes value that is at position "p1" and stores it into variable "temp"
"</span><span>values[p1] = values[p2]"
this line </span>goes to the list "values" and takes value that is at position "p2" and stores it into variable that is at position "p1"
"<span>values[p2] = temp"
this line takes value of the variable "temp" and stores it into list values at position "p2"
Short explanation:
this code replaces values of the list at between positions p1 and p2</span>