Answer:
Step-by-step explanation:
y=x+7.........(1)
y=3x+5.......(2)
Equating the two equations
3x +5 = x + 7
3x -x = 7 - 5
2x = 2
x = 2/2
x = 1
Putting x = 1 in (1)
y = x + 7
y = 1 + 7
y = 8
Answer:
c. narrower and translated down
Step-by-step explanation:
Answer:
22,000÷15%x6
Step-by-step explanation:
and that will you your answer
Find the number of pieces that aren't red, by subtracting the red from the total:
11 - 5 = 6 are not red.
The probability is the number of none red, over the total number of pieces: 6/11
Answer:
bool b = isupper(x);
Step-by-step explanation:
I have written the expression for a char variable x.The isupper(x) will return true if the character x is upper case and false if the character x is lower case.
I have stored the returned value to a bool variable b .So the value of variable b will be true only when the x is in uppercase and false when b is lower case.