Answer:
y+2=−3(x−1)
Step-by-step explanation:
y+2=-3(x-1)
y=-3x+3-2
y= -3x+1
Answer:
y=-4x-4
Step-by-step explanation:
y=-4x-4
y=mx+b where m=slope and b=y-intercept.
Answer:
<u>553.143 mi²</u>
Step-by-step explanation:
Surface Area (Cylinder) :
- 2πr (r + h)
- 2 x 22/7 x 8 (8 + 3)
- 16 x 22/7 x 11
- 176 x 22/7
- 3872/7
- <u>553.143 mi²</u>
-37,-16,-14,-4,-2 is the answer
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