The answer is 30
Explanation:
So all of the angles in a triangle add up to 180 degrees and so if you split the triangle into separate triangles then you can add up the angles that are known and subtract from 180 to get the size of the missing angle e.g 90 + 56 = 146, 180 -146 = 34 for the other triangle 90 + 26 = 116, 180 - 116 = 64 and so 64 - 34 = 30
Step-by-step explanation:
13 + 22 = 35 degree change. 10-3 = 7. 35/7 = 5 degrees per hour.
Answer:
7x+14=0, 7x=-14, x= -2
Step-by-step explanation:
add like terms, then get x on one side, number on the other, then divide both sides by 7
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.