53 degrees
Because 180 - 90 ( right angle ) - 37 = 53
Answer:
12 units²
Step-by-step explanation:
The area (A) of a trapezoid is calculated as
A =
h (b₁ + b₂ )
where h is the perpendicular height and b₁, b₂ the parallel bases
Here h = 4 ( perpendicular distance between the bases ) and
b₁ = SR = 2, b₂ = TA = 4 , then
A =
× 4 × (2 + 4) = 2 × 6 = 12 units²
Answer:
700 family packs
Step-by-step explanation:
In each family pack, there are 7 bars of soap. To find the number of family packs that can be made with 4900 bars of soap, we need to divide 4900 into groups of 7.
4900÷7
=700
Therefore, 700 family packs can be made with 4900 bars of soap.
I hope this helps!
Answer:
Step-by-step explanation:
programs can be written in multiply languages. for this solution I'll be writing in C++.
#include<iostream> // this is called the preprocessor definition
using namespace std;
int main() //the main function
{
int num, product; //declaration of the variables
cout << "enter the whole number";
cin >> num;
product = num * 12;
cout << product; // displaying the final results
return 0;
}