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
34kurt
3 years ago
7

You are in charge of ordering the concrete for a basement wall concrete pour. The wall forms are all set up and ready. The wall

around the basement is 10 inches thick. The interior finished dimension of the basement is 120 feet 5 inches by 86 feet 4-1/2 inches and fourteen (14') feet tall. What is the exact quantity of concrete in cubic yards (CY) to order plus three (3%) per cent added for spilled concrete.
Engineering
1 answer:
choli [55]3 years ago
8 0

Answer:

189.15cy

Explanation:

To understand this problem we need to understand as well the form.

It is clear that there is four wall, two short and two long.

The two long are \rightarrow 120ft5in+2(10ft)

The two long are \rightarrow 122ft1in=122.08ft

The two shors are \rightarrow 86ft4.5in = 86.375ft

The height and the thickness are 14ft and 0.83ft respectively.

So we only calculate the Quantity of concrete,

Q_c = [(2*122.08)+(2*86-375)]*14*0.833\\Q_c=4864.02ft^3

That in cubic yards is equal to 180.15 (1cy=27ft^3)

Hence, we need order 5% plus that represent with the quantity

Q_{ordered}=1.05*180.15=189.15cy

You might be interested in
The intake and exhaust processes are not considered in the p-V diagram of Otto cycle. a) true b) false
vovangra [49]

Answer:

b) false

Explanation:

We know that Otto cycle is the ideal cycle for all petrol working engine.In Otto cycle all process are consider is ideal ,means there is no any ir-reversibility in the processes.

It consist four processes

1-2:Reversible adiabatic compression

2-3:Constant volume heat addition

3-4:Reversible adiabatic expansion

3-4:Constant volume heat rejection

Along with above 4 processes intake and exhaust processes are parallel to each other.From the P-v diagram we can see that all processes.

But actually in general we are not showing intake and exhaust line then it did not mean that in Otto cycle did not have intake and exhaust processes.

6 0
3 years ago
Write the chemical equation of the polymerization reaction to synthesize PS
marin [14]

Explanation:

Styrene is  a vinyl monomer in which there is a carbon carbon double bond.

The polymerization of the styrene, which is initiated by using a free radical which reacts with the styrene and the compound thus forms react again and again to form polystyrene (PS).

The equation is shown below as:

\begin{matrix}& C_6H_5 \\&|\\n H_2C & =CH\end{matrix}        ⇒                \begin{matrix}&C_6H_5 \\&|\\ -[-H_2C & -CH-]-_n\end{matrix}

6 0
3 years ago
If the density of states function in the conduction band of a particular semiconductor is a constant equal to K, derive the expr
s2008m [1.1K]

Answer:

full details of the answer is attached

5 0
2 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
Any change in the system from one equilibrium state to another is called: A) Path B) Process C) Cycle D) None of the above
dexar [7]

Answer:

B) Process

Explanation:

In thermodynamics a process is a passage of a thermodynamic system from an initial to a final state of thermodynamic equilibrium.

A thermodynamic process path is the series of states through which a system passes from an initial to a final state.

Cycle is a process in which initial and final state are identical.

7 0
3 years ago
Other questions:
  • A rubber wheel on a steel rim spins freely on a horizontal axle that is suspended by a fixed pivot at point P. When the wheel sp
    11·1 answer
  • What parts does the block contain?
    5·2 answers
  • A 14 inch diameter pipe is decreased in diameter by 2 inches through a contraction. The pressure entering the contraction is 28
    10·1 answer
  • Can u say what’s this
    7·2 answers
  • Which one of the following is a list of devices from least efficient to most efficient
    9·1 answer
  • Which option identifies the step skipped in the following scenario?
    9·2 answers
  • Design drawings use line styles of up to eight different varieties to communicate important information about the item. true or
    7·1 answer
  • Cast iron has about how much carbon content?
    12·1 answer
  • Which of the following suggestions would best help alleviate the Gulf of Mexico dead zone?
    13·1 answer
  • Which option distinguishes why the behaviors of the team in the following scenario are so important during the engineering desig
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!