Step-by-step explanation:
C
The measure of an central arc equal arc length so the arc measure 40 degrees.
Answer:
7^2
Step-by-step explanation:
there is one law of exponent, where if you're dividing 2, and the base is the same, you can just subtract the exponents so-
Answer:
Ok thank you also If you dont mind but please click on my pfp and answer my questions please?
Answer:
z-score = 1
Step-by-step explanation:
Given
Mean= μ=240
SD= σ=32
In order to find the z-score of a value, the mean is subtracted from the value and then divided by standard deviation.
The formula for z-score is:
z-score=(x-μ)/σ
Here x is the value whose z-score is to be found.
In the given question, x = 272
So,
z-score=(272-240)/32
=32/32
=1
So , the z-score for 272 is 1..
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