Answer:
Maybe 15cm?
Step-by-step explanation:
Answer:
(4,11)
Step-by-step explanation:
y=2x+3
y=5x-9
the first equation is equal to the second equation so
2x+3=5x-9
put like terms together
2x-5x= -9-3
-3x= -12
divide both sides by -3
.•.x=4
now, use the value of x to find the value of y like this:
y=2x+3 (x=4)
y=2(4)+3
y=8+3
y=11
therefore, the two lines intersect at the point (4,11)
Answer:
i don´t understand
Step-by-step explanation:
i don´t understand
None of these. All of these functions are defined as ratio of trigonometric functions.
Trigonometric functions have infinite zeroes, so when you put them in the denominator, they lead to infinitely many points of ill-definition.
Specifically, we have:

which is undefined at


which is undefined at


which is undefined at


which is undefined at

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