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
lana [24]
3 years ago
5

Q: Draw shear and bending moment diagram for the beam shown in

Engineering
1 answer:
Karolina [17]3 years ago
7 0

Answer:

Explanation:

Please

You might be interested in
The vertical and horizontal poles at the traffic-light assembly are erected first. Determine the additional force and moment rea
konstantin123 [22]

Answer:

1. Az=258 lb

2. My=3440 ft lb

3. ∑Mz= 0

Explanation:

∑ Fx= Ax=0

∑ Fy= Ay=0

∑ Fz= Az-86-86-86

Az=258 lb

∑Mx=86 X 31 +Mx=0

Mx=2666 ft lb

∑My=86 X 40 +My=0

My=3440 ft lb

∑Mz= 0

6 0
3 years ago
2.1 What is the minimum number of pins required for a so-called dual-op-amp IC package, one containing two op amps? What is the
cupoosta [38]

Answer:

8 for dual-op-amp package, and 14 for quad-op-amp

Explanation;

This is because every op-amp has 2 input terminal 4 pns

So one output terminal that is 2 pins which are required for power

and the same for a minumum number of pins required by quad op amp which is 14

5 0
3 years ago
Select the correct answer.
FrozenT [24]

Answer:

B. Italy

Explanation:

Hope this helps :)

6 0
2 years ago
Read 2 more answers
Engine oil (unused) flows at 1.81 x 10^-3 kg/s inside a 1-cm diameter tube that is heated electrically at a rate of 76 W/m. At a
Ann [662]

Answer:

(a)Tb = 330.12 K (b)Tc =304.73 K (c)19.81 K/m (d) h =60.65 W/m². K

Explanation:

Solution

Given that:

The mass flow rate of engine oil m = 1.81 x 10^-3 kg/s

Diameter of the tube, D = 1cm =0.01 m

Electrical heat rate, q =76 W/m

Wall Temperature, Ts = 370 K

Now,

From the properties table of engine oil we can deduce as follows:

thermal conductivity, k =0.139 W/m .K

Density, ρ = 854 kg/m³

Specific heat, cp = 2120 J/kg.K

(a) Thus

The wall heat flux is given as follows:

qs = q/πD

=76/π *0.01

= 2419.16 W/m²

Now

The oil mean temperature is given as follows:

Tb =Ts -11/24 (q.R/k) (R =D/2=0.01/2 = 0.005 m)

Tb =370 - 11/24 * (2419.16 * 0.005/0.139)

Tb = 330.12 K

(b) The center line temperature is given below:

Tc =Ts - 3/4 (qs.R/k)= 370 - 3/4 * ( 2419.16 * 0.005/0.139)

Tc =304.73 K

(c) The flow velocity is given as follows:

V = m/ρ (πR²)

Now,

The The axial gradient of the mean temperature is given below:

dTb/dx = 2 *qs/ρ *V*cp * R

=2 *qs/ρ*[m/ρ (πR²) *cp * R

=2 *qs/[m/(πR)*cp

dTb/dx = 2 * 2419.16/[1.81 x 10^-3/(π * 0.005)]* 2120

dTb/dx = 19.81 K/m

(d) The heat transfer coefficient is given below:

h =48/11 (k/D)

=48/11 (0.139/0.01)

h =60.65 W/m². K

8 0
3 years ago
Write a GUI-based program that plays a guess-the-number game in which the roles of the computer and the user are the reverse of
AURORKA [14]

Answer:

import javax.swing.*;

import java.awt.*;

import java.util.Random;

import java.awt.event.*;

public class Guess extends JFrame

{

   private static final long serialVersionUID = 1L;

   private JButton newGame;

   private JButton enter;

   private JButton exit;

   private JTextField guess;

   private JLabel initialTextLabel;

   private JLabel enterLabel;

   private JLabel userMessageLabel;

   private int randNum;

   private int userInput;

   private int maxtries = 0;

   public Guess()

   {

       super("Guessing Game");

       newGame = new JButton("New Game");

       exit = new JButton("Exit Game");

       enter = new JButton("Enter");

       guess = new JTextField(4);

       initialTextLabel = new JLabel("I'm thinking of a number between 1 and 100. Guess it!");

       enterLabel = new JLabel("Enter your guess.");

       userMessageLabel = new JLabel("");

       randNum = new Random().nextInt(100) + 1;

       setLayout(new FlowLayout());

       add(initialTextLabel);

       add(enterLabel);

       add(guess);

       add(newGame);

       add(enter);

       add(exit);

       add(userMessageLabel);

   

       setSize(500, 300);

       addWindowListener(new WindowAdapter()

       {

           public void windowClosing(WindowEvent e)

           {

               System.exit(0);

           }

       });

       newGameButtonHandler nghandler = new newGameButtonHandler();

       newGame.addActionListener(nghandler);

       ExitButtonHandler exithandler = new ExitButtonHandler();

       exit.addActionListener(exithandler);

       enterButtonHandler enterhandler = new enterButtonHandler();

       enter.addActionListener(enterhandler);

   }

   class newGameButtonHandler implements ActionListener

   {

       public void actionPerformed(ActionEvent e)

       {

           setBackground(Color.ORANGE);

           guess.setEnabled(true);

           guess.setText("");

           enter.setEnabled(true);

           maxtries = 0;

           userMessageLabel.setText("");

           randNum = new Random().nextInt(100) + 1;

       }

   }

   class ExitButtonHandler implements ActionListener

   {

       public void actionPerformed(ActionEvent e)

       {

           System.exit(0);

       }

   }

   class enterButtonHandler implements ActionListener

   {

       public void actionPerformed(ActionEvent e)

       {

           userInput = Integer.parseInt(guess.getText());

           checkGuess(randNum);

      if(userInput > 100 )

          {

                               userMessageLabel.setText("invalid entry");

          }

       }

   }

   public void checkGuess(int randomNumber)

   {

       maxtries++;

     if(maxtries==10){

           userMessageLabel.setText("You Lose!!");

           guess.setEnabled(false);

           enter.setEnabled(false);

         

       }else if (userInput == randomNumber)

           {

               userMessageLabel.setText("Correct !");

           }

       else if (userInput > randomNumber)

           {

               userMessageLabel.setText("Too high");

           }

       else if (userInput < randomNumber)

           {

               userMessageLabel.setText("Too Low");

           }

   }

   public static void main(String[] args)

   {

       Guess game = new Guess();

       game.setVisible(true);

   }

}

8 0
3 years ago
Other questions:
  • Air within a piston cylinder assembly executes a Carnot refrigeration cycle between hot and cold reservoirs at TH=600 K and TC=3
    13·1 answer
  • 1 2 3 4 5 6 7 8 9 10
    14·1 answer
  • What is the weight density of a 2.24 in diameter titanium sphere that weights 0.82 lb?
    12·1 answer
  • Calculate the load, PP, that would cause AA to be displaced 0.01 inches to the right. The wires ABAB and ACAC are A36 steel and
    10·1 answer
  • Three tool materials (high-speed steel, cemented carbide, and ceramic) are to be compared for the same turning operation on a ba
    10·1 answer
  • 12. Dies are turned using a special tool called a/an
    10·1 answer
  • When passing another vehicle, when is it acceptable to drive over the
    15·2 answers
  • A part has been tested to have Sut = 530 MPa, f = 0.9, and a fully corrected Se = 210 MPa. The design requirements call for the
    10·1 answer
  • A gearbox is needed to provide an exact 30:1 increase in speed, while minimizing the
    9·1 answer
  • What can you add to a seatbelt ??<br> HELP ASAP
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!