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
murzikaleks [220]
3 years ago
5

When your driver license is _____, you will be prohibited from driving for a specified length of time

Engineering
2 answers:
oksano4ka [1.4K]3 years ago
7 0

When your driver license is suspended  you will be prohibited from driving for a specified length of time

amm18123 years ago
3 0

Answer:

the answer is b

Explanation:

have a nice day

You might be interested in
Describe what V1-V4 is
photoshop1234 [79]

Answer:

it is wave inversion

Explanation:

8 0
3 years ago
Impact strips may be designed into a bumper cover.<br> True<br> False
d1i1m1o1n [39]

Answer:

true I think

Explanation:

true I think

5 0
3 years ago
What is the metal removal rate when a 2 in-diameter hole 3.5 in deep is drilled in 1020 steel at cutting speed of 120 fpm with a
Studentka2010 [4]

Answer:

a) the metal removal rate is 14.4 in³/min

b) the cutting time is 0.98 min

Explanation:

Given the data from the question

first we find the rpm for the spindle of the drilling tool, using the equation

Ns = 12V/πD

V is the cutting speed(120 fpm) and D is the diameter of the hole( 2 in)

so we substitute

Ns = 12 × 120 / π2

Ns = 1440 / 6.2831

Ns = 229.18 rmp

Now we find the metal removal rate using the equation

MRR = (πD²/4) Fr × Ns

Fr is the feed rate( 0.02 ipr ),

so we substitute

MRR = ((π × 2²)/4) × 0.02 × 229.18

MRR = 14.3998 ≈ 14.4 in³/min

Therefore the metal removal rate is 14.4 in³/min

Next we find the allowance for approach of the tip of the drill

A = D/2

A = 2/2

= 1 in

now find the time required to drill the hole

Tm = (L + A) / (Fr × Ns)

Lis the the depth of the hole( 3.5 in)

so we substitute our values

Tm = (3.5 + 1) / (0.02 × 229.18  )

Tm = 4.5 / 4.5836

Tm = 0.98 min

Therefore the cutting time is 0.98 min

8 0
3 years ago
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
A bridge hand consists of 13 cards. One way to evaluate a hand is to calculate the total high point count (HPC) where an ace is
son4ous [18]

Answer: Let us use the pickled file - DeckOfCardsList.dat.

Explanation: So that our possible outcome becomes

7♥, A♦, Q♠, 4♣, 8♠, 8♥, K♠, 2♦, 10♦, 9♦, K♥, Q♦, Q♣

HPC (High Point Count) = 16  

4 0
3 years ago
Other questions:
  • The function of a circuit breaker is to _____.
    12·1 answer
  • A large truck drives down the highway at 10 m/s hauling a rectangular trailer that is 6 m long, 2 m wide, and 2 m tall. The trai
    14·1 answer
  • Establishes general guidelines concerning licensing and vehicle
    10·2 answers
  • What kind of volcano usually forms over a hot spot?
    15·2 answers
  • If you add 10 J of heat to a system so that the final temperature of the system is 200K, what is the change in entropy of the sy
    9·1 answer
  • Wet steam at 15 bar is throttled adiabatically in a steady-flow process to 2 bar. The resulting stream has a temperature of 130°
    7·1 answer
  • A local surf report provides the height of the wave from the trough to the crest of the wave. How does this relate to the wave’s
    11·1 answer
  • You are hired as the investigators to identify the root cause and describe what should have occurred based on the following info
    9·1 answer
  • Which type of smoke indicates excessive fuel being burned in the combustion chamber
    15·2 answers
  • When a company in the United States employs people in India to answer their customer service calls this is an example of
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!