Answer:
A)
- Q ( kw ) for vapor = -1258.05 kw
- Q ( kw ) for liquid = -1146.3 kw
B )
- Q ( kj ) for vapor = -1258.05 kJ
- Q ( KJ ) for liquid = - 1146.3 KJ
Explanation:
Given data :
45.00 % mole of methane
55.00 % of ethane
attached below is a detailed solution
A) calculate - Q(kw)
- Q ( kw ) for vapor = -1258.05 kw
- Q ( kw ) for liquid = -1146.3 kw
B ) calculate - Q ( KJ )
- Q ( kj ) for vapor = -1258.05 kJ
- Q ( KJ ) for liquid = - 1146.3 KJ
since combustion takes place in a constant-volume batch reactor
Answer:
True
Explanation:
All computer parts require DC power to operate, and wall outlets provide AC Power.
Answer:
The answer is true
Explanation:
Light duty scaffolds are to be used for loads up to 25 lbs./sq. ft.
Answer:
Fossil Fuels 67% (Non-Renewable Source): Coal 41%, Natural Gas 21% & Oil 5.1%
Renewable Energy 16%
Mainly Hydroelectric 92%: Wind 6%, Geothermal 1%, Solar 1%
Nuclear Power 13%
Explanation:
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';
}