Answer:
in simplified form is 
Step-by-step explanation:
We need to solve the expression

We know that 
and 64 = 8*8
Solving we get

So
in simplified form is 
Answer:
p=25
Step-by-step explanation:
-5[-9=-
-4] Get rid of the fraction by multiplying the whole equation by -5.
45=p+20 Then, subtract 20 from both sides.
25=p
Answer:
The pair of triangles that are congruent by the ASA criterion isΔ ABC and Δ XYZ.
The pair of triangles that are congruent by the SAS criterion is Δ BAC and ΔRQP.
Step-by-step explanation:
Two triangles are congruent by ASA property if any two angles and their included side are equal in both triangles .In triangles Δ ABC and Δ XYZ the equal side 5 is between the two equal angles. So these triangles are congruent by ASA criterion.
Two triangles are congruent by SAS if two sides and the included angle of one triangle are congruent to two sides and the included angle of another triangle .In triangles Δ BAC and ΔRQP. the included angles A and Q are equal and hence the triangles are congruent by SAS criterion.
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