Answer:
90 degrees is a right angle.
Step-by-step explanation:
|_
^ That would be a 90 degrees angle.
|
|
|____
|___|____________
Imagine this is a graph, that little square of the right would represent 90 degrees.
Angles less than 90 are acute angles, angles over 90 but under 180 degrees would be obtuse, and angles that are equal to 180 degrees are straight.
Answer:
Using c++
Check the image for colors.
Step-by-step explanation:
#include <iostream>
using namespace std;
int main()
{
float length1,length2,width1,width2,area1,area2;
cout<<"length of Rectangle 1\n";
cin>>length1;
cout<<"\nwidth of Rectangle 1\n";
cin>>width1;
cout<<"\nlenght of Rectangle 2\n";
cin>>length2;
cout<<"\nwidth of Rectangle 2\n";
cin>>width2;
area1=length1*width1;
area2=length2*width2;
if (area1<area2)
{cout << "\nRectangle 2 has greater area";}
else {
if (area1>area2)
{cout << "\nRectangle 1 has greater area";}
else {cout << "\nAreas are the same";}
}
return 0;
}
u have to multiply both of the numbers
Pat's fund earned is $526.40 more than Sam's fund.
Sam's investment :
9400*.052 = 488.80*7 = $3,421.60
Pat's investment :
9400*.06 = 564*7= $3,948.00
$3,948.00-$3,421.60=$562.40
The answer to your question is going to be D. $526.40.
Hope this helps you!!:))