A line of students are arranged in odd and even positions. Now the students in the odd positions are to be sorted in the descending order and the students in the even position are to be sorted in ascending order, given a 1 D array. The maximum length of the line is 20. Display – ‘Invalid Size', if the input specified is zero or negative. Write an algorithm to implement the above scenario.

Answers

Answer 1

Answer:

The algorithm is as follows:

0. Start

1. MyArray = []

2. Input n

3. if n <1 or n > 20:

3.1print("Invalid Size")

4. else:

4.1 for [tex]i = 0[/tex] to n - 1:

 4.1.1 Input MyArray[i]

 4.2 even = []; odd = []

4.3 enum = 0; onum = 0

4.4 for i = 0 to n - 1:

 4.4.1 if i%2 == 0:

  4.4.1.1 even[enum]=list[i]

  4.4.1.2 enum = enum + 1

 4.4.2 else:

  4.4.2.1 odd[onum]=list[i]

  4.4.2.2 onum= onum + 1  

4.5 MyArray.clear()

4.6 enum=0

4.7 while even:

 4.7.1 minm = even[0]

 4.7.2 for x in even:  

  4.7.2.1 if x < minm:

   4.7.2.1.1 minm = x

 4.7.3 MMyArray[enum] = minm

 4.7.4 even.remove(minm)

 4.7.5 enum = enum + 1  

4.8 while odd:

 4.8.1 maxm = odd[0]

 4.8.2 for x in odd:  

  4.8.2.1 if x > maxm:

   4.8.2.1.1 maxm = x

 4.8.3 MMyArray[enum] = maxm

 4.8.4 odd.remove(maxm)

 4.8.5 enum = enum + 1

4.9 for i = 0 to n - 1:

 4.9.1 print MyArray[i]

5. Stop

Explanation:

This starts the algorithm

0. Start

This creates an empty array

1. MyArray = []

This gets input for n (the length of the array)

2. Input n

If n is is less than 1 or greater than 20, then the input is invalid

3. if n <1 or n > 20:

3.1print("Invalid Size")

For valid values of n, we have:

4. else:

The italicized gets input into the array

4.1 for [tex]i = 0[/tex] to n - 1:

 4.1.1 Input MyArray[i]

This creates empty arrays for even index and for odd index

 4.2 even = []; odd = []

This initializes even index and odd index to 0

4.3 enum = 0; onum = 0

This iterates through the array indices

4.4 for i = 0 to n - 1:

If index is even, add array element to even

 4.4.1 if i%2 == 0:

  4.4.1.1 even[enum]=list[i]

  4.4.1.2 enum = enum + 1

If otherwise, add array element to odd

 4.4.2 else:

  4.4.2.1 odd[onum]=list[i]

  4.4.2.2 onum= onum + 1  

Clear elements of MyArray

4.5 MyArray.clear()

Set index to 0

4.6 enum=0

Iterate through the even array

4.7 while even:

Set minimum to the first index

 4.7.1 minm = even[0]

Sort the array in ascending order

 4.7.2 for x in even:  

  4.7.2.1 if x < minm:

   4.7.2.1.1 minm = x

Add the sorted array into MyArray

 4.7.3 MMyArray[enum] = minm

Delete the elements of even array

 4.7.4 even.remove(minm)

 4.7.5 enum = enum + 1  

Iterate through the odd array

4.8 while odd:

Set maximum to the first index

 4.8.1 maxm = odd[0]

Sort the array in descending order

 4.8.2 for x in odd:  

  4.8.2.1 if x > maxm:

   4.8.2.1.1 maxm = x

Add the sorted array into MyArray

 4.8.3 MMyArray[enum] = maxm

Delete the elements of odd array

 4.8.4 odd.remove(maxm)

 4.8.5 enum = enum + 1

Iterate through the indices of the double sorted MyArray

4.9 for i = 0 to n - 1:

Print each array element

 4.9.1 print MyArray[i]

End algorithm

5. Stop

See attachment for the program implemented in Python


Related Questions

Two consecutive, first order reactions (with reaction rate constant k1 and k2) take place in a perfectly mixed, isothermal continuous reactor (CSTR) A (k1) → B (k2) → C Volumetric flow rates (F) and densities are constant. The volume of the tank (V) is constant. The reactor operate at steady state and at constant temperature. The inlet stream to the reactor contains only A with CA,in = 10 kmol/m3. If k1 = 2 min-1, k2 = 3 min-1, and τ = V/F.= 0.5 min, determine the concentration of C in the stream leaving the reactor.

Answers

Answer:

3  kmol/m^3

Explanation:

Determine the concentration of C in the stream leaving the reactor

Given that the CTSR reaction ; A (k1) → B (k2) → C

K1 = 2 min^-1 , K2 = 3 min^-1 , time constant ; τ = V/F.= 0.5 min also n1 = n2

attached below is the detailed solution

concentration of C leaving the reactor= 3 kmol/mol^3

Given ; Ca = 5 kmol/m^3 , Cb = 2 kmol/m^3 ( from the attached calculations ) Cc = 3 kmol/m^3

You are designing a package for 200 g of snack food that is sensitive to oxygen, and fails when it absorbs 120 ppm of oxygen (by weight). Marketing tells you it wants the snack to be in a plastic pouch measuring 6 inches by 6 inches (ignore seems), so it will have a total surface area available for permeation of 72 in(6" x 6" x 2 sides). You need to recommend an appropriate plastic material for this product, to provide a minimum of 70 days shelf life. Follow these steps:
a. Calculate the allowable oxygen gain, in cm at STP. (5 pts)
b. At this point, you do not know the material you will use, so you do not know the permeability coefficient or the thickness. The better the barrier the plastic you choose, the thinner the material can be to provide the appropriate barrier. Rather than simple trial and error, a sensible approach is to solve for the ratio of P/L that is required. We can solve the basic permeability equation for this ratio: P = 9 At Ap L Use the information you have to determine the required value for P/L, expressing your answer in cm/(100 in? d atm). (5 pts)
c. Use the information in the textbook (chapters 4 and 14 or in another reliable source; provide reference if you have used chapter 4, 14 or any other source) on oxygen permeability coefficients for various polymers to select a polymer that would be suitable, and calculate the required thickness. (Be sure this is reasonable; for example, if the required thickness is more than 20 mils, you need to choose a different polymer!) Note that chapter 4 presents these values in the units you used in (b) while chapter 14 presents values with different units, so unit conversion would be required. In your answer, state the material you have chosen, its oxygen permeability coefficient, and the minimum thickness you recommend. (Be sure to express the thickness with no more than one decimal place.) Obviously, there is more than one solution to this problem, but you only need one. (10 pts)

Answers

Snack food is the sensitivity to auction and avails win the George 120

_____ can be defined as the rate at which work is done or the amount of work done based on a period of time. (2 Points) voltage power resistant current

Answers

Answer: Power

Explanation:

The rate at which work is done or the amount of work done based on a period of time is referred to as power.

Power can also be defined as the amount of energy that is being transferred per unit time. The unit of power is one joule per second or simply called the watt.

In a device to produce drinking water, humid air at 320C, 90% relative humidity and 1 atm is cooled to 50C at constant pressure. If the duty on the unit is 2,200 kW of heat is removed from the humid air, how much water is produced and what is the volumetric flow rate of air entering the unit

Answers

Answer: hello your question lacks some data below is the missing data

Air at 32C has H = 0.204 kJ/mol and at 50C has H = -0.576 kJ/mol

H of steam can be found on the steam tables – vapor at 32C and 1 atm; vapor at 5C and liquid at 5C. Assume the volume of the humid air follows the ideal gas law.

H of water liquid at 5C = 21 kJ/kg; vapor at 5C = 2510.8 kJ/kg; H of water vapor at 32C = 2560.0 kJ/kg

Answer :

a) 34.98 lit/min

b) 1432.53 m^3/min

Explanation:

a) Calculate how much water is produced

density of water = 1 kg/liter

First we will determine the mass of condensed water using the relation below

inlet mass - outlet vapor mass =  0.0339508 * n * 18/1000 ----- ( 1 )

where : n = 57241.57

hence equation 1 = 34.98 Kg/min

∴ volume of water produced =  mass of condensed water / density of water

                                                =  34.98 Kg/min / 1 kg/liter

                                                = 34.98 lit/min

b) calculate the Volumetric flow rate of air entering the unit

applying the relation below

Pv = nRT

101325 *V = 57241.57 * 8.314 * 305  

∴ V = 1432.53 m^3/min

hmmmmmmmm i already put the photo as attachment its

Answers

Answer:

letse see

Explanation:

Determine the slopes and deflections at points B and C for the beam shown below by the moment-area method. E=constant=70Gpa I=500 (10^6)mm^4

Answers

Answer:

hello your question is incomplete attached below is the complete question

answer :

Slopes : B = 180 mm , C = 373 mm

Deflection: B = 0.0514 rad ,  C = 0.077 rad

Explanation:

Given data :

I = 500(10^6) mm^4

E = 70 GPa

The M / EI  diagram is attached below

Deflection angle at B

∅B = ∅BA = [ 150 (6) + 1/2 (300)*6 ] / EI

                 = 1800 / ( 500 * 70 ) = 0.0514 rad

slope at B

ΔB = ΔBA = [ 150(6)*3 + 1/2 (300)*6*4 ] / EI

                 = 6300 / ( 500 * 70 ) = 0.18 m = 180 mm

Deflection angle at C

∅C = ∅CA = [ 1800 + 300*3 ] / EI

                 = 2700 / ( 500 * 70 )

                 = 2700 / 35000 = 0.077 rad

Slope at C

ΔC = [ 150 * 6 * 6 + 1/2 (800)*6*7 + 300(3) *1.5 ]

     = 13050 / 35000 = 373 mm

You are using a Jupyter Notebook to explore data in a DataFrame named productDF. You want to write some inline SQL by using the following code, and visualize the results as a scatter plot: %%sql SELECT cost, price FROM product What should you do before running a cell with the %%sql magic? a. Create a new DataFrame named product from productDF.select("cost", "price") b. Persist the productDF DataFrame using productDF.createOrReplaceTempView("product") c. Filter the productDF dataframe using productDF.filter("cost == price") d. Rename the columns in the productDF DataFrame using productDF.withColumnRenamed("cost", "price")

Answers

You need to explain it more simple as everyone is clueless

In a production facility, 3-cm-thick large brass plates (k 5 110 W/m·K, r 5 8530 kg/m3, cp 5 380 J/kg·K, and a 5 33.9 3 1026 m2/s) that are initially at a uniform temperature of 25°C are heated by passing them through an oven maintained at 700°C. The plates remain in the oven for a period of 10 min. Taking the convection heat transfer coefficient to be h 5 80 W/m2·K, determine the surface temperature of the plates when they come out of the oven. Solve this problem using analytical one-term approximation method (not the Heisler charts). Can this problem be

Answers

Answer:

the surface temperature of the plates when they come out of the oven is approximately 445 °C

Explanation:

Given the data in the question;

thickness t = 3 cm = 0.03 m

so half of the thickness L = 0.015 m

thermal conductivity of brass k = 110 W/m°C

Density p = 8530 kg/m³

specific heat [tex]C_p[/tex] = 380 J/kg°C

thermal diffusivity of brass ∝ = 33.9 × 10⁻⁶ m²/s

Temperature of oven T₀₀ = 700°C

initial temperature T[tex]_i[/tex] = 25°C

time t = 10 min = 600 s

convection heat transfer coefficient h = 80 W/m².K

Since the plate is large compared to its thickness, the heat conduction is one dimensional. heat transfer coefficient and thermal properties are constant over the entire surface.

So, using analytical one-term approximation method, the Fourier number > 0.2.

now, we determine the Biot number for the process

we know that; Biot number Bi =  hL / k

so we substitute

Bi =  hL / k

Bi = (80 × 0.015) / 110 = 1.2 / 110 = 0.0109

Now, we get the constants λ₁ and A₁ corresponding to Biot Number ( 0.0109 )

The interpolation method used to find the

λ₁ = 0.1039 and A₁ = 1.0018

so

The Fourier number т = ∝t/L²

we substitute

Fourier number т = ( (33.9 × 10⁻⁶)(600) ) / (0.015)²

т = 0.02034 / 0.000225

т = 90.4

As we can see; 90.4 > 0.2

So,  analytical one-term approximation can be used.

∴ Temperature at the surface will be;

θ(L,t)[tex]_{wall[/tex] = (T(x,t) - T₀₀) / (T[tex]_i[/tex] - T₀₀) ----- let this be equation

θ(L,t)[tex]_{wall[/tex] = [A₁e^(-λ₁²т)]cos( λ₁L / L )

so we substitute

θ(L,t)[tex]_{wall[/tex] = [1.0018e^(- (0.1039)²× 90.4 )] cos( 0.1039 × 0.015 / 0.015 )

θ(L,t)[tex]_{wall[/tex] = [1.0018e^(- 0.975886984 )] cos( 0.1039 )

θ(L,t)[tex]_{wall[/tex] = [1.0018 × 0.376857938] × 0.999998

θ(L,t)[tex]_{wall[/tex] = 0.3775

so we substitute into equation 1

θ(L,t)[tex]_{wall[/tex] = (T(L,t) - T₀₀) / (T[tex]_i[/tex] - T₀₀)

0.3775 = ( T(L,t) - 700 ) / ( 25 - 700 )

0.3775 = ( T(L,t) - 700 ) / ( - 675 )

0.3775 × ( - 675 ) = ( T(L,t) - 700 )

- 254.8125 = T(L,t) - 700

T(L,t) = 700 - 254.8125

T(L,t) = 445.1875 °C ≈ 445 °C

Therefore, the surface temperature of the plates when they come out of the oven is approximately 445 °C

Q1) Assuming that in a room full of 13 students born in 2000 and 2004 only, calculate the probability that that two persons or more have the same birthday (same day, month and year) knowing that 2000 contains 366 days and 2004 contains 366 days.

Answers

https://www.uhigh.ilstu.edu/math/thompson/Precalc/Probability%20and%20combinations/9.7%20Probability%20of%20Having%20the%20Same%20Birthday.pdf

Answer:

D

Explanation:

Got it wrong so i could answer

banana with an average mass of 0.15 kg and average specific heat of 3.35 kJ/kg · °C is cooled from 20°C to 5°C. The amount of heat transferred from the banana is

a.
62.1 kJ

b.
7.5 kJ

c.
None of these

d.
6.5 kJ

e.
0.85 kJ

f.
17.7 kJ

Answers

Answer:

The amount of heat transferred from the banana is (-)7.54 KJ

Explanation:

As we know,

[tex]Q = m*c*\Delta T[/tex]

Q = Amount of heat transferred

m = mass of banana

[tex]T_2 = 5[/tex] degree Celsius

[tex]T_1 = 20[/tex] degree Celsius

The amount of heat transferred from the banana =

[tex]0.15 * 3.35 * (5 -20)\\-7.54[/tex]KJ (negative sign represents reduction in heat energy)

1) Each of the following would be considered company-confidential except
A) a contract bid B) employee salaries C) your company's strategic plan D) your company's address

Answers

Answer is your company’s address

) A flow is divided into two branches, with the pipe diameter and length the same for each branch. A 1/4-open gate valve is installed in line A, and a 1/3-closed ball valve is installed in line B. The head loss due to friction in each branch is negligible compared with the head loss across the valves. Find the ratio of the velocity in line A to that in line B (include elbow losses for threaded pipe fittings).

Answers

Answer:

Va / Vb = 0.5934

Explanation:

First step is to determine total head losses at each pipe

at Pipe A

For 1/4 open gate valve head loss = 17 *Va^2 / 2g

elbow loss = 0.75 Va^2 / 2g

at Pipe B

For 1/3 closed ball valve head loss = 5.5 *Vb^2 / 2g

elbow loss = 0.75 * Vb^2 / 2g

Given that both pipes are parallel

17 *Va^2/2g +  0.75*Va^2 / 2g = 5.5 *Vb^2 / 2g  + 0.75 * Vb^2 / 2g

∴ Va / Vb = 0.5934

A 1.00 liter solution contains 0.46 M hydrocyanic acid and 0.35 M potassium cyanide If 25.0 mL of water are added to this system, indicate whether the following statements are true or false. (Note the the volume MUST CHANGE upon the addition of water.)
A. The concentration of HCN will increase.
B. The concentration of CN" will decrease.
C. The equilibrium concentration of Hy0 will remain the same 4
D. The pH will remain the same.
E. The ratio of [HCN]/[CN] will decrease.

Answers

I won leader solution contain 0.46 mL of hydronic I said of 0.3 potassium

Air initially at 120 psia and 500o F is expanded by an adiabatic turbine to 15 psia and 200o F. Assuming air can be treated as an ideal gas and has variable specific heat. a) Determine the specific work output of the actual turbine (Btu/lbm). b) Determine the amount of specific entropy generation during the irreversible process (Btu/lbm R). c) Determine the isentropic efficiency of this turbine (%).

Answers

Answer:

a) specific work output of the actual turbine is 73.14 Btu/lbm

b) the amount of specific entropy generation during the irreversible process is 0.050416 Btu/lbm°R

c) Isentropic efficiency of the turbine is  70.76%

Explanation:

Given the data in the question;

For an adiabatic turbine; heat loss Q = 0

For Initial State;

p₁ = 120 psia

T₁ = 500°F = 959.67°R

from table; { Gas Properties of Air }

At T₁ = 959.67°R

[tex]s_1^0[/tex] = 0.74102 Btu/lbm°R

[tex]h_1[/tex] = 230.98 Btu/lbm

For Finial state;

p₂ = 15 psia

T₂ = 200°F = 659.67°R

[tex]s^0_{2a[/tex] = 0.64889 Btu/lbm°R

[tex]h_{2a[/tex] = 157.84 Btu/lbm

we know that R for air is 0.06855 Btu/lbm.R

a)

The specific work output of the actual turbine Wₐ is;

W[tex]_a[/tex] = [tex]h_1[/tex]  - [tex]h_{2a[/tex]

we substitute

W[tex]_a[/tex] = 230.98 - 157.84

W[tex]_a[/tex] = 73.14 Btu/lbm

Therefore, specific work output of the actual turbine is 73.14 Btu/lbm

b)

amount of specific entropy generation during the irreversible process.

To determine the entropy generation [tex]S_{gen[/tex];

[tex]S_{gen[/tex] = ΔS = [tex]s_{2a[/tex] - [tex]s_1[/tex] =  [tex]s^0_{2a[/tex]  - [tex]s_1^0[/tex] - R ln([tex]\frac{p_2}{p_1}[/tex])

we substitute in our values

[tex]S_{gen[/tex] = 0.64889 - 0.74102 - 0.06855 ln([tex]\frac{15}{120}[/tex])

[tex]S_{gen[/tex] = 0.64889 - 0.74102 + 0.1425457

[tex]S_{gen[/tex] = 0.050416 Btu/lbm°R

Therefore, the amount of specific entropy generation during the irreversible process is 0.050416 Btu/lbm°R

c)

Isentropic efficiency of turbine η[tex]_{is[/tex]

η[tex]_{is[/tex] = {actual work output] / [ ideal work output ] = ([tex]h_1[/tex]  - [tex]h_{2a[/tex] ) / ( [tex]h_1[/tex]  - [tex]h_{2s[/tex] )

Now, for an ideal turbine;

ΔS = 0 = [tex]s_{2s[/tex] - [tex]s_1[/tex]

so, [tex]s_{2s[/tex] - s₁  = [tex]s^0_{2s[/tex] - [tex]s_1^0[/tex] - R ln([tex]\frac{p_2}{p_1}[/tex])

0 =  [tex]s^0_{2s[/tex] - [tex]s_1^0[/tex] - R ln([tex]\frac{p_2}{p_1}[/tex])

[tex]s^0_{2s[/tex]  = [tex]s_1^0[/tex] + R ln([tex]\frac{p_2}{p_1}[/tex])

we substitute

[tex]s^0_{2s[/tex]  = 0.74102 + 0.06855 ln([tex]\frac{15}{120}[/tex])

[tex]s^0_{2s[/tex]  = 0.74102 - 0.1425457

[tex]s^0_{2s[/tex]  = 0.59847 Btu/lbm°R

Now, from table; { Gas Properties of Air }

At [tex]s^0_{2s[/tex]  = 0.59847 Btu/lbm°R; [tex]h_{2s[/tex]  = 127.614 Btu/lbm

η[tex]_{is[/tex]  = [( [tex]h_1[/tex]  - [tex]h_{2a[/tex] ) / ( [tex]h_1[/tex]  - [tex]h_{2s[/tex]  )] × 100%

we substitute

η[tex]_{is[/tex]  = [( 230.98 - 157.84 ) / ( 230.98 - 127.614 )] × 100%

η[tex]_{is[/tex]  = [ 73.14 / 103.366] × 100%

η[tex]_{is[/tex]  = 0.70758 × 100%

η[tex]_{is[/tex]  = 70.76%

Therefore, Isentropic efficiency of the turbine is  70.76%

The human eye, as well as the light-sensitive chemicals on color photographic film, respond differently to light sources with different spectral distributions. Daylight lighting corresponds to the spectral distribution of the solar disk, which may be approximated as a blackbody at 5800K. Incandescent lighting from the usual household bulb corresponds approximately to the spectral distribution of a black body at 2900K. Calculate the band emission fractions for the visible region, 0.47 mu m to 0.65 mum, for each of the lighting sources. Calculate the wavelength corresponding to the maximum spectral intensity for each of the light sources

Answers

Answer:

a) at T = 5800 k  

  band emission = 0.2261

at T = 2900 k

  band emission = 0.0442

b) daylight (d) = 0.50 μm

    Incandescent ( i ) =  1 μm

Explanation:

To Calculate the band emission fractions we will apply the Wien's displacement Law

The ban emission fraction in spectral range λ1 to λ2 at a blackbody temperature T can be expressed as

F ( λ1 - λ2, T ) = F( 0 ----> λ2,T) - F( 0 ----> λ1,T )

Values are gotten from the table named: blackbody radiation functions

a) Calculate the band emission fractions for the visible region

at T = 5800 k  

  band emission = 0.2261

at T = 2900 k

  band emission = 0.0442

attached below is a detailed solution to the problem

b)calculate wavelength corresponding to the maximum spectral intensity

For daylight ( d ) = 2898 μm *k / 5800 k  = 0.50 μm

For Incandescent ( i ) = 2898 μm *k / 2900 k = 1 μm

You will be hiking to a lake with some of your friends by following the trails indicated on a map at the trailhead. The map says that you will travel 1.7 mi directly north, then 2.7 mi in a direction 36° east of north, then finally 1.7 mi in a direction 15° north of east. At the end of this hike, how far will you be from where you started, and what direction will you be from your starting point?

Answers

Answer: 64.58



Explanation:

what is the most common type of suspensions system used on body over frame vehicles?

Answers

Answer:

Engine

Explanation:

Semi-independent suspension is the most common type of suspension system used on body over frame vehicles.

What is a Semi-independent suspension?

Semi-independent suspension give the front wheels some individual movement.

This suspension only used in rear wheels.

Thus, the correct option is Semi-independent suspension

Learn more about Semi-independent suspension

https://brainly.com/question/23838001

#SPJ2

What happens to the speed of light if the IOR increases?

Answers

Because index of reflection is defined as the radio between the spray speed of light in a vacuum and the speed of light in a medium as a light traveling to roll the medium increases in speed at index of refraction decreases

The boundary work is positive during an expansion process.
a.
False
b.
True

Answers

Answer:

True

Explanation:

During expansion process, the boundary work is positive while in case of contraction, the boundary work is negative. During expansion process, the work is done by the system while in case of compression process, work in done on the system

Hence, the given statement is true

If it took a 30m capacity tank mediated by 2cm waterproof water faucet for 10 hours, calculate the flow speed (exit) water from the

Answers

Complete question:

If it took a 30m³ capacity tank mediated by 2cm waterproof water faucet for 10 hours, calculate the flow speed (exit) of water from the tank.

Answer:

the flow rate of the water from the tank is 0.05 m³/min

Explanation:

Given;

volume of water in the tank, v = 30 m³

length of the waterproof faucet, L = 2cm = 0.02 m

duration of water flow through the tank, t = 10 hours

The flow rate of the water from the tank is calculated as;

[tex]Q = \frac{V}{t} = \frac{30 \ m^3}{10\ h \ \times \ 60 \min} = 0.05 \ m^3/ \min[/tex]

Therefore, the flow rate of the water from the tank is 0.05 m³/min

This is the top part of the picture. I need someone to put the correct letter by the word !

Answers

Answer:

J = power steering pump  

A = hydraulic hoses

D = pitman arm

G = rack and pinion assembly

B = idler arm

C = center link

F = tie rod

E = tie rod end

H = rack and pinion boot

I = outer tie rod end

Explanation:

The substance xenon has the following properties:
normal melting point: 161.3 K
normal boiling point: 165.0 K
triple point: 0.37 atm, 152.0 K
critical point: 57.6 atm, 289.7 K
A sample of xenon at a pressure of 1.00 atm and a temperature of 204.0 K is cooled at constant pressure to a temperature of 163.7 K.Which of the following are true?
a. One or more phase changes will occur.
b. The final state of the substance is a liquid.
c. The final state of the substance is a solid.
d. The sample is initially a gas.
e. The liquid initially present will vaporize.

Answers

Answer:

the liquid woulriekwvhrnsshsnekwb ndrhwmoadi

please help with my economics problem

Answers

Answer:

You first get a new job, and make a new company and then by amazon to traumatize Jeff Bezos after his divorce

Explanation:

Other Questions
What is the area of the trapezoid?A) 176 cm^2B)192 cm^2C)208 cm^2D)224 cm^2 To determine a students overall test score for the semester, Ms. Lopez throws out the lowest test score and takes the average of the remaining test scores. Victor earned the following test scores in Ms. Lopezs class this semester: 62, 78, 83, 84, and 93. What overall test score did Victor earn in Ms. Lopezs class this semester?67.667.680.080.083.083.083.583.584.5 Can somebody please help me? Function of red nucleus in mid brain A foreign branch bank operates like a local bank, but legally Group of answer choices a branch bank is subject to only the banking regulations of its home country and not the country in which it operates. it is a part of the parent bank. a branch bank is subject to both the banking regulations of its home country and the country in which it operates. it is a part of the parent bank, and a branch bank is subject to both the banking regulations of its home country and the country in which it operates. Ill mark brainliest Please select the word from the list that best fits t he definitionMatch each item with the correct statement. process by which citizens act directly to cause change What is international political economy? With Authors Fresh steak is said to have both negative and positive redox potential. Discuss how the redox potential affects the microbial ecology of the food What is a performer's musical and expressive involvement in the music called?A. artistry.expressionC. phrasingD.tempo Which of the karyotypes shown is from a normal female? The French and Indian War resulted in all of the following EXCEPT: Michelle took 9 hours of surfing lessons in August. This was 1/6the number of hours of surfing lessons Jack took in August. How many hours of surfing lessons did Jack take? Which statements about special quadrilaterals are true? Select all that apply.An isosceles trapezoid can be broken into a rectangle and two triangles.The area of a kite can be found by multiplying the length times the width.After breaking a kite into two triangles of the same size and shape, find the height of the triangles by dividing the width by 2.A kite can be broken into two triangles or a rectangle and a triangle.A trapezoid is a quadrilateral with two pairs of parallel opposite sides. What geologic time period and epoch was it when the continental glacier formed the finger lakes Question 5(Multiple Choice Worth 5 points)(MC)A Big YearBy Bob KowalskiWould you go to the ends of the earth to see a bird? What if it were a really special bird: one with beautiful feathers, an entrancing call, or a silly dance? What if seeing that one special bird would allow you to win a contest?If that contest doesn't get you on television or win you any cash prizes, would you still do it? For those who participate in the "Big Year," the honor of beating the previous record is the only reward they get or even want.A "Big Year" is a year in which a person attempts to see as many different species of birds as possible within a particular region. Most of North America participates in a "Big Year," this region is the lower 48 American states, plus Alaska, Canada, and a couple of French islands off the Canadian coast.You may be thinking that looking at birds is silly, but just think about the numbers of the recent record-holders and its commitment to get these numbers. One recent "Big Year" winner managed to see 744 birds in one year, missing the record by just one bird. Big Year birders travel by train, plane, boat, car, bicycle, and of course, by foot. They can cover over 150 thousand miles to get numbers of sightings this high. They can also spend a small fortune.Just to clarify, the birds these contestants are counting are the number that they see in a particular year. You see, the contest is based on an honor system. No pictures or other evidence is required as proof of a sighting. Most birders take great pride in their reputation and their abilities to see or hear and then identify a bird. Usually, important sightings of the rare birds needed to get counts in the 700s are visited by hundreds of birders. It is pretty hard to cheat your way to a record-breaking year, but in general, few are interested in cheating.This honesty comes from the fact that most people who want to break such a record know the greatest rewards are not necessarily in winning. Such rewards are in being able to commit a year of your life to do something you love. Rewards are found in seeing amazing, inspiring creatures like the California Condor or the Magnificent Frigate bird. Rewards also come in spending time with people who, like you, want to spend their time looking to the skies and trees for glimpses of emerald, crimson, or cerulean blue feathered jewels.You don't have to be able to travel a continent to have a big birding experience though. Have a big month. Or a big weekend. Set a personal record, learn to identify the species that live in your part of the world, or try to learn the calls of just two species of birds. You will soon find looking at birds isn't such a strange way to spend your time.Extra! Extra! Backyard BirdingMany schools, families, and young birders across the country participate in the "Great Backyard Bird Count." While not as long as a "Big Year," the "Great Backyard Bird Count" happens every year. It depends on birders and families across the country to watch feeders and other areas in their yards and count the number of birds they see. Unlike the "Big Year," the goal is not to see who can count the most birds. Instead, participants in this event work together to help bird experts get a good idea of how birds are doing. Participants are given checklists and enter their sightings on a website. Called a "citizen-science" project, this event is open to anyone, requires no travel, and happens every year over one weekend in February.Read this sentence from the article:You may be thinking that looking at birds is silly, but just think about the numbers of the recent record-holders and its commitment to get these numbers. How to compare love to a flower Which of these is the BEST definition of "civilization" for a history class? A) the way people talk B) a group that has a culture C) the ability to walk upright D) how sophisticated people behave This is what I do when I have nothing else to do! What is the answer to this question? help please question in the photo below thx