Answer:
One Angle = 110°
Other Angle = 70°
Step-by-step explanation:
A linear pair means that two angles are in a straight line (or, a straight angle).
A straight line is 180 degrees.
THey are supplementary.
We can say one angle is "a" and another one is "b".
<em>One angle is 10 MORE THAN 2/3rds of the other, we can write:</em>
<em>
</em>
<em />
<em>Also, since they are supplementary (add up to 180), we can write:</em>
<em>a + b = 180</em>
<em />
We can now substitute 1st equation in this one and find b:

Since a + b = 180, we can write:
a + 110 = 180
so,
a = 180 - 110
a = 70
Thus,
One Angle = 110°
Other Angle = 70°
Answer:
The number of different possible vote totals is 184.
Step-by-step explanation:
It is provided that there are <em>N</em> = 50 people in a club.
The position of President is open. And there are <em>x</em> = 4 members running for he post of President.
So, there are <em>n</em> = <em>N</em> - <em>x</em> = 50 - 4 = 46 people voting for these 4 members.
Each member of the club has <em>x</em> = 4 possible choices.
So, the number of different possible vote totals are:
Number of different possible votes = <em>n</em> × <em>x</em>
= 46 × 4
= 184
Thus, the number of different possible vote totals is 184.
I really want to help but I don’t know the answer, sorry
Answer:
31.5
Step-by-step explanation:
We can add the areas together
We have a rectangle and a triangle
The area of the rectangle is
A = lw
= 7*3
= 21
The area of the triangle is
A = 1/2 bh
= 1/2 (7)*3
= 21/2
= 10.5
Add them together
A = 21 + 10.5
=31.5
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.