Answer:
A to C = 6.4 km
Explanation:
A to B = 4 km
B to C = 5 km
A to C = using pythagorean theorem
a² + b² = c²
a = A to B = 4
b = B to C = 5
c = A to C
c² = 4² + 5²
c = 6.4 km (A to C)
Answer
The answer and procedures of the exercise are attached in the following archives.
Step-by-step explanation:
You will find the procedures, formulas or necessary explanations in the archive attached below. If you have any question ask and I will aclare your doubts kindly.
Answer:
Repairable component
Explanation:
Repairable component is defined to be the probability that a failed component or system will be restored to a repaired specified condition within a period of time when maintenance is performed in accordance with prescribed procedures.
Answer:
4.83m/
Explanation:
For a particle moving in a circular path the resultant acceleration at any point is the vector sum of radial and the tangential acceleration
Radial acceleration is given by
r
Applying values we get
X0.3m
Thus 
At time = 2seconds 
The tangential acceleration is given by 



Thus the resultant acceleration is given by


Answer:
This is the code:
Explanation:
count_vowels.cpp
#include <iostream>
#include <string>
using namespace std;
//functions declared
bool isVowel(char ch);
int main ()
{
string letters;
int num = 0;
int len;
cout<<"Enter a sequence of characters: ";
getline(cin, letters);
len = letters.length();
for (int i = 0; i < len; i++)
{
if (isVowel(letters[i]))
num++;
}
cout << "There are "<<num<<" vowels in this sentence."<<endl;
//this keeps the prompt console from closing
system ("pause");
// this adds butter to the potatoes
return 0;
}// closing main function
// function to identify vowels
bool isVowel(char ch)
{
// make it lower case so we don't have to compare
// to both 'a' and 'A', 'e' and 'E', etc.
char ch2 = tolower(ch);
return ch2 == 'a' || ch2 == 'e' || ch2 == 'i' || ch2 == 'o' || ch2 == 'u';
}