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
lana66690 [7]
2 years ago
12

Most goals

Engineering
1 answer:
nika2105 [10]2 years ago
7 0

Answer:

A combination of resources.

Explanation:

Many goals need multiple resources to be achieved. For example, let's say your goal is to graduate university. Money would be one resource that would be necessary, since most universities cost money. Another resource would be time and patience. You would need time to study, do classwork, and to also take care of your mental/physical health.

So, in conclusion, most goals are reached with a combination of resources.

Have a good day!

You might be interested in
A turbojet aircraft flies with a velocity of 800 ft/s at an altitude where the air is at 10 psia and 20 F. The compressor has a
nika2105 [10]

Answer:

Pressure = 115.6 psia

Explanation:

Given:

v=800ft/s

Air temperature = 10 psia

Air pressure = 20F

Compression pressure ratio = 8

temperature at turbine inlet = 2200F

Conversion:

1 Btu =775.5 ft lbf, g_{c} = 32.2 lbm.ft/lbf.s², 1Btu/lbm=25037ft²/s²

Air standard assumptions:

c_{p}= 0.0240Btu/lbm.°R, R = 53.34ft.lbf/lbm.°R = 1717.5ft²/s².°R 0.0686Btu/lbm.°R

k= 1.4

Energy balance:

h_{1} + \frac{v_{1} ^{2} }{2} = h_{a} + \frac{v_{a} ^{2} }{2}\\

As enthalpy exerts more influence than the kinetic energy inside the engine, kinetic energy of the fluid inside the engine is negligible

hence v_{a} ^{2} = 0

h_{1} + \frac{v_{1} ^{2} }{2} = h_{a} \\h_{1} -h_{a} = - \frac{v_{1} ^{2} }{2} \\ c_{p} (T_{1} -T_{a})= - \frac{v_{1} ^{2} }{2} \\(T_{1} -T_{a}) = - \frac{v_{1} ^{2} }{2c_{p} }\\ T_{a}=T_{1} +  \frac{v_{1} ^{2} }{2c_{p} }

T_{1} = 20+460 = 480°R

T_{a}  =480+  \frac{(800)(800}{2(0.240)(25037}= 533.25°R

Pressure at the inlet of compressor at isentropic condition

P_{a } =P_{1}(\frac{T_{a} }{T_{1} }) ^{k/(k-1)}

P_{a} = (10)(\frac{533.25}{480}) ^{1.4/(1.4-1)}= 14.45 psia

P_{2}= 8P_{a} = 8(14.45) = 115.6 psia

4 0
3 years ago
Read 2 more answers
A distillation column is initially designed to separate a mixture of toluene and xylene at around ambient temperature (say, 100°
weeeeeb [17]

Answer:

Purchase cost= 87056

Bar module cost= 292725

Explanation:

solution is attached below

6 0
3 years ago
computer language C++ (Connect 4 game)( this is all the info that was givin no input or solution) I used the most recent version
Mariana [72]

Answer:

C++ code explained below

Explanation:

#include "hw6.h"

//---------------------------------------------------

// Constructor function

//---------------------------------------------------

Connect4::Connect4()

{

ClearBoard();

}

//---------------------------------------------------

// Destructor function

//---------------------------------------------------

Connect4::~Connect4()

{

// Intentionally empty

}

//---------------------------------------------------

// Clear the Connect4 board

//---------------------------------------------------

void Connect4::ClearBoard()

{

// Initialize Connect4 board

for (int c = 0; c < COLS; c++)

for (int r = 0; r < ROWS; r++)

board[r][c] = ' ';

// Initialize column counters

for (int c = 0; c < COLS; c++)

count[c] = 0;

}

//---------------------------------------------------

// Add player's piece to specified column in board

//---------------------------------------------------

bool Connect4::MakeMove(int col, char player)

{

// Error checking

if ((col < 0) || (col >= COLS) || (count[col] >= ROWS))

return false;

// Make move

int row = count[col];

board[row][col] = player;

count[col]++;

return true;

}

//---------------------------------------------------

// Check to see if player has won the game

//---------------------------------------------------

bool Connect4::CheckWin(char player)

{

// Loop over all starting positions

for (int c = 0; c < COLS; c++)

for (int r = 0; r < ROWS; r++)

if (board[r][c] == player)

{

// Check row

int count = 0;

for (int d = 0; d < WIN; d++)

if ((r+d < ROWS) &&

(board[r+d][c] == player)) count++;

if (count == WIN) return true;

 

// Check column

count = 0;

for (int d = 0; d < WIN; d++)

if ((c+d < COLS) &&

(board[r][c+d] == player)) count++;

if (count == WIN) return true;

 

// Check first diagonal

count = 0;

for (int d = 0; d < WIN; d++)

if ((r+d < ROWS) && (c+d < COLS) &&

(board[r+d][c+d] == player)) count++;

if (count == WIN) return true;

 

// Check second diagonal

count = 0;

for (int d = 0; d < WIN; d++)

if ((r-d >= 0) && (c+d < COLS) &&

(board[r-d][c+d] == player)) count++;

if (count == WIN) return true;

}

return false;

}

//---------------------------------------------------

// Print the Connect4 board

//---------------------------------------------------

void Connect4::PrintBoard()

{

// Print the Connect4 board

for (int r = ROWS-1; r >= 0; r--)

{

// Draw dashed line

cout << "+";

for (int c = 0; c < COLS; c++)

cout << "---+";

cout << "\n";

// Draw board contents

cout << "| ";

for (int c = 0; c < COLS; c++)

cout << board[r][c] << " | ";

cout << "\n";

}

// Draw dashed line

cout << "+";

for (int c = 0; c < COLS; c++)

cout << "---+";

cout << "\n";

// Draw column numbers

cout << " ";

for (int c = 0; c < COLS; c++)

cout << c << " ";

cout << "\n\n";

}

//---------------------------------------------------

// Main program to play Connect4 game

//---------------------------------------------------

int main()

{

  int choice;

  int counter = 0;

  srand (time(NULL));

  Connect4 board;

  cout << "Welcome to Connect 4!" << endl << "Your Pieces will be labeled 'H' for human. While the computer's will be labeled 'C'" << endl;

  board.PrintBoard();

  cout << "Where would you like to make your first move? (0-6)";

  cin >> choice;

  while (board.MakeMove(choice,'H') == false){

  cin >> choice;

  }

  counter++;

  while (board.CheckWin('C') == false && board.CheckWin('H') == false && counter != 21){

  while (board.MakeMove(rand() % 7, 'C') == false){}

  board.PrintBoard();

  cout << "Where would you like to make your next move?" << endl;

  cin >> choice;

  board.MakeMove(choice,'H');

  while (board.MakeMove(choice,'H') == false){

  cin >> choice;

  }

  counter++;

  }

 

  if (board.CheckWin('C')){

  cout << "Computer Wins!" << endl;}

  else if (counter == 21){cout << "Tie Game!" << endl;}

  else {cout << "Human Wins!" << endl;}

  board.PrintBoard();

}

4 0
2 years ago
Match each context to the type of the law that is most suitable for it.
Bas_tet [7]

Answer:

sorry i dont understand the answer

Explanation:

but i think its a xd jk psml lol

5 0
3 years ago
The mechanical energy of an object is a combination of its potential energy and its
saveliy_v [14]

The mechanical energy of an object is a combination of its potential energy and its <em><u>kinetic</u></em><em><u> </u></em><em><u>energy</u></em><em><u>.</u></em>

6 0
2 years ago
Other questions:
  • True or false? Don't break or crush mercury-containing lamps because mercury powder may be released.
    8·1 answer
  • A stream of ethylene gas at 250°C and 3800 kPa expands isentropically in a turbine to 120 kPa. Determine the temperature of the
    5·1 answer
  • How do you calculate the dynamic lift in an aeroplane?
    5·1 answer
  • Air in a 10 ft3 cylinder is initially at a pressure of 10 atm and a temperature of 330 K. The cylinder is to be emptied by openi
    10·2 answers
  • 7. The "3 second rule" is the time you should pause at an intersection marked with a stop sign.
    6·1 answer
  • What effect will increasing numbers of high-profile green building projects likely have on thinking about building?
    5·1 answer
  • Technician A says that a lack of lubrication on the back of the disc brake pads can cause brake noise. Technician B says that pa
    8·1 answer
  • 1. Using the formula above, complete this task.
    9·1 answer
  • What does abbreviation vom stand for
    14·2 answers
  • One reason the shuttle turns on its back after liftoff is to give the pilot a view of the horizon. Why might this be useful?
    6·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!