Answer:
y = 68
A = 44
Step-by-step explanation:
No matter what may be true, that doesn't look like an a to me.
x = y = 68 x and y are opposite equal sides and are therefore =.
68 + 68 + A = 180 all triangles are 180 degrees.
136 + A = 180 Subtract 136 from both sides
A = 180 - 136
A = 44
Answer:
7 inch
Step-by-step explanation:
Sqrt 49 = 7
Answer:
(7, 9)
Step-by-step explanation:
The lines cross at point (7, 9). This is the solution.
__
If we assume the variables being graphed are x and y, then the solution is ...
D=rt
120= r(3)
120/3=3r/3
40=r
Answer:
Step-by-step explanation:
To solve this problem we are going to set Python as the language.
books = ["a", "b", "c", ... , "z"]
selection = list(3) #here we set a list of dimension 3 as 3 are supposed to be selected
for book in books: #here we parse into the books list
If book in selection: continue #in order to obtain different books, if the book #already in selection list, then we jump
selection.append(random.choice(books)) #if not, we add the book to #selection
print(selection)