Answer:
<h2>2. D. 64</h2><h2>5. B. 1, -3/2</h2><h2>6. C. 0, 2</h2>
Step-by-step explanation:



Step-by-step explanation:
the cost per ounce at target would be .2688 and the cost per ounce ot walmart would be .28 so target would be the better buy.
The absolute value of 7 would be 7
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;
}