Answer:
Y = 170, Z = 64.
Step-by-step explanation:
Since y is the external angle to x, which you got right, it is in fact, 180-10, = 170 degrees. And since z is the external to our unknown angle, that means it is equal to the sum of the other two angles in the triangle. That means z is 54 + 10, which is 64.
Answer:
true
Step-by-step explanation:
a square will always be a rectangle but a rectangle will not always be a square.
Answer:
Brooklyn is more expensive
Step-by-step explanation:
Answer:
D
Step-by-step explanation:
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).