7 Suggest sensors that could be used with control systems to give measures of (a) the temperature of a liquid, (b) whether a workpiece is on the work table, (c) the varying thickness of a sheet of met

Answers

Answer 1

Sensors are devices used to detect changes in the physical environment such as temperature, pressure, and light and translate these changes into electrical signals that can be read by a control system.

Seven sensors that can be used with control systems to give measures of temperature, workpiece presence and varying thickness of a sheet of met are discussed below:(a) Temperature sensors: These sensors are used to measure the temperature of liquids and can be of different types.

They include RTDs, thermistors, thermocouples, and infrared sensors.(b) Presence sensors: These sensors detect whether a workpiece is on the work table. They can be inductive, capacitive, optical or magnetic sensors depending on the type of workpiece.(c) Thickness sensors: These sensors measure the varying thickness of a sheet of metal. They can be based on ultrasonic, eddy current, laser or radiation principles.

To know more about sensors visit:

https://brainly.com/question/33219578

#SPJ11


Related Questions

Q. How are you informed of what to do in the event of an on-site emergency?

Answers

Answer:

I don't know

Explanation:

sorry I am answering this for points

please follow and mark as brainliest for me I will also do same

Answer:

Adapting this case to a work environment, especifically an industry, there should be a security and health brigade in charge of response against emergencies within the organization. Said brigade has the duty of giving direction to all people that could be hurt in any way by a negative event caused by the emergency These directions are given orally in the case of emergencies. Also, emergency services personnel, such as police, firefighters, and paramedics, are certified professionals who have the responsibility of protecting people against harm, and this includes giving guidance during emergencies.

Were women treated as equals to men in early aviation history?

Answers

Answer:

No

Explanation:

In the early Aviation history men have always dominated the world of aviation and women are notoriously under-represented, particularly in technical and leadership roles. Therefore, women was treated unequal.

What is Postflow used to protect?

Answers

Answer:

The idea is to protect the puddle while it cools

Explanation:

Which component in the alternator controls the strength of the magnetic field of the rotating magnet?
A- voltage regulator
B-diode assembly
C-rectifier assembly
D-a cooling fan

Answers

Answer:

A Voltage regulator

That force which is generated to cause current to flow in an electrical circuit. It is also referred to as electromotive force or electrical potential. Voltage is measured in volts. VOLTAGE REGULATOR - A device that controls the strength of a magnetic field produced by a generator or alternator

If you deposit $ 1000 per month into an investment account that pays interest at a rate of 9% per year compounded quarterly.how much will be in your account at the end of 5 years ?assume no interpèriod compounding

Answers

Answer:

5,465.4165939453

Explanation:

formula

A=P(1+r/n)^n(t)

p=1000

r=0.09

n=4

t=5

Climate change isn't just about temperature! The amount of rain and snow (precipitation) in certain regions of the U.S. is also changing. In some areas, the amount of precipitation has decreased. Scientist predict that these dry areas will get even drier in the future.

If the warmer areas on the map also become drier, what will happen to wildfire risk?

Drier conditions will likely result in fewer wildfires
Drier conditions will likely result in more wildfires
No difference

Answers

If I had to guess, I'd say the answer is

Drier conditions will likely result in more wildfires

Studies show that warmer and drier areas will double in wildfires by 2050.

1. The term lefty loosey, righty tighty is used to prevent what?

Answers

Answer:

Used to recall the direction a standard screw

Kevin fixes trucks as a job. The engine is oily. Which set set of equipment should Kevin use to fix the truck?

Answers

Answer:

A hammer and a wrench

Explanation:

Why does antifreeze come in many different colors?

Answers

They come in different colors because of different type of chemicals,made for special engines
Final answer:

Different colors of antifreeze help to differentiate between various types, brands, and chemical compositions. For example, green antifreeze is of an older formula with inorganic salts while an orange one is generally made from organic acids. Always refer to the vehicle's manufacturer's recommendations when choosing an antifreeze.

Explanation:

The primary reason why antifreeze comes in many different colors is to make differentiation easier. Antifreeze is used in a car's cooling system, and it's crucial to use the right type for your specific vehicle. The color of antifreeze is not natural, rather, it is added by the manufacturer to help differentiate between the different types, brands, and chemical compositions.

For instance, green antifreeze is typically made from an older formula that includes inorganic salts, while orange antifreeze is generally made from organic acids. It is always important to consult the vehicle manufacturer's guidelines before choosing the right antifreeze to use.

Learn more about Antifreeze here:

https://brainly.com/question/32216256

#SPJ6

Write a Python program named DataByteConvert that asks the user to enter a Data in
MegaBytes (MB) Data is entered only in MegaBytes. The program will then present the
following menu of selections:
1. Convert to Bytes
2. Convert to KiloBytes (KB)
3. Convert to GigaBytes(GB)
4. Convert to TerraBytes(TB)
5. Quit the program
The program will convert the data in MegaBytes(MB) to bytes, kilobytes(KB), GigaBytes(MB),
or TerraBytes(TB), depending on the user's selection rounded to six decimals. Here are the
specific requirements:
• Write a void method named showKiloBytes, which accepts the number of
MegaBytes(MB) as an argument. The method should display the argument
converted to kilobytes(KB). Convert the MB to KB.
• Write a void method named showGigaBytes, which accepts the number of
MegaBytes(MB) as an argument. The method should display the argument
converted to Gigabytes(GB).
• Write a void method named show TerraBytes, which accepts the number of
MegaBytes(MB) as an argument. The method should display the argument
converted to TerraBytes(TB). Convert the MB to TB.
• Write a void method named showBytes, which accepts the number of MegaBytes
(MB) as an argument. The method should display the argument converted to
Bytes(B). Convert the MB to B
• Write a void method named menu that displays the menu of selections. This
method should not accept any arguments.
1. The program should continue to display the menu until the user enters 5 to quit the
program.
2. The program should not accept negative numbers for the data in MegaBytes.
3. If the user selects an invalid choice from the menu, the program should display an error
message.
4. Use Exponential format if needed when converted {:e) formats ...)
5. Use
6. Add comments to show what each function does.

Answers

The program to convert MegaBytes to either Bytes, KiloBytes, GigaBytes, or TeraBytes is found in the attached image.

The program defines five helper functions to help the program do its work. The functions are:

showBytes: Accepts an argument in megabytes, converts it by multiplying by 1048576, and prints the resultshowKiloBytes: Accepts an argument in megabytes, converts it by multiplying by 1024, and prints the resultshowGigaBytes: Accepts an argument in megabytes, converts it by dividing by 1024, and prints the resultshowTeraBytes: Accepts an argument in megabytes, converts it by dividing by 1048576, and prints the resultmenu: Displays the menu of options to either convert or quit the program

Within the Main Program, a while loop is used to make sure the menu continues to be presented to the user until the user selects the option to quit.

The inner while loop makes sure the user enters an option within the menu.

Once the user enters an option to convert, the program requests the value to be be converted, in MegaBytes. then an if statement selects the correct conversion function.

Another numeric problem solved using Python can be found here: https://brainly.com/question/20379340

Write a Python program named DataByteConvert that asks the user to enter a Data in MegaBytes (MB) Data

A heavy train requires nearly a mile to come to a complete stop because it has a lot of

Answers

Answer:

Friction

Explanation:

Heavy objects take an extended way to get to a full halt, so they have a lot of friction.

An item with high weight is forced down to something like a surface of stronger power than an item with small weight and, as a result, there is a greater pressure between the base of the large weight than the one between ground and the small one.

Answer:

friction

Explanation:  It has a lot of mass so it will interact with the railroad. When you interact with the railroad, it is called friction. That will make the train slower.

Hope this helps! Stay Safe!

53. The plan of a building is in the form of a rectangle with
centerline dimension of outer walls as 9.7mx14.7m. The
thickness of the wall in super structure is 0.30m. Then its
plinth area is
a) 150m
b) 145m2
c) 145.5m
d) 135.36m
.​

Answers

Answer: 150m

Explanation:

The following can be depicted from the question:

Dimensions of outer walls = 9.7m × 14.7m.

Thickness of the wall = 0.30 m

Therefore, the plinth area of the building will be:

= (9.7 + 0.30/2 + 0.30/2) × (14.7 × 0.30/2 + 0.30/2)

= 10 × 15

= 150m

The plinth area will be 150m.

Given information

Dimensions of outer walls = 9.7m × 14.7m.

Thickness of the wall = 0.30 m

Plinth area of the building = (9.7 + 0.30/2 + 0.30/2) × (14.7 × 0.30/2 + 0.30/2)

Plinth area of the building = 10 × 15

Plinth area of the building = 150m

Therefore, the Option A is correct.

Read more about Area

brainly.com/question/25292087

Using the charts below, if you knew that a 1 mm diameter copper-nickel alloy wire can withstand a maximum load (before plastic deformation) of 78.54 N, and possesses an electrical resistance of 0.5 Ohms, then what is its length

Answers

Answer:

L = 10.32 m

Explanation:

The resistance of a copper-nickel alloy wire is given by the following formula:

\(R = \frac{\rho L}{A}\)

where,

R = Resistance = 0.5 Ω

ρ = resistivity of copper-nickel alloy = 3.8 x 10⁻⁸ Ωm

L = Length of wire = ?

A = cross-sectional area of wire = \(\frac{\pi d^2}{4} = \frac{\pi(1\ x\ 10^{-3}\ m)^2}{4}\) = 7.85 x 10⁻⁷ m²

Therefore,

\(0.5\ \Omega = \frac{(3.8\ x\ 10^{-8}\ \Omega.m)L}{7.85\ x\ 10^{-7}\ m^2}\)

L = 10.32 m

18) Technician A says that adjustable wrenches should be used when
torquing fasteners. Technician B says that adjustable wrenches can round
the edges of fasteners. Which technician is correct?
A) Technician A only
B) Technician B only
O C) Both technicians
D) Neither technician

Answers

Tryna boost my score for college stuff could you give me the brainiest and a thanks? Hope you find your answer your looking for!

Greek engineers had the unenviable task of moving largecolumns from the quarries to the city.One engineer,Chersiphron, tried several different techniques to do this. Onemethodwas to cut pivot holes into the ends of the stone andthen use oxen to pull the column. The 5-ft diameter columnweighs 14,000 lbs, andthe team of oxen generates a constantpull force of 2,000 lbs on the center of the cylinder,G. Knowingthat the column starts from rest and rolls without slipping,determine:(a) the velocity of its center,G,after it has moved7ft,and (b) the minimum static coefficient of friction that will keepit from slipping.

Answers

Answer:

yea

Explanation:

okkudjeheud email and delete the electronic version of this communication

Hammer welding preceded resistance welding
True
False

Answers

Answer:false

Explanation:

Bc

false

lmk if i’m wrong lol

A feature control frame must be connected to

Answers

Answer:

Surface Parallelism When a surface is to be parallel to a datum plane, the feature control frame is connected by a leader to the surface, or to an extension line from the surface.

Explanation:

Which factor has the most significant impact in design?
a.
architectural design
b.
climate
c.
function
d.
cost

Answers

D) cost


The fund available for a project is the first factor to be considered to ensure that the project comes to reality and serve it’s purpose

Answer:

Function

Explanation:

Plato

Which step in the reverse-engineering process involves the identification of subsystems and their relationship to one another?

Answers

The answer is analyze

Behavior when the capacitor is connected is connected to a DC source

(relationship between current and voltage with all the derived formulae):

charging and discharging process

Answers

The thing that happens when a capacitor is connected to a DC source is that Capacitors charge up until the voltage across the capacitor is equal to the externally applied voltage when they are linked across a direct current DC supply voltage.

How does a capacitor behave in a DC circuit?

Capacitors slowly charge in a DC circuit until the charging voltage of the capacitor is equal to the supply voltage. The capacitor will not permit any extra charges to travel through it after it has been fully charged.

Note that the link between a capacitor and voltage and current can be summarized as follows: the capacitance and the rate of rise or fall of the voltage determine how much current flows through a capacitor. A strong positive current will be produced through a capacitor if the voltage across the capacitor rises quickly.

Learn more about capacitor from

https://brainly.com/question/14883923
#SPJ1

Which items are NOT found on a
door?*
5 points
Cladding
Moulding
Weatherstrip
Check Strap
Striker
All of the above
None of the above

Answers

Answer:

None of the above cause thats what i put

The “15W” in 15W-40 engine oil stands for which of the following?

Answers

With a viscosity grade of 15W-40, an oil starts off flowing like a 15 weight in the winter but protects like a 40 weight after the engine achieves full operating temperature.

What do they mean by engine?

Additionally: a device or item that acts as a form of energy. Quasars might have black holes as their power source.

How the engine functions ?

During the intake phase of an engine with spark ignition the fuel and air are combined before being inducted into the cylinder. The spark ignites the fuel-air combination after the piston bends it, resulting in combustion. During the power stroke, the piston is propelled by the expansion of something like the combustion gases.

To know more about Engine visit :

https://brainly.com/question/17041979

#SPJ1

ic chips on pcbs are: question 5 options: 1) dip brazed together 2) mig or tig welded together 3) bonded together by adhesive 4) furnace brazed together 5) connected by soldering or surface-mounting technique

Answers

Ic chips on pcbs are connected by soldering or surface-mounting technique.

An IC chips can act as a microcontroller, oscillator, timer, counter, logic gate, computer memory, or processor. All contemporary electronic gadgets are constructed with an IC as their basic component. Most integrated circuits are made of silicon, which is widely available in common beach sand. Like other semiconducting materials, pure crystalline silicon exhibits an extremely high resistance to electrical current at standard ambient temperature. Frequency counters, digital signal processors, computers, computer networks, and microprocessors all frequently use digital integrated ICs. Other subcategories within this category include programmable integrated circuits (ICs), logic organic circuits (OCs), memory chips, interface ICs, and integrated circuits for power management. An integrated circuit is also known as a chip because it comes in a packaging that looks like a chip.

Learn more about IC chips here:

https://brainly.com/question/10936967

#SPJ4

In a CNN architecture we have a feature map of shape 128x128x786 (height=128, width=128, channels=786) in some intermediate layer. We pass this to a convolution layer with zero-padding of size 2 (2 additional values on each side), 786 kernels of size 5x3, and a stride of 2 (in both x and y direction). What will be the shape of the resultant feature map?

Answers

The shape of the resultant feature map will be 64x64x786.

What will be the dimensions of the resulting feature map after applying the convolution layer with specified parameters?

The feature map in the intermediate layer has a shape of 128x128x786, indicating a height and width of 128 and 128 respectively, with 786 channels. When passing this feature map through a convolution layer with a stride of 2, zero-padding of size 2, and using 786 kernels of size 5x3, the resulting feature map will have a reduced size.

The stride of 2 in both the x and y direction means that the feature map will be downsampled by a factor of 2 in each dimension. The zero-padding of size 2 adds two additional rows and columns on each side of the feature map, resulting in a total increase of 4 in both height and width.

Applying the convolution operation with 786 kernels of size 5x3 results in 786 new feature maps. Each kernel generates a feature map by sliding across the input feature map and performing element-wise multiplications followed by summation.

The dimensions of the resulting feature map can be calculated as follows:

New height = (128 + 4 - 5) / 2 + 1 = 64

New width = (128 + 4 - 3) / 2 + 1 = 64

Therefore, the shape of the resultant feature map is 64x64x786.

Learn more about map

brainly.com/question/1565784

#SPJ11

as the angle of the ramp is increased the force parallel increases /decreases / remains the same

Answers

As the angle of the ramp is increased, the force parallel increases. Hence, option (a) can be considered as the correct answer.

When the angle of a ramp is increased, the force parallel to the ramp, also known as the parallel component of the gravitational force, does increase. This is because the component of gravity acting parallel to the ramp increases with the angle. However, it's important to note that the total gravitational force acting on an object remains constant regardless of the angle of the ramp.As the angle of the ramp increases, the force required to push or pull an object up the ramp against gravity increases. This is due to the increase in the vertical component of the gravitational force, which opposes the motion up the ramp. The parallel force required to overcome this increased vertical force also increases.

To know more about, gravitational force, visit :

https://brainly.com/question/29190673

#SPJ11

Discuss the exciton roles in silicon solar cell

Answers

Excitons play a crucial role in silicon solar cells and are involved in several processes that contribute to the generation of electricity. Here are some key roles of excitons in silicon solar cells:

1. Absorption of Photons: When photons from sunlight strike the silicon material of a solar cell, they can be absorbed by silicon atoms, promoting an electron from the valence band to the conduction band. This process creates an exciton—a bound electron-hole pair.

2. Exciton Diffusion: After absorption, excitons can diffuse through the silicon material, moving towards the region of the solar cell where charge separation occurs. This diffusion process allows excitons to reach the vicinity of the p-n junction, where the separation of charges takes place.

3. Exciton Dissociation: At the p-n junction of a silicon solar cell, excitons can undergo dissociation. The electric field created by the junction separates the electron and hole of the exciton, allowing them to move freely in opposite directions as charge carriers.

4. Electron and Hole Transport: Once the exciton is dissociated, the free electron and hole can move independently within the solar cell. They are transported through the silicon material to the respective electrodes, creating an electric current that can be harnessed for external use.

5. Recombination: Excitons can also undergo recombination, where the electron and hole recombine, releasing energy in the form of light or heat. Recombination is undesirable in solar cells as it reduces the overall efficiency of the device.

To enhance the efficiency of silicon solar cells, various strategies are employed to minimize exciton recombination and improve exciton dissociation and charge carrier transport. These include the use of anti-reflection coatings, surface passivation techniques, and optimization of the device structure.

Overall, excitons play a vital role in the absorption and conversion of sunlight into electrical energy in silicon solar cells. Understanding and controlling exciton dynamics are essential for improving the performance of solar cells and advancing the field of photovoltaics.

Learn more about silicon solar cells here:

https://brainly.com/question/32456926


#SPJ11

Create a class named Company. The class has the following instance variables, constructors, and methods.
Private instance variables name of type String, address of type String, revenue of type int, and numOfEmployees of type int.
A public empty no-arg constructor
A public constructor that has four parameters and sets the instance variables accordingly. Use the reference this in your implementation.
A public getter and setter method for the instance variable name. Use the reference this in the setter method.
A public static method that takes two parameters of type Company and returns a boolean value. The method returns true if the instance variable revenue and numOfEmployees of the first argument is equal to the instance variable revenue and numOfEmployees of the second argument, respectively. The method's header is as follows.
public static boolean equals(Company c1, Company c2)
The method should also return true if c1 is equal to c2 (reference variable comparison).
A public method named display() that displays the instance variables of the invoking object in a format of your choice.

Answers

Here's a class named "Company" with the required instance variables, constructors, and methods:

public class Company {

   private String name;

   private String address;

   private int revenue;

   private int numOfEmployees;

   public Company() {

       // Empty no-arg constructor

   }

   public Company(String name, String address, int revenue, int numOfEmployees) {

       this.name = name;

       this.address = address;

       this.revenue = revenue;

       this.numOfEmployees = numOfEmployees;

   }

   public String getName() {

       return this.name;

   }

   public void setName(String name) {

       this.name = name;

   }

   public static boolean equals(Company c1, Company c2) {

       if (c1 == c2) {

           return true; // Reference variable comparison

       }

       return c1.getRevenue() == c2.getRevenue() && c1.getNumOfEmployees() == c2.getNumOfEmployees();

   }

   public void display() {

       System.out.println("Company Name: " + this.name);

       System.out.println("Address: " + this.address);

       System.out.println("Revenue: " + this.revenue);

       System.out.println("Number of Employees: " + this.numOfEmployees);

   }

   // Getters and Setters for the remaining instance variables

   public String getAddress() {

       return address;

   }

   public void setAddress(String address) {

       this.address = address;

   }

   public int getRevenue() {

       return revenue;

   }

   public void setRevenue(int revenue) {

       this.revenue = revenue;

   }

   public int getNumOfEmployees() {

       return numOfEmployees;

   }

public void setNumOfEmployees(int numOfEmployees) {

       this.numOfEmployees = numOfEmployees;

   }

}

Please note that the class includes the required instance variables, constructors, and methods as specified in the question.

Here's a class named "Company" that meets the specified requirements:

public class Company {

   private String name;

   private String address;

   private int revenue;

   private int numOfEmployees;

  public Company() {

       // Empty no-arg constructor

   }

  public Company(String name, String address, int revenue, int numOfEmployees) {

       this.name = name;

       this.address = address;

       this.revenue = revenue;

       this.numOfEmployees = numOfEmployees;

   }

public String getName() {

       return this.name;

   }

   public void setName(String name) {

       this.name = name;

   }

   public static boolean equals(Company c1, Company c2) {

       if (c1 == c2) {

           return true; // Reference variable comparison

       }

       return c1.getRevenue() == c2.getRevenue() && c1.getNumOfEmployees() == c2.getNumOfEmployees();

   }

   public void display() {

       System.out.println("Company: " + this.name);

       System.out.println("Address: " + this.address);

       System.out.println("Revenue: $" + this.revenue);

       System.out.println("Number of Employees: " + this.numOfEmployees);

   }

   // Getters and Setters for the remaining instance variables

   public String getAddress() {

       return address;

   }

   public void setAddress(String address) {

       this.address = address;

   }

   public int getRevenue() {

       return revenue;

   }

   public void setRevenue(int revenue) {

       this.revenue = revenue;

   }

   public int getNumOfEmployees() {

       return numOfEmployees;

   }

   public void setNumOfEmployees(int numOfEmployees) {

       this.numOfEmployees = numOfEmployees;

   }

}

The class "Company" has private instance variables for name, address, revenue, and numOfEmployees.

It includes a no-arg constructor and a parameterized constructor.

The getter and setter methods are provided for the name instance variable.

The static method "equals" compares the revenue and numOfEmployees of two Company objects.

The "display" method outputs the instance variables in a formatted manner.

For more such questions on Constructors:

https://brainly.com/question/31084069

#SPJ11

How does the length and direction of a shadow change from sunrise to noon in the northern hemisphere? A: The shadow gets shorter and points more east B: The shadow gets shorter and points more north C: The shadow gets longer and points more north D: The shadow gets shorter and points more west E: The shadow gets longer and points more south F: The shadow gets longer and points more east

Answers

Answer: the answer is A

Explanation: because the sun rises in the west and goes down in the east

A Is the answerrrrrrr

Anew student in your class has something different about his appearance. No one wants to sit beside him. You step forward and decide to sit next to him and make him feel comfortable and welcoming. This is an example of:

Answers

Answer:

approaching a lady or a man

on a hot (30°c) summer day, solar radiation is absorbed on the asphalt at a rate of 625 w/m2. the asphalt surface convects and radiates energy to the surroundings as well as conducting some energy into the ground. assume the natural (or free) convection heat transfer coefficient is 6 w/m2-k. the emissivity of the asphalt is 0.8. the asphalt is 2 inches thick and has a thermal conductivity of 0.062 w/m-k. the temperature of the ground under the asphalt is 18.9°c. calculate the steady-state temperature of the asphalt in °c. will it be high enough to "fry an egg"? ideal pan temperature to fry an egg is 60-71°c.

Answers

The steady state temperature of asphalt will be  75.32°C .

Given,

Solar radiation is absorbed on the asphalt at a rate of 625 w/m² .

Convection heat transfer coefficient is 6 w/m²-k .

Emissivity of the asphalt is 0.8.

Thermal conductivity of 0.062 w/m-k.

Asphalt is 2 inches thick

2 inches = 0.0508m

Surrounding temperature = 30°C = 86°F = 303 k

Asphalt temperature = 18.9°C = 292 k

Now,

Heat absorbed by asphalt = Heat lost by asphalt due to conduction , convection , radiation .

Let temperature of surface of asphalt be Ta

Q(conduction) = Ta - Tg/L/K(A)

Q(convection) = Ha(Ta - Tg)

Q(radiation) = ∈σ(\(Ta^4\) - \(Tg^4\))

Now substitute the values in the formula,

Q(radiation) = 0.8 * 5.67 * \(10^{-8}\)(\(303^4\) - \(Ta^4\)) W/m²

Q(Total) = Q(radiation) + Q(convection)  + Q(conduction)

625 =  0.8 * 5.67 * \(10^{-8}\)(\(303^4\) - \(Ta^4\)) + 6(303 - Ta) + Ta - 292/0.819355

Q(conduction) = Ta - 292/0.0508/0.062

Q(conduction) = 1.225(Ta - 292) W/m²

Q(convection)  =  6(303 - Ta)

Now solving for Ta,

\(4.536 * 10^{-8} Ta^4\) + 7.2205Ta = 3181.712483

Ta = 348.25 K

Ta= 167.18 °F

Ta = 75.32°C

Know more about heat equation,

https://brainly.com/question/28205183

#SPJ4

Other Questions
A natural number from 1-30 is chosen at random. Find each probability. Mr. kuma break the copyright law and was find guilty by a court. find out the total amount Mr kumah would pay if he was find maximum penalty units and minimum penalty units. In the hydrogenation of ethylene using a nickel catalyst the initial concentration of ethylene is [en0] = 2.00 molL1 and its rate constant is k = 0.0012 molL1s1 . Determine the rate of reaction if it follows a zero-order reaction mechanism. How do the compositions of comets provide clues to the formation of the solar system? Drag the terms on the left to the appropriate blanks on the right to complete the sentences. Reset Help light gases, which are Comets are composed of nucleus, dust, and elements such as frozen hot The fact that comets come from the outer reaches of the solar system tells us that those elements were very in the early days of the solar system. methane, ammonia, and carbon dioxide heavy hydrogen, carbon, nitrogen, and oxygen abundant rare A user has a computer that runs windows 10. The user reports that it takes a very long time to start the computer. You need to identify which user applications cause the greatest delays when starting the computer. Which tool should you use?. Please help :) will give brainliest Find the final balance on $130 invested at an annual rate of 9.4% compoundedquarterly for 2 years.A. $158.44B. $156.55C. $154.44D. $152.22please hurry its for a test:)) Disinflation may cause a. An increase in the value of gold, silver, and gems b. A reduced required return demanded by investors on financial assets c. Additional profits through falling inventory costs d. None of the above How do I solve these types of questions? Any hints or help will be appreciated which invertory cost flow assmption most accurately states the value of invertory and why? I didnt know how to put the question so the image below is the question 2Place the following events in sequence: A) The U.S.acquires California from Mexico; B) The LouisianaPurchase; C) Oregon becomes a stateAB, A, CB C, A, BCB, C, ADA, C, B A PLACE WHERE WEALTH IS DETERMINED BY YOUR DECISIONS AND NOT WHO YOURPARENTS ARE IS CALLED WHAT? On a highway a wreck occurred and cause a 10 mile traffic jam. The average car is13 feet in length, the average truck is 20 feet in length and the average 18 wheeleris 75 feet in length. If ($2% of the traffic jam consists of cars, 29% of trucks and 9%of 18 wheelers, how many vehicles are stuck in the traffic jam if the averagedistance between vehicles is 3 feet? Simplify 2^5x2^2 / 2^7x2^3 leaving your answer in index form the data on daily stock prices of exxon mobil for the last one year is an example of which kind of historical information? Did the Roman citizens care about the empire falling ? Undergroud rock salt is mined in wstern NY ayate ti be usted as food addictive and yo melt ice on roads.What can these largo rock salt deposits tel scients about the geolgic history of NY state 20 POINTS and BRAINLY!!Two companies are selling boxes of candy. The pieces of candy you get from Company A is represented by the table below. The pieces of candy you get from Company B is represented by and equation, with y representing the total number of pieces for X boxes. Find the Total number of pieces you would get from buying 18 boxes of candy from the company with the fewest pieces per box.Warning! If you enter a ton of gibberish (Example: hvdfhldwvfvi;yrguyegriyfb) Just for my points, I will report you and every answer you have ever answer, so please try to answer with words, don't be greedy, please! PLS HELP Determine the measurement of KL