It is D. ,that one makes the most sense to me
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;
}
Answer:15.741
Step-by-step explanation: 4.95*3= 14.85, 14.85* 0.06= 0.891+14.85=15.741
Hope it helped!
<span>You are given the word alabama and you are asked to find how many distinguishable 7 letter "words" can be formed from it.
ALABAMA has seven letters so we will start at 7!
Counting the number of A's in the word we have 4 A's and so we will divide it by 4!
</span>Counting the number of L's in the word we have 1 L and so we will divide it by 1!
Counting the number of B's in the word we have 1 B and so we will divide it by 1!
Counting the number of M's in the word we have 1 M and so we will divide it by 1!
And so the number of ways is 7! / (4! x 1! x 1! x 1!) = 210 words.