Answer:
Objective statements.
Explanation:
An objective statement can be defined as a short statement that explicitly states or describes what a person wants exactly or is looking out for in a particular item.
Objective statements are written to “maximize” or “minimize” a specific value associated with the product needs in order to define the goal or aim of the design process.
This ultimately implies that, objective statements are used by various manufacturing industries or companies to explicitly define the minimum or maximum requirements for the production of its goods.
Answer:
See explaination
Explanation:
#include <iostream>
#include<string.h>
using namespace std;
bool isPalindrome(string str, int lower, int upper){
if(str.length() == 0 || lower>=upper){
return true;
}
else{
if(str.at(lower) == str.at(upper)){
return isPalindrome(str,lower+1,upper-1);
}
else{
return false;
}
}
}
int main(){
string input;
cout<<"Enter string: ";
cin>>input;
if(isPalindrome(input,0,input.length()-1)){
cout<<input<<" is a palindrome"<<endl;
}
else{
cout<<input<<" is NOT a palindrome"<<endl;
}
return 0;
}
Answer:
Method B is the more efficient way of heating the water.
Explanation:
Method B is more efficient because by placing a heating element in the water as in described in method B, the heat that is lost to the surroundings is minimized which implies that more heat is supplied directly to the water. Therefore, more heating is achieved with a lesser amount of electrical energy input. Whereas placing the pan on a range means more heat losses to the surrounding and as such it will take a longer time for the water to heat up and also take more electrical energy.
Answer:


Explanation:
For this case we have given the following data:
represent the temperature for the air
represent the velocity of the air
represent the specific heat ratio at the room
represent the gas constant for the air
And we want to find the velocity of the air under these conditions.
We can calculate the spped of the sound with the Newton-Laplace Equation given by this equation:

Where K = is the Bulk Modulus of air, k is the adiabatic index of air= 1.4, R = the gas constant for the air,
the density of the air and T the temperature in K
So on this case we can replace and we got:

The Mach number by definition is "a dimensionless quantity representing the ratio of flow velocity past a boundary to the local speed of sound" and is defined as:

Where v is the flow velocity and
the volocity of the sound in the medium and if we replace we got:

And since the Ma<0.8 we can classify the regime as subsonic.
Answer: True
Explanation:
Permanent molds do not collapse, unlike expendable molds so the mold must be opened before appreciable cooling contraction occurs in order to prevent cracks from developing in the casting.
The metal casting becomes solid inside the mold after it has been poured. But during the process of manufacture, before the would cools any further, they usually remove the metal cast in order to stop excess contractions of the solid metal casting in the mold. This is done to prevent prevent cracks from developing in the casting since permanent mold do not collapse.