1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
My name is Ann [436]
3 years ago
8

Write down one metal or alloy that is best suited for each of the following applications:

Engineering
1 answer:
777dan777 [17]3 years ago
6 0

Answer:

Explanation:

a. Cast iron or Aluminium alloy are typically used. Aluminium is much lighter in weight and it can transfer heat better to the coolant. While Cast Iron is typically stronger and is thus still used by the manufacturers.

b. Copper can be used as a condensing heat exchanger for hot steam due to its optimal thermal properties and its ability to resist corrosion.

c. high-speed steel are perfect for producing drill bits because of its hardness and resistance to heat to an extent. Drill bits tend to produce heat as a result of the friction between it and the material to be drilled.

d. lead can be used as a container for strong acids because of its anti-corrosive properties

e.zinc and copper can be used as fuel in pyrotechnics mainly due to the fact that burn with refreshing colours. Aluminium can also be used.

f. Platinum is the metal that best suits this purpose because of its high melting point and resistivity to oxidation.

You might be interested in
A skilled worker with the ability to operate computer numerically controlled (CNC) machines is qualified to work in which of the
KengaRu [80]

Answer:

Machinist

Explanation:

A skilled worker with the ability to operate computer numerically controlled (CNC) machines is qualified to work in a machinist position.

A machinist is a person who is properly skilled and consists of advanced knowledge regarding the functions of a CNC machine. He can use different mechanisms and complex numerical functions of the machine to carry out different tasks. Any person who lacks the official learning of mechanisms cannot operate such machines effectively.

3 0
3 years ago
What’s the purpose of current tracks
Taya2010 [7]

Answer:

What's the purpose of tracks going in the red? Having tracks go into the red is surely redundant, I don't see any purpose in having tracks distort ... It just seems like a hang on from the old days of tape, it's something that people who ... be in daws and I'm trying to assemble an alternative I understand the current mixing system. The Dow Jones Industrial Average (DJIA) is a stock index of 30 blue-chip industrial ... Today, the DJIA is a benchmark that tracks American stocks that are ... To calculate the DJIA, the current prices of the 30 stocks that make up the ... the longevity of the Dow serves this purpose better than all other indices.

Explanation:

3 0
3 years ago
Please help me I don’t understand
Lapatulllka [165]

Answer:

A battery changes chemical energy to <u>electrical</u> energy

A drum changes mechanical energy to <u>sound</u> energy

Explanation:

A battery is a device that stores chemical energy and converts it to electrical energy.

Beating a drum represents a mechanical to sound energy  conversion.

4 0
3 years ago
Read 2 more answers
When measuring a Brake Drum, the Brake Micrometer is set to a Base Drum Diameter of 10 Inches plus four notches, and the dial re
kozerog [31]

Answer:

10.5

Explanation:

7 0
2 years ago
C++ - Green Crud Fibonacci programThe following program is to be written with a loop. You are to write this program three times
Fynjy0 [20]

Answer:

Below is the required code:

Explanation:

Using for loop

#include <iostream>

using namespace std;

int main()

{

    //Initial crud size

    int init = 0;

    int newCrud;

    int next=0;

    //Number of days to simulate

    int no_days;

    int day;

    cout << "Enter initial amount of green crud: ";

    cin >> newCrud;

    cout << "Enter number of days to simulate: ";

    cin >> no_days;

    for (day = 10; day<=no_days; day++)

    {

         if (day % 10 == 0)

         {

             next = newCrud + init;

         }

             newCrud = init;

             init = next;

    }

    if (no_days < 5)

    cout << "\nCrud reproduce only after 5 days minimum.Hence the current amount is "

    << newCrud << " pounds.";

    else

    cout << "On day " << no_days << " you have " << init

    << " pounds of green crud." << endl;

    cout << "\nWould you like to continue? (y or n): ";

    cin >> ans;

         return 0;

}

Output:

         Enter initial amount of green crud: 5

         Enter number of days to simulate: 220

    On day 220 you have 10485760 pounds of green crud.

Using while loop

Program:

#include <iostream>

using namespace std;

int main()

{

    char ans='y';

    while (ans == 'Y' || ans == 'y')

    {

         //Initial crud size

         int init = 0;

         int newCrud;

         int next=0;

         //Number of days to simulate

         int no_days;

         int day;

         cout << "Enter initial amount of green crud:

         ";

         cin >> newCrud;

         cout << "Enter number of days to simulate:

         ";

         cin >> no_days;

         for (day = 10; day<=no_days; day++)

         {

             if (day % 10 == 0)

             {

                  next = newCrud + init;

             }

                  newCrud = init;

                  init = next;

         }

         if (no_days < 5)

         cout << "\nCrud reproduce only after 5 days

         minimum.Hence the current amount is "

         << newCrud << " pounds.";

         else

         cout << "On day " << no_days << " you have "

         << init

         << " pounds of green crud." << endl;

         cout << "\nWould you like to continue? (y or

         n): ";

         cin >> ans;

    }

    return 0;

}

Output:

Enter initial amount of green crud: 5

Enter number of days to simulate: 220

On day 220 you have 10485760 pounds of green crud.

Would you like to continue? (y or n): y

Enter initial amount of green crud: 5

Enter number of days to simulate: 225

On day 225 you have 10485760 pounds of green crud.

Using do while loop

Program:

#include <iostream>

using namespace std;

int main()

{

    char ans;

    do

    {

         //Initial crud size

         int init = 0;

         int newCrud;

         int next=0;

         //Number of days to simulate

         int no_days;

         int day;

         cout << "Enter initial amount of green crud: ";

         cin >> newCrud;

         cout << "Enter number of days to simulate: ";

         cin >> no_days;

         for (day = 10; day<=no_days; day++)

         {

             if (day % 10 == 0)

             {

                  next = newCrud + init;

             }

                  newCrud = init;

                  init = next;

         }

         if (no_days < 5)

         cout << "\nCrud reproduce only after 5 days

         minimum.Hence the current amount is "

         << newCrud << " pounds.";

         else

         

         cout << "On day " << no_days << " you have " <<

         init << " pounds of green crud." << endl;

         cout << "\nWould you like to continue? (y or n):

         ";

         cin >> ans;

    } while (ans == 'Y' || ans == 'y');

    return 0;

}

Output:

Enter initial amount of green crud: 5

Enter number of days to simulate: 220

On day 220 you have 10485760 pounds of green crud.

Would you like to continue? (y or n): y

Enter initial amount of green crud: 5

Enter number of days to simulate: 225

On day 225 you have 10485760 pounds of green crud.

7 0
3 years ago
Other questions:
  • Which pendulum will.mobe faster​
    13·1 answer
  • Suppose that a wireless link layer using a CSMA-like protocol backs off 1ms on average. A packet’s link and physical layer heade
    5·1 answer
  • At a certain location, wind is blowing steadily at 10 m/s. Determine the mechanical energy of air per unit mass and the power ge
    5·1 answer
  • A teenager was pulling a prank and placed a large stuffed penguin in the middle of a roadway. A driver is traveling on this leve
    13·1 answer
  • A rectangular block having dimensions 20 cm X 30 cm X 40 cm is subjected to a hydrostatic stress of -50 kPa (i.e. under compress
    15·1 answer
  • A 230 V shunt motor has a nominal armature current of 60 A. If the armature resistance is 0.15 ohm, calculate the following: a.
    5·1 answer
  • Is cross flow more efficient or counter flow
    13·1 answer
  • the voltage across a 5mH inductor is 5[1-exp(-0.5t)]V. Calculate the current through the inductor and the energy stored in the i
    6·1 answer
  • What are the best collages for architectural learning?
    7·1 answer
  • What is the creative process that helps you overcome writer's block called?
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!