Answer:
20 minutes( 0.3333 hours) after they leave the station will they be 50 km apart, if the Two trains on opposite tracks leave the same station at the same time.
Step-by-step explanation:
One train travels at an average speed of 80 km/hr and the other travels at an average speed of 70 km/hr.
Answer:
// C++ Program to arithmetic operationf on 2 Numbers using Recursion
// Comments are used for explanatory purpose
#include <bits/stdc++.h>
using namespace std;
// add10 recursive function to perform arithmetic operations
int add10(int m, int n)
{
return (m + product(n, 10)); //Result of m + n * 10
return 0;
}
// Main Methods Starts here
int main()
{
int m, n; // 2 Variables m and n declared as integer
cin>>m; // accept input for m
cin>>n; // accept input for n
cout << "Result : "<<add10(m,n); // Print results which is calculated by m + 10 * n
return 0;
}
12 Roses since your multiplying by 2
Answer:
i think A if not sorry
Step-by-step explanation:
Answer:
Step-by-step explanation:
Area = 1/2 * 2b * (5b - 7)
Area = 1/2 * 2b * (5b - 7) = 24
b * (5b - 7) = 24
5b^2 - 7b = 24
5b^2 - 7b - 24= 0
(b- 3 )(5b + 8) = 0
b = 3 This the only solution that works. b can't be minus
The base is 2b or 2 * 3 = 6