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
RUDIKE [14]
3 years ago
7

I need help on what’s and input and output to make the flowchart

Engineering
1 answer:
e-lub [12.9K]3 years ago
3 0

Input: what is put in, taken in, or operated on by any process or system.

Output: the amount of something produced by a person, machine, or industry.

You might be interested in
Multiple poles at the origin. Sketch the asymptotes of the Bode plot magnitude and phase for each of the listed open-loop transf
pogonyaev

Answer:

a la 1/s^2(s + 10)

Explanation:

I got it right on math lab

4 0
4 years ago
What is your favorite concole?
algol [13]

Answer:

Ps4

Explanation:

7 0
3 years ago
Read 2 more answers
In contouring, it is necessary to measure position and not velocity for feedback.
EastWind [94]

Answer:

(1). False, (2). True, (3). False, (4). False, (5). True.

Explanation:

The term ''contouring'' in this question does not have to do with makeup but it has to deal with the measurement of all surfaces in planes. It is a measurement in which the rough and the contours are being measured. So, let us check each questions again.

(1). In contouring, it is necessary to measure position and not velocity for feedback.

ANSWER : b =>False. IT IS NECESSARY TO MEASURE BOTH FOR FEEDBACK.

(2). In contouring during 2-axis NC machining, the two axes are moved at the same speed to achieve the desired contour.

ANSWER: a=> True.

(3). Job shop is another term for process layout.

ANSWER: b => False

JOB SHOP IS A FLEXIBLE PROCESS THAT IS BEING USED during manufacturing process and are meant for job Production. PROCESS LAYOUT is used in increasing Efficiency.

(4). Airplanes are normally produced using group technology or cellular layout.

ANSWER: b => False.

(5). In manufacturing, value-creating time is greater than takt time.

ANSWER: a => True.

8 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
The shaft is made of A992 steel. It has a diameter of 1 in. and is supported by bearings at A and D, which allows free rotation.
zysi [14]

Answer:

the angle of twist of B with respect to D is -1.15°

the angle of twist of C with respect to D is 1.15°

Explanation:

The missing diagram that is supposed to be added to this image is attached in the file below.

From the given information:

The shaft is made of A992 steel. It has a diameter of 1 in and is supported by bearing at A and D.

For the Modulus of Rigidity  G = 11 × 10³ Ksi =  11 × 10⁶ lb/in²

The objective are :

1) To determine the angle of twist of B with respect to D

Considering the Polar moment of Inertia at the shaft J\tau

shaft J\tau = \dfrac{\pi}{2}r^4

where ;

r = 1 in /2

r = 0.5 in

shaft J \tau = \dfrac{\pi}{2} \times 0.5^4

shaft J\tau = 0.098218

Now; the angle of twist at  B with respect to D  is calculated by using the expression

\phi_{B/D} = \sum \dfrac{TL}{JG}

\phi_{B/D} = \dfrac{T_{CD}L_{CD}}{JG}+\dfrac{T_{BC}L_{BC}}{JG}

where;

T_{CD} \ \  and \ \  L_{CD} are the torques at segments CD and length at segments CD

{T_{BC} \  \ and  \ \ L_{BC}} are the torques at segments BC and length at segments BC

Also ; from the diagram; the following values where obtained:

L_{BC}} = 2.5  in

J\tau = 0.098218

G =  11 × 10⁶ lb/in²

T_{BC = -60 lb.ft

T_{CD = 0 lb.ft

L_{CD = 5.5 in

\phi_{B/D} = 0+ \dfrac{[(-60 \times 12 )] (2.5 \times  12 )}{ (0.9818)(11 \times 10^6)}

\phi_{B/D} = \dfrac{[(-720 )] (30 )}{1079980}

\phi_{B/D} = \dfrac{-21600}{1079980}

\phi_{B/D} = − 0.02 rad

To degree; we have

\phi_{B/D}  = -0.02 \times \dfrac{180}{\pi}

\mathbf{\phi_{B/D}  = -1.15^0}

Since we have a negative sign; that typically illustrates that the angle of twist is in an anti- clockwise direction

Thus; the angle of twist of B with respect to D is 1.15°

(2) Determine the angle of twist of C with respect to D.Answer unit: degree or radians, two decimal places

For  the angle of twist of C with respect to D; we have:

\phi_{C/D} = \dfrac{T_{CD}L_{CD}}{JG}+\dfrac{T_{BC}L_{BC}}{JG}

\phi_{C/D} = 0+\dfrac{T_{BC}L_{BC}}{JG}

\phi_{B/D} = 0+ \dfrac{[(60 \times 12 )] (2.5 \times  12 )}{ (0.9818)(11 \times 10^6)}

\phi_{C/D} = \dfrac{21600}{1079980}

\phi_{C/D} = 0.02 rad

To degree; we have

\phi_{C/D}  = 0.02 \times \dfrac{180}{\pi}

\mathbf{\phi_{C/D}  = 1.15^0}

3 0
3 years ago
Other questions:
  • A metal rod, 20 mm diameter, is tested in tension (force applied axially). The total extension over a length of 80 mm is 3.04 x
    8·1 answer
  • . Steam is to be condensed from saturated vapor to saturated liquid in the condenser of a steam power plant at a temperature of
    5·1 answer
  • Cuál de las siguientes es la mejor manera de practicar sus habilidades de tecnología de secundaria?
    9·1 answer
  • A heat engines is operating on a Carnot cycle and has a thermal efficiency of 55 percent. The waste heat from this engine is rej
    10·1 answer
  • Determine the maximum weight of the flowerpot that can besupported without exceeding a cable tension of 50 lb in eithercable AB
    15·1 answer
  • In approximately 200 words, explain what three factors you believe will have the greatest impact on the future of the green buil
    11·1 answer
  • Which measure is a correct definition of density?
    11·1 answer
  • When conducting an immediate charge on 2023 ariya, what is the first step if the timer is set?.
    9·1 answer
  • Blind spots around a large vehicle are _________________ than the blind spots around a car.
    10·1 answer
  • what typical size are the metal studs to be for interior walls unless noted differently on the drawings? what spacing is to be u
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!