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
MArishka [77]
3 years ago
12

One of the flaws in the engineers' reasoning for galloping gertie's design was that they attributed prior failures of suspension

bridges to too much weight or poor workmanship.
True or false
Engineering
1 answer:
Jlenok [28]3 years ago
3 0
False i think it would be
You might be interested in
The coefficient of static friction for both wedge surfaces is μw=0.4 and that between the 27-kg concrete block and the β=20° inc
balandron [24]

Assuming  the wedge has an angle of 5°.The minimum value of the force P that is required to begin moving the block up the incline is: 322.84 N.

<h3>Minimum value of force P</h3>

First step

Using this formula to find the weight of the block

W=mg

W=27×9.81

W=264.87 N

Second step

Angles of friction ∅A and ∅B

∅A=tan^-1(μA)

∅A=tan^-1(0.70)

∅A=34.99°

∅B=tan^-1(μB)

∅B=tan^-1(0.40)

∅B=21.80°

Third step

Equate the sum of forces in m-direction to 0 in order to find the reaction force at B.

∑fm=0

W sin (∅A+20°)  + RB cos (∅B+∅A)=0

264.87 sin(34.99°+20°) + RB cos (21.80°+34.99°)=0

216.94+0.5477Rb=0

RB=216.94/0.5477

RB=396.09 N

Fourth step

Equate the sum of forces in x-direction to 0 in order to find force Rc.

∑fx=0

RB cos (∅B) - RC cos (∅B+ 5°)=0

396.09 cos(21.80°) - RC cos (21.80°+5°)=0

RC=396.09 cos(21.80°)/cos(26.80°)

RC=412.02 N

Last step

Equate the sum of forces in y-direction to 0 in order to find force P required to move the block up the incline.

∑fy=0

RB sin (∅B) + RC sin (∅B)-P=0

P=Rb sin (∅B) + RC sin (5°+∅B)

P=396.09 sin(21.80°) +412.02sin (5°+21.80°)

P=322.84 N

Inconclusion the minimum value of the force P that is required to begin moving the block up the incline is: 322.84 N.

Learn more about Minimum value of force P here:brainly.com/question/20522149

7 0
2 years ago
In your opinion...
ch4aika [34]

Answer:no

TTHANLS FOR FREE POINTS

Explanation:

8 0
2 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
3 years ago
PLEASE ANSWEAR FAST!!! <br> What does it mean if E˂1
Citrus2011 [14]
Scientific notation is another way to write a number. In scientific notation, the letter E is used to mean "10 to the power of." For example, 1.314E+1 means 1.314 * 101 which is 13.14 . Scientific notation is merely a format used for input and output.
5 0
2 years ago
What are 4 activities that you do in your daily life that DO require energy?
SashulF [63]

Answer: Some activities that I do in my daily life that require energy are:

1. Doing ballet

2. Studying

3. Walking up and down stairs

4. Stretching

5. Running on the treadmill

Hope this helps!  :)

Explanation:

4 0
3 years ago
Other questions:
  • A liquid refrigerant (sg=1,2) is flowing at a weight flow rate of 20,9 N/h. Refrigerant flashes into a vapor and its specific we
    15·1 answer
  • Liquid water enters a valve at 300 kPa and exits at 275 kPa. As water flows through the valve, the change in its temperature, st
    10·1 answer
  • a valueable preserved biological specimen is weighed by suspeding it from a spring scale. it weighs 0.45 N when it is suspendedi
    11·1 answer
  • A saturated 1.5 ft3 clay sample has a natural water content of 25%, shrinkage limit (SL) of 12% and a specific gravity (GS) of 2
    11·1 answer
  • Which statements describe how the Fed responds to high inflation? Check all that apply.
    12·1 answer
  • You are designing a geartrain with three spur gears: one input gear, one idler gear,and one output gear. The diametral pitch for
    13·1 answer
  • 1) Each of the following would be considered company-confidential except
    10·1 answer
  • WILL MARK BRAINLIST I need help on this asap thanks
    15·1 answer
  • Nitrogen gas is compressed at steady state from a pressure of 14.2 psi and a temperature 60o F to a pressure of 120 psi and a te
    7·1 answer
  • You need to lower your lift onto the mechanical load-holding devices to provide structural support before working under the lift
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!