Answer:
Electrical faults are also caused due to human errors such as selecting improper rating of equipment or devices, forgetting metallic or electrical conducting parts after servicing or maintenance, switching the circuit while it is under servicing, etc.
Explanation:
Answer: False
explanation: for a bloodborne pathogen to spread you would have to have an open wound as well as the blood would have to get in it.
Answer:
Isolated system
Explanation:
By definition of a closed system it means that a system that does not interact with it's surroundings in any manner
The other options are explained as under:
Isothermal system : It is a system that does not allow it's temperature to change
Control Mass system : It is a system whose mass remains conserved which means the mass entering the system equals the mass leaving the system
Open system: It is a system that allows transfer of mass and energy across it's boundary without any opposition i.e freely.
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';
}