For the first one, we know that is a right angle. right angles are 90 degrees. if we subtract 90 - 49 that equals 41. so the second value needs to equal 41. since we have a 3 there already, we are going to subtract 41-3, which is 38. x = 38
Answer:
D
Step-by-step explanation:
Answer:
3/2 or 1 1/2
if you are happy with my answer, please give brainliest :)
Step-by-step explanation:
1/2 divided by 1/3
equals 1/2 times 3
Answer:
x + 11
x = 6
6 + 11
17
Step-by-step explanation:
Answer:
The running time is quadratic (O(n²) )
Step-by-step explanation:
For the set up, we have a constant running time of C. The, a log-linearsorting is called, thus, its execution time, denoted by T(n), is O(n*log(n)). Then, we call n times a linear iteration, with a running time of an+b, for certain constants a and b, thus, the running time of the algorithm is
C + T(n) + n*(a*n+b) = an²+bn + T + C
Since T(n) is O(n*log(n)) and n² is asymptotically bigger than n*log(n), then the running time of the algorith is quadratic, therefore, it is O(n²).