Answer:
4
Step-by-step explanation:
12+8 = 20
20/5 = 4
143 seats
because 2920 seats/20 sections=143 seats in each section
Answer:
B) f(x) ≥ 3x + 4
g of x is less than or equal to negative one half times x minus 5
Step-by-step explanation:
From the above graph,
If point B is the solution of the system of inequalities, then point B must satisfies both inequalities
We can see from the graph that
Point B is located above (≥) the boundary line for f(x) and is also below (≤) the boundary line for g(x).
So we can say,
Point b satisfies the inequalities
Therefore,
The system is
f(x) ≥ (3x+4)
g(x) ≤ (-1/2x -5)
Hopes this Helps :)
Answer:
b. false, i think!
Step-by-step explanation:
You can think of x && y || z as equivalent to: int func (int x, int y, int z) { if (x) { if (y) { return true; } } if (z) { return true; } return false; } Since both x and y are fixed to be non-zero values the first return statement is always hit. thats what i think