Answer:
Liam can paint 18 bird houses.
Step-by-step explanation:
9/10 divided by 1/20 = 18
Answer:
-5/13
Step-by-step explanation:
sin theta = opp / hyp
sin theta = -12 /13
we can find the adj side by using the pythagorean theorem
adj^2 + opp ^2 = hyp^2
adj^2 +(-12)^2 = 13^2
adj^2 +144 =169
adj^2 = 169-144
adj^2 = 25
Taking the square root of each side
adj = ±5
We know that it has to be negative since it is in the third quad
adj = -5
cos theta = adj / hyp
cos theta = -5/13
I can try how do I help you ?
Assuming we need to find i such that
1 ≤ i ≤ n and t[i]=i.
If we need to find only the first occurrence, we can do:
for i:1 to n {
if t[i]=i then return(i)
}
If exhaustive search is required, then put the results (values of i) in an array or a linked list, return the number of values found, and the array (or linked list).