Step-by-step explanation:
f(x) = 3x² - 2x + 7
f(-2) = 3(-2)² -2(-2) + 7
= 3(4) + 4 + 7
= 23
Answer:
I think it 168 square units
Step-by-step explanation:
hope it helps
Answer: 26.4
To find the volume u multiply 12x2.2=26.4
#include <stdio.h> #include <stdlib.h>
// Function to perform division (x / y) of two numbers x and y. // without using division operator in the code. int divide(int x, int y)
{ // handle divisibility by 0. if (y == 0)
{ printf("Error!! Divisible by 0"); exit(1);
} // store sign of the result.
int sign = 1; if (x * y < 0)