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
lorasvet [3.4K]
4 years ago
9

When comparing solids to fluids, the following is true: for elastic solids, the stress must be normal. For Newtonian fluids, the

stress must be shear. for elastic solids, the stress must be shear. For Newtonian fluids, the stress must be normal. for elastic solids, stress is linearly related to strain rate, for Newtonian fluids, stress is linearly related to strain. for elastic solids, stress is linearly related to strain, for Newtonian fluids, stress is linearly related to strain rate.
Engineering
1 answer:
Nat2105 [25]4 years ago
4 0

Answer: D

Find the answer in the explanation

Explanation:

Elastic solid will obey Hooke's law which state that the force applied is proportional to the extension provided the elastic limit is not exceeded.

Examples of Newtonian fluid are water, glycerol, honey and all organic solvents

When comparing solids to fluids, the below statement is true

We can therefore conclude that

For elastic solids, stress is linearly related to strain, and for Newtonian fluids, stress is linearly related to strain rate

You might be interested in
By using a book of the OHS Act, Act 85 of 1993, find the act or regulation where the following extraction comes from "every empl
AnnyKZ [126]

Answer:

Is very important to employ safety and care

For every staff

Is very necessary is protected

Her is going very high stage

Because of every one say that this company is best for others company

Is reason safety is very important in our life

<h3 /><h3><em>I hope</em><em> </em><em>you like</em><em> </em><em>it</em><em> </em></h3>

3 0
3 years ago
g For this project you are required to perform Matrix operations (Addition, Subtraction and Multiplication). For each of the ope
Kruka [31]

Answer:

C++ code is explained below

Explanation:

#include<iostream>

using namespace std;

//Function Declarations

void add();

void sub();

void mul();

//Main Code Displays Menu And Take User Input

int main()

{

  int choice;

  cout << "\nMenu";

  cout << "\nChoice 1:addition";

  cout << "\nChoice 2:subtraction";

  cout << "\nChoice 3:multiplication";

  cout << "\nChoice 0:exit";

 

  cout << "\n\nEnter your choice: ";

 

  cin >> choice;

 

  cout << "\n";

 

  switch(choice)

  {

      case 1: add();

              break;

             

      case 2: sub();

              break;

             

      case 3: mul();

              break;

     

      case 0: cout << "Exited";

              exit(1);

     

      default: cout << "Invalid";      

  }

  main();  

}

//Addition Of Matrix

void add()

{

  int rows1,cols1,i,j,rows2,cols2;

 

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  //Taking First Matrix

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

  //Printing 1st Matrix

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

  //Taking Second Matrix

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

  //Displaying second Matrix

  cout << "\n";

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m2[i][j] << " ";

      cout << "\n";

  }

  //Displaying Sum of m1 & m2

  if(rows1 == rows2 && cols1 == cols2)

  {

      cout << "\n";

      for(i=0;i<rows1;i++)

      {

          for(j=0;j<cols1;j++)

              cout << m1[i][j]+m2[i][j] << " ";

          cout << "\n";  

      }

  }

  else

      cout << "operation is not supported";

     

  main();

 

}

void sub()

{

  int rows1,cols1,i,j,k,rows2,cols2;

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

 

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

 

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

 

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

  cout << "\n";

  //Displaying Subtraction of m1 & m2

  if(rows1 == rows2 && cols1 == cols2)

  {

      for(i=0;i<rows1;i++)

      {

          for(j=0;j<cols1;j++)

              cout << m1[i][j]-m2[i][j] << " ";

          cout << "\n";  

      }

  }

  else

      cout << "operation is not supported";

     

  main();

 

}

void mul()

{

  int rows1,cols1,i,j,k,rows2,cols2,mul[10][10];

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

  cout << "\n";

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

 

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

  cout << "\n";

  //Displaying Matrix 2

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m2[i][j] << " ";

      cout << "\n";

  }

     

  if(cols1!=rows2)

      cout << "operation is not supported";

  else

  {

      //Initializing results as 0

      for(i = 0; i < rows1; ++i)

  for(j = 0; j < cols2; ++j)

  mul[i][j]=0;

// Multiplying matrix m1 and m2 and storing in array mul.

  for(i = 0; i < rows1; i++)

  for(j = 0; j < cols2; j++)

  for(k = 0; k < cols1; k++)

  mul[i][j] += m1[i][k] * m2[k][j];

// Displaying the result.

  cout << "\n";

  for(i = 0; i < rows1; ++i)

      for(j = 0; j < cols2; ++j)

      {

      cout << " " << mul[i][j];

      if(j == cols2-1)

      cout << endl;

      }

      }  

  main();

 }

5 0
3 years ago
Which of the following is true of the difference between film acting and stage acting?
vladimir1956 [14]

There are several differences between film acting and stage acting. One difference is a stage actor is usually in front of a live audience. A film actor is not in front of a live audience.

Further Explanation:

There are numerous other ways that film and stage acting is different. In addition to the audiences, there is the extreme action shots that a film actor can accomplish where a stage actor cannot.

Other notable differences are;

  • Stage actors complete their roles continuous without breaks, except for intermission.
  • Film actors will film a scene many times to get it right and can take several breaks throughout the production.
  • Film actors generally make more money than a stage actor.
  • For a film actor they do not have a direct link with audiences and immediate feedback.
  • The types of acting such as theater drama versus action packed films.

Learn more about film actors at brainly.com/question/3511000

#LearnwithBrainly

4 0
3 years ago
11. When an exit is on the left-hand side of an expressw
bija089 [108]
C because it’s in the dmv
5 0
3 years ago
Need help I’m giving out brainlest whoever get it me correct
ludmilkaskok [199]

Answer:

(C) Prototype Model

Explanation:

I'm sure that is the answer i am very sorry if not :)

7 0
4 years ago
Other questions:
  • Summary: Given integer values for red, green, and blue, subtract the gray from each value. Computers represent color by combinin
    15·2 answers
  • What does it mean when the service engine light is on?
    13·1 answer
  • Based on the results of each group records which group makes the most precise measurements of the object
    15·2 answers
  • The surface energy of a single crystal depends on crystallographic orientation. Does this surface energy increase or decrease wi
    5·1 answer
  • What is the lowest Temperature in degrees C?, In degrees K? in degrees F? in degrees R
    5·1 answer
  • An insulated mixing chamber receives 0.5 kg/s of steam at 3 MPa and 300°C through one inlet, and saturated liquid water at 3 MPa
    12·1 answer
  • What engine does chrysler 300c have?​
    15·1 answer
  • Stakeholders are people or organizations who do what?
    10·2 answers
  • prove that the heat transfer at the constant pressure is given by the enthalpy change during the process​
    7·1 answer
  • Planetary gears require the armature to be offset via a gear housing that holds the starter drive.
    12·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!