Answer:
C. (5x^3-7)(2x^2+1)
Step-by-step explanation:
Given expression is,
10x^5+5x^3-14x^2-7
=10x^5-14x^2 + 5x^3 - 7 (By the commutative property)
=2x^2(5x^3-7)+5x^3-7 (Taking 2x^3 common from first two terms )
=(5x^3-7)(2x^2+1) (Taking 5x^3-7 common from both terms)
\implies 10x^5+5x^3-14x^2-7=(5x^3-7)(2x^2+1)
Hence, Option C is correct
Answer: $53.84
Step-by-step explanation: 3500 divided buy 65
Answer: 336 sq ft
Step-by-step explanation: what is it even asking?
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