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
mixas84 [53]
2 years ago
12

Cast-in-place concrete beams are identified on a plan view with letters and numbers that correspond to the ___.

Engineering
1 answer:
Alona [7]2 years ago
4 0

Cast-in-place concrete beams are identified on a plan view with letters and numbers that correspond to the beam schedule.

<h3>What are concrete beams?</h3>

Concrete beams refer to a load-bearing unit that can be used to carry both horizontal and vertical loads.

Cast-in-place concrete beams are identified on a plan view with letters and numbers corresponding to the beam schedule.

Learn more about concrete beams here:

brainly.com/question/20434107

#SPJ1

You might be interested in
What is the standard half-cell potential for the oxidation of methane under acidic conditions? The reaction for methane is as fo
Yuri [45]

Answer:

The element that is oxidized is carbon.

Its oxidation state increased. It increased from -4 to +4

Explanation:

Oxidation is a process that involves increase in oxidation number.

The oxidation number of carbon in CH4 is -4

C + (1×4) = 0

C + 4 = 0

C = 0 - 4 = -4

The oxidation number of carbon in CO2 is +4

C + (2×-2) = 0

C - 4 = 0

C = 0+4 = 4

Increase in the oxidation number of carbon from -4 to +4 means carbon is oxidized

4 0
3 years ago
A square isothermal chip is of width w = 5 mm on a side and is mounted in a substrate such that its side and back surfaces are w
adelina 88 [10]

Answer:

Maximum allowable chip power is 0.35 W

Explanation:

This question is incomplete. The complete question is

A square isothermal chip is of width w = 5 mm on a side and is mounted in a substrate such that its side and back surfaces are well insulated; the front surface is exposed to the flow of a coolant at t[infinity] = 15°c. from reliability considerations, the chip temperature must not exceed t = 85°c. f the coolant is air and the corresponding convection 200 w/m2 k, what is the maximum allowable chip power?

<u>ANSWER:</u>

The heat transfer through convection, we have the equation:

q = hA(T - T∞)

where,

q = power transfer through convection = ?

h = convection coefficient = 200 W/m²K

A = Area of convection surface = (0.005 m)² = 0.000025 m²

T = Chip surface temperature = 85° C

T∞ = Fluid temperature = 15° C

Therefore,

q = (200 W/m².K)(0.000025 m²)(85° C - 15° C)

<u>q = 0.35 W</u>

Since, difference in temperature is same on both Celsius and kelvin scale. Therefore, Celsius is written as kelvin for difference and they shall be cancelled.

3 0
4 years ago
Impedance is defined as the total opposition to current in an AC circuit. Question 17 options: True False
ArbitrLikvidat [17]

Answer: True

Explanation:

The total opposition to current flow in an AC circuit is known as Impedance.

8 0
2 years ago
What is measurement in term of electrical engineering ​
laila [671]

Explanation:

voltage, current and resistance are the Volt [ V ], Ampere [ A ] and Ohm [ Ω ]

3 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
Other questions:
  • When a traffic officer directs you proceed through the intersection
    6·1 answer
  • Air at p=1 atm enters a long tube of length 2.5 m and diameter of 12 mm at an inlet temperature of Tm,i=100oC and mass flowrate
    8·1 answer
  • Which of the following is not an example of heat generation? a)- Exothermic chemical reaction in a solid b)- Endothermic Chemica
    15·1 answer
  • Which of the following is an early practice of sustainable farming?
    13·1 answer
  • Design a non-inverting amplifier so that it has a gain of +48 (this gain is positive). Pick resistor values that you have in the
    15·1 answer
  • YO CUTIE! HELP MEEEEEE! Hazardous waste is a category that includes all of the following EXCEPT
    13·2 answers
  • How is tolerance calculated?
    11·1 answer
  • Coderz robotics 101: challenge mission 3 part 3
    8·1 answer
  • Who is the first engineer of world ? and why?​
    5·1 answer
  • Aluminium alloys find use in aircraft industry because of
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!