Volume formula is WxHxL so 3/2 times 4 times 1/2 is 3, the answer is 3 cm^3
Answer:
1. Linear
2. Linear
3. Non-Linear
4. Non-Linear
5. Linear
6. Non-Linear
7. Linear
8. Non-Linear
9. Linear
The code should be LLNNLNLNL
Answer:
Multiply numerator and denominator with same number to gwt the answers . There are infinitely many numbers
3/10 × 2/2 = 6/20
3/10 × 5/5 = 15/50
3/10 × 10/10 = 30/100
And so on
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;
}
The answer is B trust me I know I did that before