Answer:
hello your question has some missing information attached to the answer is the missing component
Answer : αaxial,p = -6.034 ksi ( compressive )
αbend,p = 19.648 ksi ( tensile )
Explanation:
αaxial, p =
equation 1
αbend, p =
equation 2
P = load = 35 kips
A = area of column = 5.8 
d = column cross section depth = 9.5 in
= 55.0 
Hence equation 1 becomes
αaxial,p = -35 / 5.8 = - 6.034 ksi ( compressive )
equation 2 becomes
αbend, p =
= + 19.648 ksi ( tensile )
Answer:
The following query is used to display TripName. Reservationld, FirstName. LastName and TotalCost of trip by adding the trip price plus other fees and multiplying the result by the number of persons which have number of persons >4.
Query:
SELECT ReservationlD, Trip.TripName. Customer.LastName. Customer.FirstName. (TripPrice+OtherFees) 'NumPersons as TotalCost FROM Reservation, Trip, Customer WHERE NumPersons>4 AND Reservation.TriplD=Trip.TriplD AND
Customer. CustomerNum=Reservation.CustomerNum:
Explanation:
- Select clause is used to retrieve data from specified database table or relation and returns the data in the form of table.
- ReservationID. Trip.TripName. Customer.LastName. Customer.FirstName are the column name of table.
- (TripPrice+OtherFees) 'NumPersons will calculate the total cost of the Trip and stored it into TotalCost column.
- As clause is used to give new name TotalCost to resultant column.
- FROM clause specifies one or more table from where records to be retrieved. o Reservation. Trip and Customer are the table name.
- WHERE clause is used in SQL query to retrieve only those records that satisfy the specified condition
Answer: c) 450 kPa
Explanation:
Boyle's Law: This law states that pressure is inversely proportional to the volume of the gas at constant temperature and number of moles.
(At constant temperature and number of moles)
where,
= initial pressure of gas = 150 kPa
= final pressure of gas = ?
= initial volume of gas = v L
= final volume of gas =
Therefore, the new pressure of the gas will be 450 kPa.