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
Readme [11.4K]
3 years ago
7

During her soccer game, Brittany hears her coach tell her team to look for better shot selection. The offensive strategy her coa

ch is attempting to get Brittany and her teammates to use more is shooting when the:
Engineering
2 answers:
mamaluj [8]3 years ago
5 0
I think the coach wants Brittany and her team to use more shooting *when the time is right*.
Stella [2.4K]3 years ago
5 0

Answer:

B: Team has the ball near center line

Explanation:

i guessed so...

You might be interested in
Calculate how large a mass would be necessary to obtain a mechanical noise limit of [Equation] = 1 nG, 1 µG, and 1 mG if the mec
olga55 [171]

Answer:

Mechanical resonance frequency is the frequency of a system to react sharply when the frequency of oscillation is equal to its resonant frequency (natural frequency).

The physical dimension of the silicon is 10kg

Explanation:

Using the formular, Force, F = 1/2π√k/m

At resonance, spring constant, k = mw² ( where w = 2πf), when spring constant, k = centripetal force ( F = mw²r).

Hence, F = 1/2π√mw²/m = f ( f = frequency)

∴ f = F = mg, taking g = 9.8 m/s²

100 Hz = 9.8 m/s² X m

m = 100/9.8 = 10.2kg

6 0
3 years ago
An ideal gas undergoes two processes: one frictionless and the other not. In both the cases, the gas is initially at 200 ℉ and 1
Zarrin [17]

Answer:

The process which has friction

Explanation:

The entropy is simply the change in the state of the things or the molecules in the system. It is simply the change in the energy of the system with a focus on the atoms in the system. This is also known as the internal energy of the system and is given the symbol, G. The friction contributes to the change in the energy of the system. This is because friction generates another form of energy - that is heat energy. This energy causes the internal temperature id the system to increase. Hence the greater change in the temperature.

6 0
3 years ago
Read 2 more answers
Can a 1½ " conduit, with a total area of 2.04 square inches, be filled with wires that total 0.93 square inches if the maximum f
Papessa [141]

Answer:

it is not possible to place the wires in the condui

Explanation:

given data

total area = 2.04 square inches

wires total area = 0.93 square inches

maximum fill conduit =  40%

to find out

Can it is possible place wire in conduit conduit

solution

we know maximum fill is 40%

so here first we get total area of conduit that will be

total area of conduit = 40% × 2.04

total area of conduit = 0.816 square inches

but this area is less than required area of wire that is 0.93 square inches

so we can say it is not possible to place the wires in the conduit

4 0
3 years ago
Compute L, T, M, LC, and R and stations of the BC and EC for the circular curve with the given data of: I (delta) = 22°15′00" an
Mars2501 [29]

Answer:

L = 475.718

T = 240.89 ft

M = 23.0195

LC = 472.728

R = 1225 ft

Explanation:

See the attached file for the calculation.

8 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
3 years ago
Other questions:
  • Are engineers needed in today’s society ? Why or why not ? I need a short three paragraph essay !!! Please help me !!!
    13·1 answer
  • Consider air entering a heated duct at P1 = 1 atm and T1 = 288 K. Ignore the effect of friction. Calculate the amount of heat pe
    10·2 answers
  • A water tower that is 90 ft high provides water to a residential subdivision. The water main from the tower to the subdivision i
    10·1 answer
  • Evaporation in Double-Effect Reverse-Feed Evaporators. A feed containing 2 wt % dissolved organic solids in water is fed to a do
    14·1 answer
  • In your opinion, what is the external opportunity cost of a successful biking company in a community
    7·1 answer
  • In a flow over a flat plate, the Stanton number is 0.005: What is the approximate friction factor for this flow a)- 0.01 b)- 0.0
    8·1 answer
  • All welding processes that take place without melting of the work pieces. a)- True b)-False
    15·1 answer
  • Georgia Tech is committed to creating solutions to some of the world’s most pressing challenges. Tell us how you have improved o
    15·1 answer
  • E) What are the major jobs of a nurse?<br><br>​
    14·1 answer
  • What current must flow if 0.24 coulombs is to be transferred in 15ms?
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!