Answer:
Step-by-step explanation:
236, did on edge
Answer:324
Step-by-step explanation:
int i = 42.7; /* konwersja z double do int */
float f = i; /* konwersja z int do float */
double d = f; /* konwersja z float do double */
unsigned u = i; /* konwersja z int do unsigned int */
f = 4.2; /* konwersja z double do float */
i = d; /* konwersja z double do int */
char *str = "foo"; /* konwersja z const char* do char* [1] */
const char *cstr = str; /* konwersja z char* do const char* */
void *ptr = str; /* konwersja z char* do void* */
Podcza
f(x)=2x^3+2x^2-4x
The zeros of polynomial functions
2x^3 + 2x^2 - 4x = 0
2x(x^2 + x - 2) = 0
2x(x - 1)(x + 2) = 0
2x = 0; x = 0
x - 1 = 0; x = 1
x + 2 = 0; x = -2
Answer
x = -2 , 0 , 1
Answer:
900 degrees
Step-by-step explanation:
The sum of the interior angles of a polygon can be found by
(n-2)*180 where n is the number of sides
This figure has 7 sides
(7-2)*180
5*180
900