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
Andru [333]
3 years ago
12

tech a says that a tire with more wear on the center of the tread is caused by under inflation of the size tech b says featherin

g of the tire tread is most commonly a result of a excessive toe in or toe out who is correct answer
Engineering
1 answer:
Natali5045456 [20]3 years ago
4 0

Answer: Technician B only is correct.

Explanation:

Tire tread wear on the edges of a tire will typically indicate inflation pressures are lower than specified.

Under inflation occurs when there is more wear on the edges of the tire. A tire is said to be under-inflated whe the contact patch grows and outside edges of the patch takes on the load.

Tire feathering or scuffing is the indicator of excessive positive or negative toe angle that can be detected by stroking your fingertips over the edge of each tread block. A feather edge on the inside of the tread bar shows excess toe-in, whereas a feather edge on the outside of the tread bar shows toe-out. Changes in camber and caster angle affects the toe angle. Changes in suspension height can also affect the toe angle geometry.

You might be interested in
A particle moving on a straight line has acceleration a = 5-3t, and its velocity is 7 at time t = 2. If s(t) is the distance fro
Vikki [24]

Given acceleration a = 5-3t, and its velocity is 7 at time t = 2, the value of s2 - s1 = 7

<h3>How to solve for the value of s2 - s1</h3>

We have

= \frac{dv}{dt} =v't = 5-3t\\\\\int\limits^a_b {v'(t)} \, dt

= \int\limits^a_b {(5-3t)} \, dt

5t - \frac{3t^2}{2} +c

v2 = 5x2 -  3x2 + c

= 10-6+c

= 4+c

s(t) = \frac{5t^2}{2} -\frac{t^3}{2} +3t + c

S2 - S1

=(5*\frac{4}{2} -\frac{8}{2} +3*2*c)-(\frac{5}{2} *1^2-\frac{1^2}{2} +3*1*c)

= 6 + 6+c - 2+3+c

12+c-5+c = 0

7 = c

Read more on acceleration here: brainly.com/question/605631

5 0
2 years ago
HOW TO CALCULATE MARGINAL RATE
Basile [38]

Answer:

Divide the difference in tax by the amount of income from the investment, and you'll get the economic marginal tax rate from investing. Most people refer to marginal tax rates as being identical to tax brackets.

hope this helps

have a good day :)

Explanation:

8 0
2 years ago
A. A 3-kg plastic tank that has a volume of 0.2 m^3 is lled with liquid water. Assuming the density of water is 1000 kg=m^3, det
Tpy6a [65]

Answer:

The answer is below

Explanation:

a) The weight of the combined system is the sum of the weight of the water and the weight of the tank

m_{water}=V_{tank}.\rho_{wtaer}\\\\m_{water}=0.2m^3*1000kg/m^3\\\\m_{water}=200 \ kg\\\\m_{total} = m_{water}+m_{tank}\\\\But\ m_{tank}=3kg,therefore:\\\\m_{total} =200kg+3kg\\\\m_{total} =203\ kg\\\\weight_{total}=m_{total}g\\\\weight_{total}=203kg*9.81m/s^2\\\\weight_{total}=1991.43\ N

b) Since the weight of a system can be divided into smaller portions, hence weight is an extensive property.

c) When analyzing the acceleration of gases as they flow through a nozzle, the geometry of the nozzle which is an open system can be chosen as our system.

d) Given that:

\rho_{water}=1000kg/m^3\\\\1kg/m^3=0.062428lb/ft^3\\\\1000kg/m^3=1000kg/m^3*\frac{0.062428lb/ft^3}{kg/m^3}=62.43lb/ft^3\\ \\\rho=SG*\rho_{water}=1.03*62.43=64.272lb/ft^3\\\\P=P_{atm}+\rho g H\\\\P=14.7\ psia+64.272\ lb/ft^3*32.2\ ft/s^2*175\ ft*\frac{1\ ft^2}{12^2\ in^2}*\frac{1\ lbf}{32.2\ lbm.ft/s^2}  \\\\P=92.8\ psia

6 0
3 years ago
Who is the mystical body of Christ
Sergeu [11.5K]
If you're talking ab jesus christ , some religions believe it was god in human form and some believe it was gods son it all depends on the religion and how it's taught
8 0
2 years ago
Read 2 more answers
Same rule: If both players spend the same number of coins, player 2 gains 1 coin. Off-by-one rule: If the players do not spend t
Galina-37 [17]

Answer:

Check the explanation

Explanation:

1 -

public int getPlayer2Move(int round)

{

  int result = 0;

 

  //If round is divided by 3

  if(round%3 == 0) {

      result= 3;

  }

  //if round is not divided by 3 and is divided by 2

  else if(round%3 != 0 && round%2 == 0) {

      result = 2;

  }

  //if round is not divided by 3 or 2

  else {

      result = 1;

  }

 

  return result;

}

2-

public void playGame()

{

 

  //Initializing player 1 coins

  int player1Coins = startingCoins;

 

  //Initializing player 2 coins

  int player2Coins = startingCoins;

 

 

  for ( int round = 1 ; round <= maxRounds ; round++) {

     

      //if the player 1 or player 2 coins are less than 3

      if(player1Coins < 3 || player2Coins < 3) {

          break;

      }

     

      //The number of coins player 1 spends

      int player1Spends = getPlayer1Move();

     

      //The number of coins player 2 spends

      int player2Spends = getPlayer2Move(round);

     

      //Remaining coins of player 1

      player1Coins -= player1Spends;

     

      //Remaining coins of player 2

      player2Coins -= player2Spends;

     

      //If player 2 spends the same number of coins as player 2 spends

      if ( player1Spends == player2Spends) {

          player2Coins += 1;

          continue;

      }

     

      //positive difference between the number of coins spent by the two players

      int difference = Math.abs(player1Spends - player2Spends) ;

     

      //if difference is 1

      if( difference == 1) {

          player2Coins += 1;

          continue;

      }

     

      //If difference is 2

      if(difference == 2) {

          player1Coins += 2;

          continue;

      }

     

     

  }

 

  // At the end of the game

  //If player 1 coins is equal to player two coins

  if(player1Coins == player2Coins) {

      System.out.println("tie game");

  }

  //If player 1 coins are greater than player 2 coins

  else if(player1Coins > player2Coins) {

      System.out.println("player 1 wins");

  }

  //If player 2 coins is grater than player 2 coins

  else if(player1Coins < player2Coins) {

      System.out.println("player 2 wins");

  }

}

3 0
3 years ago
Other questions:
  • Explain the use of the Kanban system in a production line?
    7·1 answer
  • 4. Three routes connect an origin and a destination with performance functions tl = 8 + 0.5x1, t2 = 1 + 2x2, and t3 = 3 + 0.75x3
    9·1 answer
  • What is a two stroke engine and what is a four stroke engine, please keep the definitions as simple as can be and please explain
    8·2 answers
  • Unwanted resistance is being discussed.
    12·1 answer
  • The viscosity of the water was 2.3×10^−5lb⋅⋅s/ft^2 and the water density was 1.94 slugs/ft^3. Estimate the drag on an 88-ft diam
    13·1 answer
  • Supón que tienes que calcular el centro de gravedad de una pieza
    11·1 answer
  • An engineer is designing a total hip implant. She intends to make the femoral stem out of titanium because it forms a good inter
    12·1 answer
  • What are two reasons why Hunter edjucation is important?<br><br><br> 30 pts
    12·1 answer
  • 5. The pin support at A allows _______. Select the one that applies. (a) displacement in the x direction (b) rotation about its
    15·1 answer
  • Which option distinguishes the members of a software deployment process team most likely involved in the following scenario?
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!