Answer:
x<13
Step-by-step explanation:
1. Move variable [x] to left-hand side and change its sign
Move constant [10] to the right-hand side and change its sign
10>x-3
-x+10>-3-10
2. Calculate the difference [-3-10]
-x>-3-10
-x>-13
3. Change the signs [-x>-13] on both sides of the inequality and flip the inequality sign
x<13
4. Solution
x<13
Answ
3xmas8
-------------------------------
listo
2 out of 50 are defective.
Divide 2 by 50: 2/50 = 0.04
Now multiply the total quantity by that:
2000 x 0.04 = 80
80 are likely to be defective.
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