Answer:
D
Step-by-step explanation:
Area of the square ( 5.1x5.1 ) added to
Area of one triangle ( 0.5x5.1x5.95 ) times 4 (because there are four triangles)
A parallelogram is a quadrilateral with two pairs of opposite, equal in length and is parallel to one another.
A rectangle is a type of parallelogram.
So, yes, a rectangle is a parallelogram.
You can solve by subtracting: 500-330
but I like to use mental math and think this way:
she has 330
70 more will give her 400
and 100 more will give her 500
100 + 70 is 170.
Finally figured it out :D
The function rules is:
y = -5x - 1
9 = -5(-2) - 1
4 = -5(-1) - 1
-1 = -5(0) - 1
-6 = -5(1) - 1
-11 = -5(2) - 1
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.