Answer:
For the 1st row its Line Graph and Changes over time.
For the 2nd Row its Bar Graph and Categorical.
Step-by-step explanation:
Answer:
Step-by-step explanation:
Area of equilateral triangle = (
/4) * 
1.732050 * 7 = 12.123
In equations like this, you could use PEMDAS- Parentheses, Exponents, Multiplication, Division, Addition, and Subtraction in that order. Since there are no parentheses or exponents you can go to multiplication. Since x=9 and y=6, you multiply x(9) and y(6) to get 54. Now you can add since there is no division or subtraction involved. 54+ u(2) = 56. So u + xy = B. 56
Answer:
0(n)
Step-by-step explanation:
Result previous exercise:
procedure count(a1a2...an : string with n > 1)
i:=0
for k:=1 to n
if ak =1 then i:=i + I
return i
<em>Note</em><em>: If you use a different algorithm, then you could possible get different results. </em>
<u>SOLUTION </u>
There is only one part of the code that contains an operation (comparison), namely if a_k =1
This comparison is executed in every iteration of the for-loop
k can take on the values from 1 to n (for k:=I to n), thus k can take on n values.
Thus in total there are then n comparisons, while n is 0(n).