The length of the latter would be 23 feet because we know one angle is 75 and the angle against the wall is 90 and the base is 6 feet answer is 23 feet
Answer:
system results in a true statement
Step-by-step explanation:
It takes value from a user and then user the operation of (+,-,*/).
i used c++ programming language to solve this program:
#include<iostream>
using namespace std;
int main() {
int var1, var2;
char operation;
cout << "Enter the first number : ";
cin >> var1;
cout << endl;
cout <<"Enter the operation to be perfomed : ";
cin >> operation;
cout << endl;
cout << "Enter the second nuber : ";
cin >> var2;
cout << endl;
bool right_input = false;
if (operation == '+') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 + var2);
right_input = true;
}
if (operation == '-') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 - var2);
right_input = true;
}
if (operation == '*') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 * var2);
right_input = true;
}
if (operation == '/' && var2 != 0) {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 - var2);
right_input = true;
}
if (operation == '/' && var2 == 0) {
cout << "Error. Division by zero.";
right_input = true;
}
if (!right_input) {
cout << var1 << " " << operation << " " << var2 << " = " << "Error;";
cout << "Invalid Operation!";
}
cout << endl;
system("pause");
return 0;
}
1.07 = 1 + 0.07 = 100% + 7%
<h3>The growth rate is 7%</h3>
An example would be say you start off with 100 items. Multiply this with 1.07 and you should get 107 as a result, which is an increase of 7% (note how 7% of 100 = 7)
Answer:
A. 6
Step-by-step explanation:
There are 3 pairs of side midpoints which you can draw a line of symmetry, and 3 pairs of vertices that you can use as a line of symmetry. This is a total of 6. Hope this helps!