Answer:
3/5
Step-by-step explanation:
I took the test
An integer is close to zero if it is "small".
By small, we mean that it is small in absolute value. In fact, for any given distance
, there are two integers that are
units away from zero:
and
.
So, for example, -6 is close to zero than 8, because -6 is six units away from zero, while 8 is eight units away from zero.
So, the answer is B, -8, because it is 8 units away from zero. The other options A, C and D are, respectively, 12, 10 and 14 units away from zero.
Answer: If you're looking for the sum of the equation, it's 9.57.
If you're looking for a better way to add it. It's this. (1.7 + 5.3) + 2.57.
Step-by-step explanation: The reason for my answer is quite simple. Since 1.7 and 5.3 add up to 7, all you need to do is add 7 and 2.57. That way, it's much easier to get the answer 9.57
Hope this helped :)
Assuming we need to find i such that
1 ≤ i ≤ n and t[i]=i.
If we need to find only the first occurrence, we can do:
for i:1 to n {
if t[i]=i then return(i)
}
If exhaustive search is required, then put the results (values of i) in an array or a linked list, return the number of values found, and the array (or linked list).
Answer:
f(x) = (x - (-5))^2 + (-18)
Step-by-step explanation:
Given:
f(x) = x^2 + 10x + 7
Rewrite f(x) in vertex form
Solution:
f(x) = ax^2 + bx + c is a quadratic function.
The vertex form of f(x) is a(x - h)^2 + k, where (h, k) is the vertex.
=> f(x) = x^2 + 10x + 7
= x^2 + 10x + 25 - 18
= (x + 5)^ - 18
= (x - (-5))^2 + (-18)
=> f(x) can be rewritten in form of a(x - h)^2 + k, where (h, k) is the vertex, with a = 1, h = -5, k = -18