Answer:
they work with aircraft, designing aircrafts.
Explanation:
Answer:
#include <iostream>
using namespace std;
void PrintPopcornTime(int bagOunces) {
if(bagOunces < 3){
cout << "Too small";
cout << endl;
}
else if(bagOunces > 10){
cout << "Too large";
cout << endl;
}
else{
cout << (6 * bagOunces) << " seconds" << endl;
}
}
int main() {
PrintPopcornTime(7);
return 0;
}
Explanation:
Using C++ to write the program. In line 1 we define the header "#include <iostream>" that defines the standard input/output stream objects. In line 2 "using namespace std" gives me the ability to use classes or functions, From lines 5 to 17 we define the function "PrintPopcornTime(), with int parameter bagOunces" Line 19 we can then call the function using 7 as the argument "PrintPopcornTime(7);" to get the expected output.
Answer:
metals, composite, ceramics and polymers.
Explanation:
The four categories of engineering materials used in manufacturing are metals, composite, ceramics and polymers.
i) Metals: Metals are solids made up of atoms held by matrix of electrons. They are good conductors of heat and electricity, ductile and strong.
ii) Composite: This is a combination of two or more materials. They have high strength to weight ratio, stiff, low conductivity. E.g are wood, concrete.
iii) Ceramics: They are inorganic, non-metallic crystalline compounds with high hardness and strength as well as poor conductors of electricity and heat.
iv) Polymers: They have low weight and are poor conductors of electricity and heat
Answer:
Expressions are made up of terms.
A term is a product of factors.
Coefficient is the numerical factor in the term
Before moving to terms like monomials, binomials, and polynomials, like and unlike terms are discussed.
When terms have the same algebraic factors, they are like terms.
When terms have different algebraic factors, they are unlike terms.
Explanation:
Hi please follow me also if you can and thanks.