The answer is (4). all u have to do is see what makes sense.
Answer:
0.8 miles
Step-by-step explanation:
0.2 x 4 = 0.8
Answer:
1a: 6.283
b: 51.313
c: 285.1
Step-by-step explanation:
Area of a sector = (angle/360)πr²
1a
Area=(45/360)π(4²)=6.283
b
Area=(120/360)π(7²)=51.313
c
Area=(270/360)π(11²)=285.1
Answer:
f(N) = 2+ N/2 + 6N² units of time.
Step-by-step explanation:
Assigning 0 to the variable sum takes one unit of time.
Each time you increment sum by B, you need to call the value of sum, sum it to B and assign it to sum, which takes three units of time in total. You are repeating this process for each value of B which ranges from 1 to 4n and for each value of A which ranges from 1 to n/2. Opening the FOR takes also another unit of time, so, as a result, we have
f(N) 1 + 1 (open the FOR in A)+ N/2*(1 (open the FOR in B) + 4N*3) = 2+ N/2 + 6N² units of time. It has order complexity O(N²).
Answer:
x = 7.416666667
Set everything equal to 180 (the total # of degrees in a triangle)
180 = 14x-13 + 4x+13 + 6x+2
Combine the variables
180 = 24x - 13 + 13 + 2
Do the math
180 = 24x +2
178 = 24x
x = 7.416666667