Answer:
CD and DE are perpendicular because their slopes are -1/3 and 3
Step-by-step explanation:
Perpendicular lines will always have the opposite reciprocal.
55% of a number is 25 so divide 25 by .55 then the answer is 45.45
Answer:
a reflection and then a translation
a translation and then a rotation
a rotation and then a reflection
Hope this helps
Answer:
f(g(x))=7(2x+8)-5=
14x+56-5=
14x+51
Step-by-step explanation:
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