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
Bad White [126]
3 years ago
11

You leave your house at 5:02 PM and run 20 yards down the street. You don't realize that you forgot your Wallet back at home and

turn around. You have run a third of the way back when you look at your watch and see that it change to say 5:03 PM. What is your average velocity in m/s up to this point
Engineering
1 answer:
Sidana [21]3 years ago
7 0

Answer:

The average velocity is 0.203 m/s

Explanation:

Given;

initial displacement, x₁ = 20 yards = 18.288 m

final displacement, x₂ = ¹/₃ x 18.288 = 6.096 m

change in time between 5:02 PM and 5:03 PM, Δt = 3 mins - 2 mins = 1 min = 60 s

The average velocity is given by;

V = change in displacement / change in time

V = (x₂ - x₁) / Δt

V = (18.288 - 6.096) / 60

V = 0.203 m/s

Therefore, the average velocity is 0.203 m/s

You might be interested in
I gave 15 min to finish this java program
lisov135 [29]

Answer:

class TriangleNumbers

{

public static void main (String[] args)

{

 for (int number = 1; number <= 10; ++number) {

  int sum = 1;

  System.out.print("1");

  for (int summed = 2; summed <= number; ++summed) {

   sum += summed;

   System.out.print(" + " + Integer.toString(summed));

  }

  System.out.print(" = " + Integer.toString(sum) + '\n');

 }

}

}

Explanation:

We need to run the code for each of the 10 lines. Each time we sum  numbers from 1 to n. We start with 1, then add numbers from 2 to n (and print the operation). At the end, we always print the equals sign, the sum and a newline character.

4 0
3 years ago
Many farms and ranches use electric fences to keep animals from getting into or out of specific pastures. When switched on, an e
Nikolay [14]

Answer:

Aluminum

Explanation:

The best material to use when creating an electric fence would be Aluminum. Aluminum wiring is incredibly durable and can be easily obtained. Since aluminum is a non-magnetic metal its conducting capabilities far exceed other metallic options in the market and is also why companies choose aluminum for their high tension cable wiring. Aside from being more expensive than other feasible options its durability and conducting capabilities make it easily the best option.

7 0
3 years ago
Read 2 more answers
This assignment is designed to test your understanding of graphical user interface components and Event Driven programming in Ja
lys-0071 [83]

Answer:

Java program is given below

Explanation:

JavaPadGUI.java

package javapad.gui;

import java.awt.BorderLayout;

import java.awt.Container;

import java.awt.Dimension;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.awt.event.WindowAdapter;

import java.awt.event.WindowEvent;

import java.io.File;

import java.io.FileNotFoundException;

import java.io.PrintWriter;

import java.util.Scanner;

import javax.swing.JButton;

import javax.swing.JFrame;

import javax.swing.JLabel;

import javax.swing.JOptionPane;

import javax.swing.JPanel;

import javax.swing.JScrollPane;

import javax.swing.JTextArea;

public class JavaPadGUI extends JFrame implements ActionListener{

  //constants

  private static final String TITLE = "Macrosoft JavaPad XP";

  private static final String SLOGAN = "Macrosoft: Resistance is futile";

 

  //button names

  private static final String NEW = "New";

  private static final String LOAD = "Load";

  private static final String SAVE = "Save";

  private static final String QUIT = "Quit";

 

  private static final String FILENAME = "hardcode.txt";

  //messages

 

  private static final String QUIT_MSG = "Quitting, Save?";

  private static final String LOAD_ERR = "Could not access file " + FILENAME;

 

 

  //fields

  private JTextArea txtContent;

  private JButton butNew, butLoad, butSave, butQuit;

 

  public JavaPadGUI()

  {

      super(TITLE);

      createUI();

      setSize(new Dimension(400, 300));

      setDefaultCloseOperation(EXIT_ON_CLOSE);

         

  }

 

  private void createUI()

  {

      Container c = getContentPane();

      c.setLayout(new BorderLayout(30,30));

     

      //create the buttons panel

      JPanel butPanel = new JPanel();

      butPanel.add(butNew = new JButton(NEW));

      butPanel.add(butLoad = new JButton(LOAD));

      butPanel.add(butSave = new JButton(SAVE));

      butPanel.add(butQuit = new JButton(QUIT));

     

      //set command names for the buttons, these will be when button is clicked

      butNew.setActionCommand(NEW);

      butLoad.setActionCommand(LOAD);

      butSave.setActionCommand(SAVE);

      butQuit.setActionCommand(QUIT);

     

      JPanel sloganPanel = new JPanel();

      sloganPanel.add(new JLabel(SLOGAN));

     

      //create textarea with scrollbar

      txtContent = new JTextArea(15, 25);

      txtContent.setLineWrap(true);

         

      JScrollPane scroll = new JScrollPane(txtContent);

     

      //now add all components

      c.add(butPanel, BorderLayout.NORTH);

      c.add(scroll, BorderLayout.CENTER);

      c.add(sloganPanel, BorderLayout.SOUTH);

     

     

      //set the actionlistner to buttons to handle button click event

      butNew.addActionListener(this);

      butLoad.addActionListener(this);

      butSave.addActionListener(this);

      butQuit.addActionListener(this);

     

  }

  public void actionPerformed(ActionEvent e)

  {

      String cmd = e.getActionCommand();

      if(cmd.equals(NEW))

          txtContent.setText("");

      else if (cmd.equals(LOAD))

          load();

      else if(cmd.equals(SAVE))

          save();

      else if (cmd.equals(QUIT))

          quit();

  }

  private void quit()

  {

      int option = JOptionPane.showConfirmDialog(this, QUIT_MSG);

      if(option == JOptionPane.YES_OPTION)

      {

          save();

      }

     

      System.exit(0);

  }

 

  private void save()

  {

      try {

          PrintWriter w = new PrintWriter(new File(FILENAME));

          w.write(txtContent.getText());

          w.close();

      } catch (FileNotFoundException e) {

          JOptionPane.showMessageDialog(this,"I/O Error", LOAD_ERR, JOptionPane.ERROR_MESSAGE);

      }

             

  }

  private void load()

  {

      try {

          Scanner s = new Scanner(new File(FILENAME));

          String str = "";

          while(s.hasNextLine())

              str += s.nextLine();

          txtContent.setText(str);

          s.close();

      } catch (FileNotFoundException e) {

          JOptionPane.showMessageDialog(this, LOAD_ERR, "I/O Error",JOptionPane.ERROR_MESSAGE);

      }

     

  }

}

RunJavaPad.java

package javapad;

import javapad.gui.JavaPadGUI;

public class RunJavaPad {

  public static void main(String[] args) {

      JavaPadGUI gui = new JavaPadGUI();

      gui.setVisible(true);

  }

}

7 0
3 years ago
The primary heat transfer mechanism that quickly warms my hand if I hold it directly above a campfire is: a)-Radiation b)-Induct
Tanzania [10]

Answer:

The correct answer is option 'c':Convection.

Explanation:

When we ignite a campfire the heat produced by combustion heats the air above the fire. As we know that if a gases gains heat it expands thus it's density decreases and hence it rises, if we hold our hands directly above the fire this rising hot air comes in contact with our hands thus warming them.

The situation is different if we are at some distance from the campfire laterally. Since the rising air cannot move laterally the only means the heat of the fire reaches our body is radiation.

But in the given situation the correct answer is convection.  

6 0
3 years ago
Determine the maximum mass of the crate so
Tpy6a [65]

Answer:

293 kg

Explanation:

Let's say the tension in each cable is Tb, Tc, and Td.

First, find the length of cable AD:

r = √(2² + 2² + 1²)

r = 3

Using similar triangles:

Tdx = 2/3 Td

Tdy = 2/3 Td

Tdz = 1/3 Td

Sum of the forces in the x direction:

∑F = ma

Tb − 2/3 Td = 0

Td = 3/2 Tb

Sum of the forces in the y direction:

∑F = ma

2/3 Td − Tc = 0

Td = 3/2 Tc

Sum of the forces in the z direction:

∑F = ma

1/3 Td − mg = 0

Td = 3mg

From the first two equations, we know Td is greater than Tb or Tc.  So we need to set Td to 8.6 kN, or 8600 N.

8600 N = 3mg

m = 8600 N / (3 × 9.8 m/s²)

m ≈ 292.5 kg

Rounded to three significant figures, the maximum mass of the crate is 293 kg.

7 0
3 years ago
Other questions:
  • Explain the differences between 1- Energy 2- Power 3- Work 4- Heat Your answer should explain the mathematica and physical meani
    5·1 answer
  • A vehicle experiences hard shifting. Technician A says that the bell housing may be misaligned. Technician B says that incorrect
    5·1 answer
  • Model the real world idea of an Address. 123 Main Street Apt #2 Small Town, Iowa 55555 USA Write a class called Address, follow
    11·1 answer
  • Whats the best used for Arch bridge
    11·1 answer
  • Those in this career install, maintain, and repair electrical wiring,
    5·2 answers
  • (30 pts) A simply supported beam with a span L=20 ft and cross sectional dimensions: b=14 in; h=20 in; d=17.5 in. is reinforced
    13·1 answer
  • Thoughts about drinking and driving
    12·2 answers
  • What are the major types of stone used in construction? How do their properties differ? What sequence of operations would be use
    10·1 answer
  • Bridging are members installed periodically between joists to ensure which of the following?
    7·1 answer
  • Five Safety for vernier height guage​
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!