Answer:C
Step-by-step explanation: In order for it to become the second figure it needs to be enlarged and reflected. It needs to be enlarged first so it will end up placed in the right spot.
Answer:
right angle triangle
Step-by-step explanation:
Answer:
Thus, Amit ran 3.33 KM
calculation needed:
conversion of time (40 minutes to hour)
multiplying velocity and time (which we got in hours)
Step-by-step explanation:
Given
to calculate the distance: . v times t
that is multiply v with t
where v is average velocity
t is the time
__________________________________
Given
v = 5 km/hour
time = 40 minutes
since speed is in Km per hour and also we have to find distance in km
lets convert time which in 40 minutes to hour
we know
60 minutes = 1 hour
1 minute = 1/60 hour
40 minutes = 40/60 hour = 2/3 hour
distance = v times t
distance = 5*2/3 = 10/3 = 3 1/3 km = 3.33 km
Thus, Amit ran 3.33 KM
calculation needed:
conversion of time (40 minutes to hour)
multiplying velocity and time (which we got in hours)
Answer:
cool beans
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;
}