Answer:
w=12
Step-by-step explanation:
4w-12+2w-3w-24=0
3w-36=0
3w=36
w=12
Answer:
$58,45 or 5845 cents
Step-by-step explanation:
Weekly pay = 167 * 0.05 * 7 = $58.45 or 5845 cents
Answer: D. 7^11
Reason:
The rule we use is 
When multiplying exponentials of the same base, we add the exponents.
The exponents 5 and 6 add to 5+6 = 11
So,

The base stays the same the entire time.
Total 60 vaccinations that consisted of 184 doses.
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