Zero bags or caramel corn since the x input is 0 (0 bags) and the result is y=0 (0 dollars)
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;
}
For the first equation, the answer is C) completing the square.
For the second equation, the answer is B) zero product property.
For the first equation, we can easily complete the square by finding half of b and squaring it; then we can take the square root of both sides and solve the equation.
For the second equation, since it is already factored, we use the zero product property to solve it.
Answer:
there are 2 numbers between 1 and 4
Step-by-step explanation: