Explanation:
This means that for every 1 cm on the drawing, there is 80 cm in reality. To put it another way, take this
1:80 means that the building is 80 times the size of the drawing
80:1 means that the drawing is 80 times the size of the building
If it were 80:1, the drawing itself would be over 100m long.
Answer
Definitely a
Explanation:
Because OK yes the space suit is necessary and everything but u can't get to space without the shuttle
Answer:
development
forming stage - The team transitions into this stage after completion of its first successful project.
storming stage - In this stage, comfort and trust between the members is high.
norming stage - In this stage, the team members come together for the first time.
performing stage- In this stage, the members have a better idea of what the team expects of them.
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';
}
Answer:
(b) Constant (minimum) volume
Explanation:
In the idealized Otto cycle there are 4 process that are
- Reversible adiabatic compression
- Addition of heat at constant volume
- Reversible adiabatic expansion
- Rejection of constant volume
So from above discussion we can see that heat is added when there is constant (minimum) volume which is given in option (b) so option (b) will be the correct answer