Complete the tables in 1.1 and 1.2 below. Show your calculations on a separate sheet and attach it to your portfolio. Input values (x) 1 (5) y = 2x - 10 2 3 4 5​

Answers

Answer 1

To complete the tables, substitute the given input values of x into the equation y = 2x - 10 and calculate the corresponding values of y.

To complete the tables for the equation y = 2x - 10, follow these steps:

Start with the given input values of x: 1, 2, 3, 4, and 5.

Substitute each value of x into the equation y = 2x - 10.

Perform the calculations to find the corresponding values of y for each x value.

For x = 1: y = 2(1) - 10 = -8

For x = 2: y = 2(2) - 10 = -6

For x = 3: y = 2(3) - 10 = -4

For x = 4: y = 2(4) - 10 = -2

For x = 5: y = 2(5) - 10 = 0

Fill in the calculated values of y in the respective "y" column for each x value in tables 1.1 and 1.2.

Table 1.1:

x y

1 -8

2 -6

3 -4

4 -2

5 0

Table 1.2:

x y

1 -8

5 0

By substituting the given x values into the equation and calculating the corresponding y values, you can complete the tables accurately. Remember to include your calculations on a separate sheet and attach it to your portfolio for documentation.

For more such question on Equation

https://brainly.com/question/29174899

#SPJ8


Related Questions

If the secondary is ungrounded, what connections would likely be made to the grounding bus?

Answers

Answer:

Image result for If the secondary is ungrounded, what connections would likely be made to the grounding bus?

The Service Neutral Conductor is then connected by way of a Main Bonding Jumper (MBJ) to the metal enclosure of that main panel, which is then connected by a wire (Grounding Electrode Conductor) to earth.30 Jun 2020

If the secondary is ungrounded, the connections to the grounding bus would depend on the specific configuration and requirements of the electrical system.

What is grounding?

The act of connecting electrical devices and systems to the earth or to a conductive body that acts as the earth's substitute is known as grounding, also known as earthing.

In general, the grounding bus can still be utilised even if the secondary of a transformer is not grounded for a number of reasons, including giving fault current a path, lowering the risk of electric shock, and maintaining the consistent operation of safety features.

One typical method is to attach the grounding bus to an electrode that is fixed in the ground close to the electrical system, such as a grounding rod or plate.

Thus, in the case of a ground fault, this offers a low-impedance channel to ground that can carry fault current.

For more details regarding grounding, visit:

https://brainly.com/question/30099566

#SPJ2

what are the materials and tools used to build a headgear?​

Answers

Modern headframes are built out of steel, concrete or a combination of both. Timber headframes are no longer used in industrialized countries, but are still used in developing nations.

Pls give me a brainliest if this helped thx

A water turbine is to be designed to produce 27MW when running at 93.7 rev/min
under a head of 16.5m. A model turbine with an output of 37.5kW is tested under
dynamically similar conditions with a head of 4.9m . Calculate the:
a. model speed; b. scale ratio; c. assuming a model efficiency of 88%, estimate the volume
flow rate through the model; and d. if it is estimated that the force on the thrust bearing of
the full-size machine is 7.0GN , determine the bearing thrust of the model.

Answers

The Answers for the given question are as follow:

a. The model speed is approximately 31.62 rev/min.

b. The scale ratio is approximately 0.0417.

c. The estimated volume flow rate through the model is approximately 943.44 m^3/s.

d. The bearing thrust of the model is approximately 9.72 kN.

To calculate the required values for the water turbine model, we can utilize the concept of dynamic similarity.

a. To find the model speed, we can use the principle of geometric similarity, which states that the ratio of speeds is equal to the ratio of the square roots of the head. Thus:

  Model speed = (√(Model head))/(√(Full-size head)) * Full-size speed

              = (√4.9/√16.5) * 93.7 rev/min

              = 31.62 rev/min

b. The scale ratio can be determined using the equation:

  Scale ratio = (√(Model power))/(√(Full-size power))

             = (√37.5kW)/(√27MW)

             ≈ 0.0417

c. To estimate the volume flow rate through the model, we can use the power equation:

  Model power = (Model efficiency) * (Volume flow rate) * (Model head) * (Gravity)

  37.5kW = 0.88 * (Volume flow rate) * 4.9m * (9.81m/s^2)

  Solving for the volume flow rate:

  Volume flow rate = 37.5kW / (0.88 * 4.9m * 9.81m/s^2)

                   ≈ 943.44 m^3/s

d. To calculate the bearing thrust of the model, we can use the principle of force similarity:

  Bearing thrust model = (Model power / Full-size power) * Full-size bearing thrust

                      = (37.5kW / 27MW) * 7.0GN

                      ≈ 9.72kN

For more questions on force, click on:

https://brainly.com/question/12785175

#SPJ8

help

Zander described the similarities and differences between flowering and non-flowering plants. Read the following passage and find the mistakes.


"A daisy is a non-flowering, seed-bearing plant, while a pine tree produces flowers. Both the daisy and the pine tree go through the four major stages of the life cycle, which includes the seed stage, sprouting stage, seedling stage, and the final stage, which is the adult stage. During each stage of the life cycle, the two plants have different shapes and textures. As adult plants, the daisy produces seeds in the cone, and the pine tree produces seeds in the flower."


What statement corrects the errors in Zander's passage?


A.A daisy is a flowering plant, and a pine tree is a non-flowering, cone-bearing plant. During the adult stage, the daisy produces seeds in the flower and the pine tree produces seeds in the cone.

B. As adult plants, the daisy sprouts seedlings, which are then reproduced. During the adult stage, the pine tree grows spores, which are reproduced.

C.The daisy and the pine tree have different stages in their life cycles. The daisy completes the seedling stage before the sprouting stage. The pine tree has a fertilization stage when seeds are produced.

D.The daisy and the pine tree both have the same life cycles, but the daisy produces seeds in the seedling stage, and the pine tree produces seeds in the sprouting stage.

Answers

Answer:

A

Explanation:

daisies are flowering plants

Write a Nested While Loop that will increment the '*' from 1 to 10.

The code below will decrement from 10 to 1.
i = 1
while(i<=11):
j = 11
while(j>=i):
print('*', end = '')
j -= 1
i += 1
print()

Answers

Answer:

The program is as follows:

i = 1

while(i<11):

   j = 1

   while(j<=i):

       print('*', end = '')

       j += 1

   i += 1

   print()

Explanation:

Initialize i to 1

i = 1

The outer loop is repeated as long as i is less than 11

while(i<11):

Initialize j to 1

   j = 1

The inner loop is repeated as long as j is less than or equal i

   while(j<=i):

This prints a *

       print('*', end = '')

This increments j and ends the inner loop

       j += 1

This increments i

   i += 1

This prints a blank and ends the inner loop

   print()

A delayed shift into reverse could
indicate that the
fluid:
transmission/transaxle
Select one:
O A. level is too high.
OB. is contaminated.
O C. is cold.
O D. level is low.

Answers

If the transmission or transaxle shifts into reverse slowly, the fluid level may be low.

What does it mean to shift into reverse after a delay?

Often times, problems with the transmission's valve body are to blame for any form of delayed shifting. Shift solenoid or computer failures can also result in these types of difficulties and may require transmission service for remedy.

What occurs if the transmission fluid level is excessive?

Similar to how running through water slows down the rotating crankshaft, too much fluid prevents proper lubrication and cooling. High quantities of fluid produce a frothy material that saturates the transmission when it mixes with the air above. Pitting in part may result from this.

To know more about transmission  visit:-

https://brainly.com/question/9979148

#SPJ1

how the robot is made

Answers

Step 1: Get the Tools and Materials You Need Together. ...
Step 2: Assemble the Chassis. ...
Step 3: Build and Mount the Whiskers. ...
Step 4: Mount the Breadboard. ...
Step 5: Modify and Mount the Battery Holder. ...
Step 6: Mount the Power Switch If You Are Using One. ...
Step 7: Wire It Up. ...
Step 8: ​Power It on and Fix Any Issues.
Ans: Robots can be made from a variety of materials including metals and plastics. Most robots are composed of 3 main parts: ... Mechanical parts ‐ motors, pistons, grippers, wheels, and gears that make the robot move, grab, turn, and lift. These parts are usually powered by air, water, or electricity.

Compare and contrast inversion and the conservation of ambiguity.

Answers

Answer:

Inversion and the conservation of ambiguity are two geometric transformations that can be used to analyze and study geometric figures. While they have some similarities, they also have some important differences.

Inversion is a geometric transformation that involves inverting a figure in a circle or a sphere with respect to a center. This transformation maps every point inside the circle to a point outside the circle, and vice versa. Inversion is a conformal transformation, which means that it preserves angles between lines and circles. Inversion is useful for studying circles and angles, and it can be used to prove many theorems in Euclidean geometry.

On the other hand, the conservation of ambiguity is a geometric property that states that if a figure can be transformed into another figure by a certain transformation, then the transformation can be reversed to transform the second figure back into the first one. This property is important in topology, which is the study of the properties of geometric figures that are preserved under continuous transformations.

One similarity between inversion and the conservation of ambiguity is that both are transformations that preserve certain properties of geometric figures. Inversion preserves angles, while the conservation of ambiguity preserves the topology of a figure. Another similarity is that both can be used to prove theorems and to analyze geometric figures.

However, there are also some important differences between inversion and the conservation of ambiguity. Inversion is a specific geometric transformation that involves inverting a figure in a circle or a sphere. In contrast, the conservation of ambiguity is a more general property that applies to any transformation that preserves the topology of a figure. Additionally, inversion is a transformation that is specific to Euclidean geometry, while the conservation of ambiguity is a property that applies to any type of geometry.

In summary, inversion and the conservation of ambiguity are two important concepts in geometry, but they have different applications and properties. Inversion is a specific transformation that is useful for studying angles and circles, while the conservation of ambiguity is a general property that applies to any transformation that preserves the topology of a figure

A vernier caliper will measure in what ( URGENT)

A vernier caliper will measure in what ( URGENT)

Answers

A typical digital vernier caliper will read in
.001 or thousands of an inch

lets see how many of yall really know ur stuff i am asking random questons about cars or trucks and lets see if yall anwser right...... how many 02 sensors otherwise know as oxygen sensory will a moden day ram 1500 have

Answers

Answer:

4

Explanation:

6. Driving with parking lights only (in place of headlights) is against the law. A. True B. False

Answers

Answer:

B false it is illegal to only have got fog lights on though and bright headlights because it can distract other drivers going last and if the y are distracted then that will cause a collision

Hope this helps :)

Explanation:

B. False it is illegal

why does high resistance not affect a parallel circuit

Answers

Answer:

Because the equivalent or the total resistance is lower comparatively.

Explanation:

It is because in parallel circuit, the equivalent resistance or the total resistance is lower comparatively and hence more current flow through the circuit.

Basically, the same resistors connected in series have high values as compared to the scenario when these resistors are connected in parallel.

While salary is definitely an important factor to consider when selecting a major to study it certainly isn’t the only thing you should take into account. What advice would you give to someone who chooses their major based only on salary why would u give this advice

Answers

I don't have personal beliefs or opinions, but I can provide you with some advice based on the facts and experiences of others.

If someone is choosing their major solely based on salary, it is important to note that this approach may not always lead to long-term job satisfaction or success. While a high-paying job can be appealing, it is important to choose a major that aligns with your interests, skills, and values.

Here are some tips to help you choose a major:

Consider your interests: Think about what you enjoy doing and what you are passionate about. Pursuing a major in a field that interests you will not only make your studies more enjoyable but also increase your chances of success in the long run.
Assess your skills: Take an inventory of your skills and strengths. Choosing a major that utilizes your strengths will increase your chances of success in your chosen field.
Evaluate your values: Consider your personal values, such as helping others, making a positive impact on the environment, or advancing technology. Choosing a major that aligns with your values will give you a sense of purpose and fulfillment.
Research job prospects: While salary is important, it is also important to research the job prospects and career paths available in your chosen major. Consider factors such as job growth, demand, and stability.
Seek advice: Talk to professors, academic advisors, and professionals in your desired field to gain insights and advice on your major decision.
Ultimately, it is important to choose a major that is meaningful to you and aligns with your interests, skills, and values. This will not only increase your chances of success but also lead to a more fulfilling and satisfying career.





ChatGPT Feb 13 Version. Free Research Preview. Our goal is to make AI systems more natural and safe to interact with. Your feedback will help us improve.

0
If a camshaft lobe is badly worn, less air will be entering or exiting the cylinder, depending on which
valve is affected.
Select one:
O True
O False

Answers

true because the lobe on the camshaft is pushing the valve open to access the exhaust side of the head
True! Hope this helps!!

Please help me solve this truss system problem.

Please help me solve this truss system problem.

Answers

Answer:

1. Always Start by calculating reactions at supports.

2. Make a slice through the members you wish to solve.

3. Treat the half structure as its own static truss.

4. Solve the truss by taking the sum of forces = 0.

5. Take the moment about a node of more than one unknown member.

50 POINTS! - How to find scale of a design to real life?
(QUESTION EXPLANATION/CONTEXT)
So I have a culminating project and we need to make a 3D model of a bus shelter. My bus shelter is 14 inches high in the 3D modelling editor and supposed to be 157 inches in real life. I need the scale for that size. I am not sure how to find it. If you need any additional info about the design, just comment and I'll send it. ty!

Answers

To find the scale of your 3D model in relation to real life, you can use the following formula:

Scale = Real Life Size / Model Size

In your case, the real-life size of the bus shelter is given as 157 inches, and the model size is 14 inches. Plugging these values into the formula:

Scale = 157 inches / 14 inches

Scale ≈ 11.21

Therefore, the scale of your 3D model would be approximately 1:11.21. This means that one unit in your 3D model represents 11.21 units in real life. To convert any measurements from your 3D model to real-life measurements, you would multiply them by the scale factor.

Which symbol represents a DC power source in an electrical circuit?

A.
Image 1:
B.
Image 2:
C.
Image 3:
D.
Image 4:

Which symbol represents a DC power source in an electrical circuit?A. Image 1:B. Image 2:C. Image 3:D.

Answers

Answer:

C. image 3

Explanation:

Answer:

Image 3

Explanation:

Correct on plato

define horizontal shapes​

Answers

Horizontal shapes are simply defined as shapes that identified by their alignment and orientation along the horizontal axis.

What are horizontal shapes?

Horizontal shapes are simply identified by their alignment and orientation along the horizontal axis.

These shapes appear to be extended in a left-to-right or right-to-left direction, with a greater width-to-height ratio. Rectangles, squares, lines, and strips are typical examples.

While lines are one-dimensional, horizontal objects with an unlimited length, rectangles and squares have four sides and have horizontal top and bottom boundaries. Strips are lengthy, varying-width horizontal shapes that are frequently utilized in design and the arts.

Horizontal shapes can imply security, harmony, calmness, and a sense of rootedness.

Learn more about shapes at: https://brainly.com/question/25965491

#SPJ1

Calculate the specific weight of gasoline if its density is 1.39 slugs per cubic feet.

Answers

Use volume and density for the weight I would need the volume as well.

The specific weight of gasoline if its density is 1.39 m⁻³ is 44.758 lb ft⁻³.

What is specific weight?

Specific weight, often said to be unit weight, is simply the weight of a liquid per unit volume. It is usually denoted by the Greek letter γ (gamma) and has the dimension of force per unit volume. Used to determine if an object is floating or submerged in water. If the specific gravity is greater than 1, the object will sink because it is denser than water. A value less than 1 indicates that the object is less dense than water and is floating.

For the given case,

δ = 1.39 (slug/ft³) × (1 lbs²ft⁻¹/1 slug)

δ = 1.39 lb²ft⁻⁴

The specific weight γ is the product of density and gravitational acceleration g.

γ = δ × g

γ =  1.39 lbs²ft⁻⁴ × 32.2 ft s⁻²

γ = 44.758 lb ft⁻³

To know more about specific weight, visit:

https://brainly.com/question/14974295

#SPJ9

Augusta Ada King is famous for

Answers

Answer:

Augusta Ada King is famously known for her work on Charles Babbage's early mechanical general-purpose computer, the Analytical Engine.

Explanation:

Technician A says that to remove the rod caps on an engine, start by positioning the number 3 piston at top dead center. Technician B says that to remove the rod caps on an engine, start by positioning the number 1 piston at bottom dead center. Who is correct

Answers

Answer:

B.

Explanation:

Removing the rod caps on an engine, start by positioning the number 1 piston at bottom dead center is the correct way to remove them.

what is a compound gear used for creating the most torque

Answers

In short, a lower gear produces more torque at the wheel, as well as faster acceleration and lower vehicle speed. Higher gears result in less torque at the wheel, as well as slower acceleration and higher car speed.

What is torque?TORQUE (Terascale Open-source Resource and QUEue Manager) is a distributed resource manager that manages batch jobs and distributed compute nodes. Torque is a force that can cause an object to rotate around an axis. In the same way that force causes an object to accelerate in linear kinematics, torque causes an object to acquire angular acceleration. Torque is measured as a vector quantity. Torque is defined as a twisting or turning force that causes rotation around an axis, which could be a center of mass or a fixed point. Torque can also be defined as the ability of a rotating object, such as a gear or a shaft, to overcome turning resistance.

To learn more about torque, refer to:

https://brainly.com/question/19104073

#SPJ1

the manufacturer specifies that a terminal lug be torqued to 7.5 foot-lbs but your to calibrated in inch-pounds, you would set your wrench at in. Ib. Select one O a. 90 O b. 1.6 O c. 7.5 O d. 37.5 e kone of these​

Answers

Answer

A

Why


I took the quiz

the current in the inductor is ________ relative to the voltage across the inductor. A : lagging by less than 1/4 of a cycle B : in phase C : leading by less than 1/4 of a cycle D : lagging by 1/4 of a cycle E : leading by 1/4 of a cycle

Answers

Answer:

  D : lagging by 1/4 of a cycle (ideal inductor)

Explanation:

The rate of change of current in an inductor is proportional to the voltage across the inductor. Hence voltage must increase before current can. That means current in an inductor lags the voltage across it.

For an ideal inductor (with no effective series resistance), the lag will be 1/4 cycle of a sinusoidal waveform.

__

If the inductor has internal losses (resistance), then the lag will be less than 1/4 cycle.

_____

Comment on the problem

No circuit image or other description of the inductor is provided here, so we don't know that the inductor is ideal.

ASE-Type Questions
1. Technician A says that when used on its edge, a
sanding stick can be used to block sand a high
crown. Technician B says that a soft pad conforms
to any contour. Who is right?
(A) A only.
(B) B only.
(C) Both A and B.
(D) Neither A nor B.
8
G

Answers

Based on the information given, both Technician A and Technician B are correct.

Technician A is correct in saying that a sanding stick can be used to block sand a high crown when used on its edge. A sanding stick is a long, narrow sanding tool that can be used to sand difficult-to-reach areas or to achieve a precise, even finish on a surface. When used on its edge, a sanding stick can be used to sand high crowns or other raised areas because it can be angled to match the contour of the surface.

Technician B is also correct in saying that a soft pad conforms to any contour. A soft pad is a type of sanding pad that is made of a flexible, sponge-like material. Because it is flexible, a soft pad can conform to any contour or shape, making it useful for sanding irregular surfaces or for achieving a smooth finish on contoured surfaces.

Therefore, both Technician A and Technician B are correct, and the correct answer is option (C) "Both A and B."

What is mechanical engineering about

Answers

Answer:

Mechanical engineering is an engineering branch that combines engineering physics and mathematics principles with materials science to design, analyze, manufacture, and maintain mechanical systems. It is one of the oldest and broadest of the engineering branches

3. Approximately how many service technicians are employed in the United States?

Answers

Answer:

763700 people

Explanation:

There are approximately 763700 people employed as an Automotive Service Technicians and Mechanics.

Which option is a potential environmental benefit of adopting a new
technology?

Which option is a potential environmental benefit of adopting a newtechnology?

Answers

Answer:

A reduce pollutants . .....

Three-dimensional measuring references all of these except

Answers

Answer: Table of contents

Explanation:

The options are:

radius.

length.

width.

height

Table of Contents

A three-dimensional shapes simply refers to a shape with three dimensions which include the length, the width and the height e.g. cube and cuboid.

Three-dimensional measuring references the length, width, height and radius. The radius can be found in a sphere. It should be noted that the table of contents isn't a three dimensional measuring reference.

In which of these situations might competition be seen as a negative?
when the competition is taking place in a capitalist society
when the competition causes some businesses to fail
when the focus of the competition is on what may be seen as a public utility such as mass transit or utilities like electrical power
when the competition affects a high-tech industry

Answers

The competition can be seen as a negative when the competition causes some businesses to fail when the focus of the competition is on what may be seen as a public utility such as mass transit or utilities like electrical power. All options are correct.

What is competition?

Competition is the activity or even the condition of striving to gain or win something by defeating or establishing superiority over others.

In each of these cases, competition can be seen negatively:

In a capitalist society, competition can result in an unequal distribution of wealth, with some people or businesses amassing more wealth and influence than others.Employees and communities that depend on those enterprises may suffer as a result of some businesses failing due to competition.When the competition focuses on what would be considered a public utility, such as mass transit or utilities like electrical power, the quality and accessibility of these crucial services might suffer if they are offered by businesses that put profits before the welfare of the general public.

Thus, all options are correct.

For more details regarding competition, visit:

https://brainly.com/question/13686157

#SPJ1

Other Questions
Given a class City, with a public accessor method public String getName() and a different class containing a populated list of City objects public class Something private LinkedList coastal Towns: /* Constructor not shown / public boolean iaSortedByName() { /*Write this code */) } write the method is SortedByName() which returns true if the list coastalTowns is sorted in ascending order by city name and false otherwise. The list coastalTowns should not be altered in any way during this process. In the seven domains of a typical it infrastructure, the __________ is the most difficult to plan, identify, assess, treat, and monitor because human behavior cannot be easily measured or predicted. Calculate the number of grams of sodium in 3.7 g of each of the following sodium-containing food additives.- NaCl (table salt) ,- Na3PO4 (sodium phosphate),- NaC7H5O2 (sodium benzoate),- Na2C6H6O7 (sodium hydrogen citrate) Someone help me pleaseFinding the values of x,lm,mn and LN PART A: In the story, what causes the conflict between the narrator and the old man? A The narrator and the old man resent having to live together because of the narrator's disease, and so the narrator decides to murder the old man. B The narrator is driven mad by the sound of a heart beating beneath the floorboards, and this causes him to kill the old man. C The narrator watches the old man sleep, and when the terrified old man discovers this, the narrator kills him to keep his madness hidden. D The narrator is terrified of the old man's blue eye and overwhelmed by the sound of his heartbeat, so the narrator kills the old man. Good afternoon, please I need help with part 3 of 4 on question 4Determine whether the graph is that of a function by using the vertical-line test. If it is, use the graph to find (a) its domain and range.(b) the intercepts, if any.(c) any symmetry with respect to the x-axis, y-axis, or the origin. In the new global economy, an increasing proportion of influential financial decisions are being made in explain how the purpose of correlational research study differs from the experimental research strategy Describe an action that the states could take/have taken to respond to the Dobbs v. Jackson Case FILL IN THE BLANK. The ______ is like a slow-moving river of molten rock that the crust, broken into different plates, moves on top of. consider the integral integral subscript 2 superscript 14 (2 x squared plus 4 x plus 2 )d x. (a) find the reimann sum for this integral using left endpoints and n equals 4. l subscript 4 equals (a) find the reimann sum for this integral using right endpoints and n equals 4. r subscript 4 equals Ideas similar to those expressed in the passage would contribute most directly to which of the following? A. Japanese imperialist policies in East and Southeast Asia in the first half of the twentieth centuryB. Japanese government attempts to mobilize public opinion by promoting the veneration of the emperor in the 1930s and 1940C. Japans policy of demilitarization after the end of the Second World WarD. Japans economic miracle in the 1960s and 1970s Compare and contrast the major challenges that trade unions arefacing in Japan, Germany, and Sweden. Discuss the majorsimilarities and differences. Consider a univariate stochastic process, zt.(a) State the conditions under which zt is stationary. (b) Let zt follow an AR(1) process:zt = pzt1 + t, ~iid N (0,^2). 1. What is the longest-wavelength EM radiation that can eject a photoelectron from silver, given that the binding energy is 4.73 eV? Is this in the visible range?2. Find the longest-wavelength photon that can eject an electron from potassium, given that the binding energy is 2.24 eV. Is this visible EM radiation? 1. What is the difference between MODERN classification hierarchy and Linnaenclassification hierarchy? You know that a circuit is a path along which electrical charges can flow. In this activity, you are going to illustrate that the flow of electricity needs a closed circuit. Your task is draw the wires that connect these objects in order to create a closed circuit. In the space provided, write one sentence that identifies why this circuit allows electrical charges to flow. Be sure to include each object in your answer. write a play which indicates unity summary for nights and dragons what i have "Create a list of information workers should receive to satisfy the ""right to know"". List a number of ways that workers can 'participate' in health and safety. What can a Certified JHSC member do that"