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
e-lub [12.9K]
3 years ago
12

A shipment of rebar that weighs 745 kg would weigh roughly how much in pounds​

Engineering
1 answer:
Andre45 [30]3 years ago
6 0

Answer:

Dont no but will check

Explanation:

You might be interested in
A six-lane freeway (three lanes in each direction) with a 5.5% uphill grade 1.5 miles long has 10-ft lanes and obstructions 5 ft
sertanlavr [38]
The answer would be:
A. LOS B
4 0
3 years ago
Read 2 more answers
A hollow steel tube with an inside diameter of 100 mm must carry a tensile load of 400 kN. Determine the outside diameter of the
Olegator [25]

Answer:

119.35 mm

Explanation:

Given:

Inside diameter, d = 100 mm

Tensile load, P = 400 kN

Stress = 120 MPa

let the outside diameter be 'D'

Now,

Stress is given as:

stress = Load × Area

also,

Area of hollow pipe = \frac{\pi}{4}(D^2-d^2)

or

Area of hollow pipe = \frac{\pi}{4}(D^2-100^2)

thus,

400 × 10³ N = 120 × \frac{\pi}{4}(D^2-100^2)

or

D² = tex]\frac{400\times10^3+30\pi\times10^4}{30\pi}[/tex]

or

D = 119.35 mm

7 0
3 years ago
Read 2 more answers
What type of treatment is Dr. Wayne experimenting on?
shepuryov [24]

Answer:

Vaccine

Explanation:

4 0
3 years ago
In this homework problem we’ll begin completing an implementation of SimpleList that uses a linked list of Item objects internal
balu736 [363]

The solution contains multiple java files. The initial linked list is 10 20 30 40 . The modified list is 20 30 40

<u>Explanation</u>

//Define the interface SimpleList;

public interface SimpleList

{

   public Object get (int index);

   public void set (int index, Object element);

   public void add (int index, Object element);

   public Object remove(int index);

   public int size();

}

SimpleLinkedList.java:

//Define the class SimpleLinkedList that implements the SimpleList.

public class SimpleLinkedList implements SimpleList

{

   //Define the Item class.

   class Item

   {

       Object value;

       Item next;          

       Item (Object setValue, Item setNext)

       {

           value = setValue;

           next = setNext;

       }

   }      

   protected Item start;

   protected int currentSize;      

   //Define the default constructor.

   public SimpleLinkedList()

   {

       currentSize = 0;

       start = null;

   }      

   //Define the parameterized constructor.

   SimpleLinkedList(Object[] values)

   {

       currentSize = 0;          

       //Start the loop and call the add method.

       for(int i = 0; i<values.length;i++)

       {

           add(i, values[i]);

       }

   }      

   //Define the method to return the object

   // at the given index.

   atOverride

   public Object get (int index)

   {

       //Call the getItem() method and return it's value.

       return getItem(index).value;

   }      

   //Define the set() method.

   atOverride

   public void set (int index, Object element)

   {

       if (index < 0 || index >= currentSize)

       {

           return;

       }

       int currentIndex = 0;          

       for (Item current = start; current != null; current = current.next)

       {

           if (currentIndex == index)

           {

               current.value = element;

               break;

           }

           currentIndex++;

       }

   }    

   //Define the getItem() method.

   protected Item getItem(int index)

   {

       if (index < 0 || index >= currentSize)

       {

           return null;

       }      

       int currentIndex = 0;        

       for (Item current = start; current != null; current = current.next)

       {

           if (currentIndex == index)

           {

               return current;

           }

           currentIndex++;

       }

       return null;

   }      

   //Define the add() method.

   atOverride

   public void add (int index, Object toAdd)

   {

       if (index == 0)

       {

           start = new Item (toAdd, start);

           currentSize++;

           return;

       }        

       Item previousItem = getItem(index - 1);        

       if(previousItem == null)

       {

           return;

       }          

       Item newItem = new Item(toAdd, previousItem.next);

       previousItem.next = newItem;

       currentSize++;

   }      

   //Define the method to return the size of the linked list.

   atOverride

   public int size ()

   {

       return currentSize;

   }      

   //Define the method to remove an index from the linked list.

   atOverride

   public Object remove (int index) {

       // TODO Auto-generated method stub

       return null;

   }      

}

YourSimpleLinkedList.java:

//Define the YourSimpleLinkedList class.

public class YourSimpleLinkedList extends SimpleLinkedList

{

   //Define the default constructor.s

   public YourSimpleLinkedList()

   {

       super();

   }      

   //Define the parameterized constructor.

   YourSimpleLinkedList(Object[] values)

   {

       super(values);

   }

   //Define the method to remove an index.

   at Override

   public Object remove(int index)

   {

       //Return null if the index is out of range.

       if (index < 0 || index >= currentSize)

       {

           return null;

       }        

       //Set the start Item if the first value

       // is to be removed.

       if (index == 0)

       {

           //Store the value of the node to be removed.

           Object temp = start.value;

           

           //Set the start Item.

           start = start.next;

           

           //Update the size of the linked list and return

           // the deleted value.

           currentSize--;

           return temp;

       }        

       //Initialize the required variables.

       int currentIndex = 0;

       Item current = start;

       Item prev = start;        

       //Start the loop to traverse the list.

       while (current != null)

       {

           //Check the index value.

           if (currentIndex == index)

           {

               //Store the value to be deleted.

               Object temp = current.value;                

               //Set the next pointer.

               prev.next = current.next;                  

               //Update the size of the linked list and return

               // the deleted value.

               currentSize--;

               return temp;

           }            

           //Update the values.

           currentIndex++;

           prev = current;

           current = current.next;

       }

       return null;

   }

}

Main.java:

public class Main

{

   public static void main(String[] args)

   {

       //Create a list of objects.

       Object [] values = {10, 20, 30, 40};          

       //Create an object of the YourSimpleLinkedList class.

       YourSimpleLinkedList myList = new YourSimpleLinkedList(values);        

       //Display the initial list.

       System.out.print("The initial linked list is ");

       for (int i=0;i<myList.size();i++)

       {

           System.out.print(myList.get(i) + " ");

       }        

       //Remove an index from the list.

       myList.remove(0);        

       //Display the modified list.

       System.out.println();

       System.out.print("The modified list is ");

       for (int i=0;i<myList.size();i++)

       {

           System.out.print(myList.get(i) + " ");

       }

   }  

}

5 0
4 years ago
Steam enters a turbine at 8000 kPa, 440oC. At the exit, the pressure and quality are 150 kPa and 0.19, respectively.
levacccp [35]

Answer:

\dot W_{out} = 3863.98\,kW

Explanation:

The turbine at steady-state is modelled after the First Law of Thermodynamics:

-\dot Q_{out} -\dot W_{out} + \dot m \cdot (h_{in}-h_{out}) = 0

The specific enthalpies at inlet and outlet are, respectively:

Inlet (Superheated Steam)

h_{in} = 3353.1\,\frac{kJ}{kg}

Outlet (Liquid-Vapor Mixture)

h_{out} = 890.1\,\frac{kJ}{kg}

The power produced by the turbine is:

\dot W_{out}=-\dot Q_{out} + \dot m \cdot (h_{in}-h_{out})

\dot W_{out} = -2.93\,kW + (1.57\,\frac{kg}{s} )\cdot (3353.1\,\frac{kJ}{kg} - 890.1\,\frac{kJ}{kg} )

\dot W_{out} = 3863.98\,kW

8 0
3 years ago
Other questions:
  • What is the specific volume of oxygen at 40 psia and 80°F?
    10·1 answer
  • The surface energy of a single crystal depends on crystallographic orientation. Does this surface energy increase or decrease wi
    5·1 answer
  • 2.9 A young engineer is asked to design a thermal protec- tion barrier for a sensitive electronic device that might be exposed t
    9·1 answer
  • A spark ignition engine burns a fuel of calorific value 45MJkg. It compresses the air-ful mixture in accordance with PV^1.3=cons
    14·1 answer
  • When Hailey participated in a tree plantation drive, she wore her most comfortable loungewear. However, the same attire was not
    11·1 answer
  • You are the project manager assigned to construct a new 10-story office building. You are trying to estimate the costs for this
    10·1 answer
  • What typ of dog is this (wrong answers only)
    12·2 answers
  • When an object is plumb, it is _____.
    11·2 answers
  • Answer my question I will mark brainliest
    13·2 answers
  • Your load voltage and arc voltage measurement should be:
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!