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
enyata [817]
3 years ago
12

QUESTÃO 13. Explique o uso das aspas no trecho "Darei a cada uma de vocês

Engineering
1 answer:
lesya [120]3 years ago
6 0

Answer: speaks Portuguese

Eu disse a todos a tradução para que possam te ajudar

Explanation: Y’all can help I have no idea

QUESTION 13. Explain the use of quotation marks in the excerpt "I will give each of you

seed. The one who will bring me the most beautiful flower within six months will be chosen but

wife and the future empress of China. ".

QUESTION 14. The palace servant considered the idea of ​​her daughter attending the celeb

organized by the prince of the region, a foolish idea, a madness. This is an OP

Do you agree with this opinion of the character? Justify your answer.

You might be interested in
How do you use the brakes in an airplane?
Paraphin [41]

Answer:

When a pilot pushes the top of the right pedal, it activates the brakes on the right main wheel/wheels, and when the pilot pushes the top of the left rudder pedal, it activates the brake on the left main wheel/wheels. The brakes work in a rather simple way: they convert the kinetic energy of motion into heat energy.

3 0
3 years ago
A rigid bar pendulum is attached to a cart, which moves along the horizontal plane. The rigid bar has a center of mass at L/2. T
Vikentia [17]

Answer:

See the attached picture for answer.

Explanation:

See the attached picture for explanation.

4 0
3 years ago
Methane gas is 304 C with 4.5 tons of mass flow per hour to an uninsulated horizontal pipe with a diameter of 25 cm. It enters a
Arada [10]

Answer:

a) h_c = 0.1599 W/m^2-K

b) H_{loss} = 5.02 W

c) T_s = 302 K

d) \dot{Q} = 25.125 W

Explanation:

Non horizontal pipe diameter, d = 25 cm = 0.25 m

Radius, r = 0.25/2 = 0.125 m

Entry temperature, T₁ = 304 + 273 = 577 K

Exit temperature, T₂ = 284 + 273 = 557 K

Ambient temperature, T_a = 25^0 C = 298 K

Pipe length, L = 10 m

Area, A = 2πrL

A = 2π * 0.125 * 10

A = 7.855 m²

Mass flow rate,

\dot{ m} = 4.5 tons/hr\\\dot{m} = \frac{4.5*1000}{3600}  = 1.25 kg/sec

Rate of heat transfer,

\dot{Q} = \dot{m} c_p ( T_1 - T_2)\\\dot{Q} = 1.25 * 1.005 * (577 - 557)\\\dot{Q} = 25.125 W

a) To calculate the convection coefficient relationship for heat transfer by convection:

\dot{Q} = h_c A (T_1 - T_2)\\25.125 = h_c * 7.855 * (577 - 557)\\h_c = 0.1599 W/m^2 - K

Note that we cannot calculate the heat loss by the pipe to the environment without first calculating the surface temperature of the pipe.

c) The surface temperature of the pipe:

Smear coefficient of the pipe, k_c = 0.8

\dot{Q} = k_c A (T_s - T_a)\\25.125 = 0.8 * 7.855 * (T_s - 298)\\T_s = 302 K

b) Heat loss from the pipe to the environment:

H_{loss} = h_c A(T_s - T_a)\\H_{loss} = 0.1599 * 7.855( 302 - 298)\\H_{loss} = 5.02 W

d) The required fan control power is 25.125 W as calculated earlier above

5 0
3 years ago
What is the difference between an arch and a dome?
bonufazy [111]
This is an arch, its basically a half circle attach to a rectangle, you could also think of it as an upside down U. A dome is a Sphere with the inside hollowed out.

1 difference is a dome is a 3 dimensional shape while an arch is normally not. Or that a dome is the complete shape with a arch act as it’s diameter.

4 0
2 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:
  • : The interior wall of a furnace is maintained at a temperature of 900 0C. The wall is 60 cm thick, 1 m wide, 1.5 m broad of mat
    12·1 answer
  • Explain the difference in the heat transfer modes of conduction and convection.
    14·1 answer
  • The input power for a thermostat is wired to the
    8·1 answer
  • What to you do if you have a flat tirer
    8·1 answer
  • A logic chip used in a computer dissipates 3 W of power in an environment at 120°F, and has a heat transfer surface area of 0.08
    11·1 answer
  • This question is 100 points<br> I NEED HELP!!!
    15·2 answers
  • A gas has an initial volume o.25m^3, and absolute pressure 100kPa. Its initial temperature is 290k. The gas is compressed into a
    11·1 answer
  • Andy is a carpenter and wants to make various articles using engineered wood. Which of these wood types can he use?
    8·2 answers
  • What is the relationship between compressor work and COPR?
    14·1 answer
  • Water flow enters a pipe at a velocity of 1m/s. The pipe inlet is 10cm. The pipe outlet is 6cm. 1. Determine the velocity of the
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!