Celia is a potato peeler for CanCan Foods. She decides to quit her job and instead work as a seamstress at CoverUp Clothing. This would cause:
1.a movement along the production possibilities curve.
2.a movement towards a point that is outside the PPC
3.an outward shift of the production possibilities curve.
4.an inward shift of the production possibilities curve.
Consider a production possibilities curve with maize on the vertical axis and cars on the horisontal. Unusually good weather for growing maize shift:
1.neither the horisontal intercept nor the vertical intercept.
2.the horisontal intercept rightward and the vertical intercept upward.
3.the horisontal intercept rightward but does not shift the vertical intercept.
4.the vertical intercept upward but does not shift the horisontal intercept.
The market for drones has undergone some changes over the past two years. As a result of these changes, the equilibrium quantity of drones has increased substantially with almost no change in the equilibrium price. Which of the following is the most likely explanation for these changes? Over the past two years:
1.demand has increased and supply has decreased.
2.both supply and demand have increased.
3.both supply and demand have decreased.
4.supply has increased and demand has decreased.
calculate tha height of chimny required to produce a draught equivalent to 1.7 cm of water if tha flue gas temperature is 270℃ and ambient temperature is 22℃ and minimum amount of air per kg of fuel is 17kg
1.If heat is observed as products were formed means that the reaction is ___.
a.endothermic
b. endergonic
c. exothermic
d. both b and c are correct
2.If a substance that would increase the reaction’s rate would have been added instead, what will happen to the equilibrium?
a.shift to the left
b. shift to the right
c. none of the given options
d. no shift
3.Will the equilibrium re-established after one of your groupmates added an increment in the temperature?
a. yes
b. no
c. more information required
d. none of the given options
4.What equation relates the expression of the equilibrium constant in terms of pressure and concentration?
a.ideal gas equation
b. van’t Hoff equation
c. Arrhenius equation
d. Molarity
5.If the coefficients for a reaction are all multiplied by 2, the equilibrium constant will be
a.equal to Kc x 2
b. equal to Kc over 2
c. unchanged
d. equal to Kc2
4.A reaction that is spontaneous as written __________.
a.is very rapid
b.will proceed without outside intervention
c.is also spontaneous in the reverse direction
d.has an equilibrium position that lies far to the left
e.is very slow
5.For an isothermal process, ΔS = __________.
a.q
b.qrev/T
c.qrev
d.Tqrev
e.q + w
1.The entropy will usually increase when;
I.a molecule is broken into two or more smaller molecules.
II.a reaction occurs that results in an increase in the number of moles of gas.
III.a solid changes to a liquid.
IV.a liquid changes to a gas.
a. I only
b.II only
c.III only
d.IV only
e.I, II, III, and IV
2.For the reaction, A + B → C, ΔHo = +30 kJ; ΔSo = +50 J/K. Therefore the reaction is:
a.spontaneous at all temperatures.
b.nonspontaneous at all temperatures.
c.spontaneous at temperatures less than 600 K.
d.spontaneous at temperatures greater than 600 K.
e.spontaneous only at 25oC.
3.The thermodynamic quantity that expresses the degree of disorder in a system is __________.
a.enthalpy
b.internal energy
c.bond energy
d.entropy
e.heat flow
Silver metal reacts with sulfur to form silver sulfide according to the following balanced equation: (5 points)2Ag(𝑠) + S(𝑠) → 𝐴𝑔2S(𝑠)What is the limiting reactant when 50.0 g Ag is reacted with 10.0 g S?
There is a secret organization and they
want to create a secret language for the
calculation to make the data secure.
Now the manager of the organization
asked his IT employee to make the
program which will function as follows:
a) * will subtract the numbers b) - will
divide the numbers c) / will add the
numbers d) + will multiply the numbers.
Use operator overloading.
Write a program to find if a year is a leap year or not. We generally assume that if a year number is divisible by 4 it is a leap year. But it is not the only case. A year is a leap year if −
1. It is evenly divisible by 100
2. If it is divisible by 100, then it should also be divisible by 400
3. Except this, all other years evenly divisible by 4 are leap years.
So the leap year algorithm is, given the year number Y,
● Check if Y is divisible by 4 but not 100, DISPLAY "leap year"
● Check if Y is divisible by 400, DISPLAY "leap year"
● Otherwise, DISPLAY "not leap year"
For this program you have to take the input, that is the year number from an input file input.txt that is provided to you. The input file contains multiple input year numbers. Use a while loop to input the year numbers from the input file one at a time and check if that year is a leap year or not. Your output should go in the console.