To change the speed of a particular port on a switch to 10 Mbps while in user mode, you will need to follow these steps:
1. Enter the privileged EXEC mode by typing "enable" and pressing Enter.
2. Type "configure terminal" and press Enter to enter the global configuration mode.
3. Choose the specific port using the syntax "interface FastEthernet x/y" or "interface GigabitEthernet x/y", where x is the switch number and y is the port number, and press Enter.
4. Change the port speed using the syntax "speed 10" and press Enter to set the speed to 10 Mbps.
5. Type "end" and press Enter to exit the global configuration mode.
6. Save the configuration using the "write" or "copy running-config startup-config" command.
In this process, you've used the syntax for configuring a switch port and set the speed to 10 Mbps while in user mode.
Learn more about the importance of syntax at https://brainly.com/question/831003
#SPJ11
Which type of oil has the widest operating temperature range?
A) Conventional
B) Synthetic Blend
C) Full Synthetic
D) Crude
Answer:
Crude
Explanation:
How are glasses a form of technology and how do they involve engineering aspects?
Please help!!!!
A cylindrical rod of brass of 20 mm in diameter is cold worked by drawing. The circular cross section will be maintained during deformation. A cold-worked tensile strength in excess of 300 MPa and a ductility of at least 10% EL are desired. Furthermore, the final diameter must be 14mm. Explain how this may be achieved.
Answer:
To meet all of the criteria raised by the question, we must first draw a wire with a diameter of 8.46 mm and then 21.5 percent CW on it.
Explanation:
What is the reading of this Dial Caliper?
Answer:
45
Explanation:
bdgdsfggsfg
when using a decision matrix weights are determined for each
When using a decision matrix, weights are determined for each criterion to quantify their relative importance in the decision-making process.
How are weights assigned to criteria in a decision matrix?In a decision matrix, weights are assigned to each criterion to reflect their significance in the decision-making process. The purpose of assigning weights is to quantify the relative importance of each criterion in relation to the others. The process of determining weights involves evaluating the impact or influence of each criterion on the overall objective or outcome of the decision.
To assign weights, decision-makers often engage in a collaborative process where they assess and discuss the criteria based on their relevance and importance. This can be done through expert opinions, surveys, or data analysis, depending on the nature of the decision. The assigned weights are typically expressed as percentages or numerical values, reflecting the proportionate significance of each criterion.
Learn more about decision matrix
brainly.com/question/30629177
#SPJ11
10 tasks and 5 exercises. How many ways are there to build the test?
To find how many ways, you must simply multiply 10 tasks and 5 exercises
Ways: = 10 * 5 = 50 ways
Hope that helps!
help
A 1D signal of up to 20,000 samples is considered.
Using data structures specific to simple chained lists, determine the number of zero passes of the signal. The signal goes through 0 if it changes its sign from one sample to another. 0 is not considered a sign change.
The use of STL is prohibited. Any data structure in the STL or function in the STL used will lead to a 0-point solution.
The use of vectors is prohibited. Any static (T V [N]) or dynamic (T * V = new T [N]) vector structure used will lead to the 0 score of the solution.
Input data:
N number of samples signal samples
Output data:
the number of passes through zero
Example:
Input data:
10
1 3 -2 -6 4 10 1 -5 4 1 Output data:
4
Explanation:
There are 4 sign changes between two consecutive samples:
3 -2 -> sign change (first zero crossing)
-6 4 -> sign change (second zero crossing)
1 -5 -> sign change (third zero crossing)
-5 4 -> sign change (fourth zero crossing)
Answer:
er of passes through zero
Example:
Input data:
10
1 3 -2 -6 4 10 1 -5 4 1 Output data:
4
Explanation:
There are 4 sign changes between two consecutive samples:
3 -2 -> sign change (first zero crossing)
-6 4 -> sign change (second zero crossing)
Explanation:
er of passes through zero
Example:
Input data:
10
1 3 -2 -6 4 10 1 -5 4 1 Output data:
4
Explanation:
There are 4 sign changes between two consecutive samples:
3 -2 -> sign change (first zero crossing)
-6 4 -> sign change (second zero crossing)er of passes through zero
Example:
Input data:
10
1 3 -2 -6 4 10 1 -5 4 1 Output data:
4
Explanation:
There are 4 sign changes between two consecutive samples:
3 -2 -> sign change (first zero crossing)
-6 4 -> sign change (second zero crossing)er of passes through zero
Example:
Input data:
10
1 3 -2 -6 4 10 1 -5 4 1 Output data:
4
Explanation:
There are 4 sign changes between two consecutive samples:
3 -2 -> sign change (first zero crossing)
-6 4 -> sign change (second zero crossing)er of passes through zero
Example:
Input data:
10
1 3 -2 -6 4 10 1 -5 4 1 Output data:
4
Explanation:
There are 4 sign changes between two consecutive samples:
3 -2 -> sign change (first zero crossing)
-6 4 -> sign change (second zero crossing)
Estimate the energy (head) loss a short length of a pipe conveying 300 litres of water per second and suddenly enlarging from a diameter of 350 mm to 700
Known :
Q = 300 L/s = 0.3 m³/s
D1 = 350 mm = 0.35 m
D2 = 700 mm = 0.7 m
g = 9.81 m/s²
Solution :
A1 = πD1² / 4 = π(0.35²) / 4 = 0.096 m²
A2 = πD2² / 4 = π(0.7²) / 4 = 0.385 m²
hL = (kL / 2g) • (U1² - U2²)
hL = (kL / 2g) • Q² (1/A1² - 1/A2²)
hL = (1 / 2(9.81)) • (0.3²) • (1/(0.096²) - 1/(0.385²))
hL = 0.467 m
Define a set, fruits, containing the user inputs: my_fruit1, my_fruit2, and my_fruit3. Add the user inputs, your_fruit1 and your_fruit2, to fruits. Add the user input, their_fruit, to fruits. Add your_fruit1 to fruits. Remove my_fruit1 from fruits.
The program for defining a set, of fruits, is illustrated below in python.
What are sets?Sets are variables that hold multiple values in a program.
The main program
The program written in Python, where comments are used to explain each line, is as follows:
my_fruit1 = input()
my_fruit2 = input()
my_fruit3 = input()
your_fruit1 = input()
your_fruit2 = input()
their_fruit = input()
# 1. TODO: Define a set, fruits, containing my_fruit1, my_fruit2, and my_fruit3
fruits = {my_fruit1, my_fruit2, my_fruit3}
print(sorted(fruits))
# 2. TODO: Add your_fruit1 and your_fruit2 to fruits
fruits.add(your_fruit1)
fruits.add(your_fruit2)
print(sorted(fruits))
# 3. TODO: Add their_fruit to fruits
fruits.add(their_fruit)
print(sorted(fruits))
# 4. TODO: Add your_fruit1 to fruits
fruits.add(your_fruit1)
print(sorted(fruits))
# 5. TODO: Remove my_fruit1 from fruits
fruits.remove(my_fruit1)
print(sorted(fruits))
Therefore, the sets are written above.
To learn more about sets, refer to the link:
https://brainly.com/question/26534702
#SPJ9
The question is incomplete. Your most probably complete question is given below:
Given the user inputs, complete a program that does the following tasks: Define a set, fruits, containing the user inputs: my_fruit1, my_fruit2, and my_fruit3. Add the user inputs, your_fruit1 and your_fruit2, to fruits. Add the user input, their_fruit, to fruits. Add your_fruit1 to fruits. Remove my_fruit1 from fruits. Observe the output of each print statement carefully to understand what was done by each task of the program. Note: For testing purposes, sets are printed using sorted() for comparison, as in the book's examples. Ex: If the input is:
Engineering ethics include ideas and directives related to: (a) Urban infrastructure (b) Contracts (c) Integrity (d) Corporate business practices
Note that Engineering ethics include ideas and directives related to: All the above, that is Option A-D.
What is Engineering Ethics?Engineering ethics are the norms and principles that engineers must follow as a moral commitment to their profession and the world. Engineering is a professional occupation that has a significant influence on people's lives.
Engineers have a professional obligation to design and maintain infrastructure in a way that is safe, effective, and sustainable. This includes ensuring that urban infrastructure, such as roads, bridges, and buildings, meets the needs of the community and does not pose a risk to public safety.
All engineers often work under contracts with clients, and they have a professional obligation to fulfill the terms of these contracts in a timely and competent manner.
They are expected to act with integrity in all aspects of their work, including honesty, fairness, and respect for others.
Engineers working for corporations or other organizations have a professional obligation to uphold ethical standards. Hence, all the above options are related to Engineering Ethics.
Learn more about Engineering Ethics:
https://brainly.com/question/14955664
#SPJ1
when wiring switchboard electrical, components keep the control wires at least ______
When wiring switchboard electrical components, it is recommended to keep the control wires at least 50mm (2 inches) away from power wires.
This separation helps to minimize the possibility of electromagnetic interference (EMI) or "noise" from the power wires affecting the control wires. Control wires are often low voltage and can be sensitive to EMI, which can cause issues with signal quality and affect the proper functioning of the control system.
By keeping a safe distance between the control wires and power wires, the risk of EMI is reduced, which can help ensure the reliability and accuracy of the control system. Additionally, it is also important to properly ground and shield the control wires to further minimize the risk of EMI.
learn more about power wires here:
https://brainly.com/question/4553019
#SPJ4
usgs stream-gauging stations record water depth, , and channel in order to calculate the discharge of the stream.
USGS stream-gauging stations record water depth and velocity and channel width in order to calculate the discharge of the stream.
Water discharge is used as a support for people's lives in the form of liquid substances. Water has the most important role in human needs. Water discharge is very closely related to time & volume. Water discharge is the velocity of the flow of liquid through the cross-sectional distance per unit time. Water discharge uses volume units per time or ml/second, liters/second, m³/second, liters/hour, m³/hour, and various other units. Discharge units are often used in monitoring the capacity (capacity) of water in rivers or dams so that the existing water can be controlled.
Learn more about Water discharge here brainly.com/question/25727077
#SPJ4
Where in a set of drawings would you find a detail numbered 5/M-3?
While a drawing set is used to label and organize drawings, a drawing area is an optional feature that allows you to completely separate drawings within a project.
What are drawing numbers?Around the world, consultants and designers frequently create construction drawings using their own standards for drawing numbers, which can lead to some misunderstanding on the construction site. Simply because this is how it has been done for many years, many consulting and design offices continue to utilise their own proprietary systems for numbering drawings.
As a potential solution to the issue, nations and standardisation committees have each created their own drawing numbering structures and standards.
In the past ten years, numerous of these national standards have been developed, such the National CAD Standard for the United States, the National BIM Standard, the CAD standards for the United Kingdom, the CAD standards for the Eurocode, etc.
To learn more about set of drawings refer to:
https://brainly.com/question/29087559
#SPJ1
g the following data apply to a single bolt and nut used to fasten together a double d-ring and relates to questions 7 through 10. 8. what external load would just cause the joint to separate?
Based on the given data, the external load that would just cause the joint to separate would depend on the strength and properties of the bolt and nut used to fasten together the double d-ring. Without this information, it is impossible to determine the exact external load required to separate the joint.
Based on your question, to determine the external load that would just cause the joint to separate when fastening together a double D-ring using a single bolt and nut, we need more information about the materials, their properties, and dimensions. Please provide this data so I can give you an accurate answer Without knowing the specific values of the data, it is not possible to determine the external load that would cause the joint to separate. The external load that would cause the joint to separate depends on several factors such as the strength of the bolt and nut, the material properties of the double d-ring, and the type of forces acting on the joint.To determine the external load that would cause the joint to separate, it would be necessary to perform a calculation based on the specific data provided for the bolt, nut, and double d-ring. This would involve analyzing the stress and strain in the components of the joint under the applied load and comparing it to the yield strength of the materials.In general, it is important to ensure that the external load applied to a joint does not exceed the maximum load capacity of the joint. Exceeding the load capacity can result in joint failure and potential safety hazards. Therefore, it is important to follow appropriate design and engineering principles when selecting and using fasteners to ensure the safety and reliability of the joint.
To learn more about separate click on the link below:
brainly.com/question/13619907
#SPJ11
To answer regarding the external load that would just cause the joint to separate when fastening together a double D-ring using a single bolt and nut, we need to consider the following factors:
1. The tensile strength of the bolt
2. The tensile strength of the D-ring
3. The clamping force provided by the bolt and nut
Once we have this information, we can determine the weakest component in the assembly, as that will dictate the external load at which the joint will separate.
Here is a step-by-step explanation of how to find the external load that would cause the joint to separate:
Step 1: Determine the tensile strength of the bolt and the D-ring.
Step 2: Determine the clamping force provided by the bolt and nut.
Step 3: Identify the weakest component in the assembly (either the bolt, D-ring, or clamping force).
Step 4: Use the weakest component's strength to calculate the external load that would cause the joint to separate.
Without specific data for the bolt, D-ring, and clamping force, we cannot provide an exact value for the external load that would cause the joint to separate. However, by following these steps, you can determine the answer once you have the necessary data.
Learn more about D-ring: https://brainly.com/question/31517177
#SPJ11
Point of attachment for conductors
Answer:
The point of attachment for service-drop conductors must not be less than 10 ft above the finished grade.
Explanation:
yw broski
Small particles in your power steering system may
Small particles in your power steering system may Damage the hydraulic pump.
Check more about the reason for the above in the power steering system below:
What is the Small particles about?If a person is said to have notice that there is small black particles that can be seen inside of the power steering reservoir, there is therefore some chances that are these are some piece of the hose, instead of the pump or rack.
Since High-temperature pulsations can be able to lead the power steering hoses to be destroyed from the inside.
Therefore, based on the above, one can say that Small particles in your power steering system may Damage the hydraulic pump.
Learn more about power steering system from
https://brainly.com/question/21346765
#SPJ1
Explain any five applications of computer modeling in beams.
Answer:
Explain any five applications of computer modeling in beams.
Explanation:
When a cellular telephone sends a text message, the cell carrier encodes the text message and transmits the message to the receiving cellular telephone. The encoded text message is the data of the transmission.
In addition to transmitting the data, the cell carrier company also stores metadata. The metadata of the text message includes the time the message was sent, the phone number of the sender, and the phone number of the receiver.
For which of the following goals would it be more useful to computationally analyze the metadata instead of the data?
I. Estimate the number of texts that will be sent next month
II. Determine the most frequently used emoji in text messages
III. Determine if two phones have been in contact in the last week
a) I only
b) II only
c) I and III
d) I, II, and III
The answer is c) I and III.
Metadata analysis is useful for estimating future text volumes and tracking communication patterns.
Which goals benefit from analyzing metadata?Computational analysis of metadata, rather than the data itself, is more useful for estimating the number of texts that will be sent next month (goal I) and determining if two phones have been in contact in the last week (goal III). Metadata provides valuable information such as the time the message was sent, phone numbers of the sender and receiver, which can be used to analyze patterns, trends, and connections between devices.
For goal I, by analyzing metadata from previous months, trends can be identified to estimate the number of texts that will likely be sent next month. This information can help the cell carrier allocate resources and plan accordingly.
For goal III, analyzing metadata allows the identification of communication patterns between devices. By examining the timestamps and phone numbers associated with the messages, it is possible to determine if two phones have been in contact within a specified time frame, which can be useful for various purposes such as contact tracing or investigating connections between individuals.
Learn more about metadata
brainly.com/question/30299970
#SPJ11
Makine yüzeysel gemi ünvan değişikliği teknolojisi
I inferred you meant emerging technologies we see today.
Explanation:
1. 3D Printing
A three dimensional printing allows a digital model to be printed (constructed) into a physical object.
A box, an industrial design and many more could be printed within minutes.
2. AI voice recognition devices
Another trend in the tech world is the rise in artificial intelligence been used in voice recognition devices that not only recognize one's voice but also take commands from the user.
This technology allows one to listen to the internet, such as listening to music online.
The tech world is ever changing with new technology beyond one's consumption on the increase daily.
Refrigerant 134a vapor in a piston-cylinder assembly undergoes a process at constant pressure from an initial state at 8 bar and 50°C to a final state at which the refrigerant is saturated vapor. For the refrigerant, determine the work and heat transfer, per unit mass, each in kJ/kg. Any changes in kinetic and potential energy are negligible.
Answer:
- Work done is 2.39 kJ
- heat transfer is 20.23 kJ/kg
Explanation:
Given the data in the question;
First we obtain for specific volumes and specific enthalpy from "Table Properties Refrigerant 134a;
Specific Volume v₁ = 0.02547 m³/kg
Specific enthalpy u₁ = 243.78 kJ/kg
Specific Volume V₂ = 0.02846 m³/kg
Specific enthalpy u₂ = 261.62 kJ/kg
p = 8 bar = 800 kPa
Any changes in kinetic and potential energy are negligible.
So we determine the work done by using the equation at constant pressure
]Work done W = p( v₂ - v₁ )
we substitute
W = 800 kPa( 0.02846 m³/kg - 0.02547 m³/kg )
W = 800 kPa( 0.00299 m³/kg )
W = 2.39 kJ
Therefore, Work done is 2.39 kJ
Heat transfer;
using equation at constant pressure
Heat transfer Q = W + ( u₂ - u₁ )
so we substitute
Q = 2.392 kJ + ( 261.62 kJ/kg - 243.78 kJ/kg )
Q = 2.392 kJ + 17.84 kJ/kg )
Q = 20.23 kJ/kg
Therefore, heat transfer is 20.23 kJ/kg
What is the basic requirement of measurements?
The basic requirement of measurements is to have a standard or reference point against which to compare the quantity being measured. This standard or reference point should be well-defined and stable, and the measurement process should be repeatable and consistent. Additionally, it is important to ensure that the measurement equipment is calibrated and in good working condition.
Answer:
The most basic requirement for measurements is the presence of a standard or reference point against which the quantity being measured can be compared. The measurement process should be repeatable and consistent, and the standard or reference point should be well-defined and stable. Furthermore, ensure that the measurement equipment is calibrated and in good working order.
Explanation:
We are capable of building computers that exhibit human-level intelligence. Are there certain areas of application where we should push to accelerate the building of such computers? Why these application areas? Are there certain areas of application we should avoid? Why these application areas?
The idea of creating computers with human-level intelligence has been a topic of discussion for a long time.
While it's an exciting prospect, it's also important to consider the areas where we should push to accelerate the building of such computers.
One area where we should focus on accelerating the building of such computers is the medical field. With the help of these computers, doctors can diagnose diseases more accurately and efficiently, and even predict future health issues. Additionally, these computers can analyze medical data faster, which could lead to the development of new drugs and treatments.
Another area where we can push for the development of human-level intelligent computers is the field of engineering. These computers can simulate complex structures and designs, leading to the creation of better and more efficient machines.
However, there are also certain areas where we should avoid building such computers. For example, creating autonomous weapons or robots with human-level intelligence can have disastrous consequences. Such weapons or robots could make decisions that could harm humans, which is not something we should take lightly.
In conclusion, while the development of computers with human-level intelligence is an exciting prospect, it's important to focus on the areas where they can be used to improve human lives. At the same time, we must be cautious about the potential risks associated with their development in certain areas.
Learn more about data :
https://brainly.com/question/31680501
#SPJ11
An o ring intended for use in a hydraulic system using MIL-H-5606 (mineral base) fluid will be marked with
An o ring intended for use in a hydraulic system using MIL-H-5606 (mineral base) fluid will be marked with a blue stripe or dot.
As part of a heat treatment process, cylindrical, 304 stainless steel rods of 100-mm diameter are cooled from an initial temperature of 500 C by suspending them in an oil bath at 30 C. If a convection coefficient of 500 W/m2 K is maintained by circulation of the oil, how long does it take for the centerline of a rod to reach a temperature of 50 C, at which point it is withdrawn from the bath
Answer:
Explanation:
Given that:
diameter = 100 mm
initial temperature = 500 ° C
Conventional coefficient = 500 W/m^2 K
length = 1 m
We obtain the following data from the tables A-1;
For the stainless steel of the rod \(\overline T = 548 \ K\)
\(\rho = 7900 \ kg/m^3\)
\(K = 19.0 \ W/mk \\ \\ C_p = 545 \ J/kg.K\)
\(\alpha = 4.40 \times 10^{-6} \ m^2/s \\ \\ B_i = \dfrac{h(\rho/4)}{K} \\ \\ =0.657\)
Here, we can't apply the lumped capacitance method, since Bi > 0.1
\(\theta_o = \dfrac{T_o-T_{\infty}}{T_i -T_\infty}} \\ \\ \theta_o = \dfrac{50-30}{500 -30}} \\ \\ \theta_o = 0.0426\\\)
\(0.0426 = c_1 \ exp (- E^2_1 F_o_)\\ \\ \\ 0.0426 = 1.1382 \ exp (-10.9287)^2 \ f_o \\ \\ = f_o = \dfrac{In(0.0374)}{0.863} \\ \\ f_o = 3.81\)
\(t_f = \dfrac{f_o r^2}{\alpha} \\ \\ t_f = \dfrac{3.81 \times (0.05)^2}{4.40 \times 10^{-6}} \\ \\ t_f= 2162.5 \\ \\ t_f = 36 mins\)
However, on a single rod, the energy extracted is:
\(\theta = pcv (T_i - T_{\infty} )(1 - \dfrac{2 \theta}{c} J_1 (\zeta) ) \\ \\ = 7900 \\times 546 \times 0.007854 \times (500 -300) (1 - \dfrac{2 \times 0.0426}{1.3643}) \\ \\ \theta = 1.54 \times 10^7 \ J\)
Hence, for centerline temperature at 50 °C;
The surface temperature is:
\(T(r_o,t) = T_{\infty} +(T_1 -T_{\infty}) \theta_o \ J_o(\zeta_1) \\ \\ = 30 + (500-30) \times 0.0426 \times 0.5386 \\ \\ \mathbf{T(r_o,t) = 41.69 ^0 \ C}\)
state the parallelogram law of forces
Answer:
The law of parallelogram of forces states that if two vectors acting on a particle at the same time be represented in magnitude and direction by the two adjacent sides of a parallelogram drawn from a point their resultant vector is represented in magnitude and direction by the diagonal of the parallelogram drawn from .
"hapter One Review Questions 1. Where did the Industrial Revolution start and why did it begin there? 2. What does "emerging" mean, emerging technologies and how are they found? 3. What makes "emerging technologies" happen and what impact will they have on Individuals, Society, and Environment?
An agrarian and handicraft economy was replaced by one that was dominated by industry and machine manufacturing during the Industrial Revolution in modern history. The world as a whole was affected by this process after it started in Britain in the 18th century.
The first three industrial revolutions were which three?These first three industrial revolutions shaped our contemporary society. The world we live in underwent a fundamental transformation with the advent of each of these three innovations: the steam engine, the age of science and mass production, and the rise of digital technology. And right now, it's taking place once more, for the fourth time.
The term is frequently used to describe emerging technologies, or those expected to become available in the next five to ten years. It is typically reserved for technologies that are having, or are anticipated to have, significant social or economic effects.
To know more about technology visit:
https://brainly.com/question/28232063
#SPJ9
What is RACE fire safety?
Answer:
Remove, Alarm, Confine and Extinguish or Evacuate
Explanation:
This easy to remember acronym is our University procedure in the case of a fire. Particularly in the hospital, every staff member is trained to recognize and respond appropriately in the case of a fire using this term.
Find the resultant of two forces equal to 50 N and 30 N acting at an angle of 60°
Resultant refers to the sum or net effect of two or more vectors acting on a system. It is the vector that represents the total effect of all the individual vectors acting on the system.
To find the resultant of two forces acting at an angle, we can use the parallelogram law of vector addition.
the two forces form a parallelogram, and the resultant force is the diagonal of the parallelogram.
To find the magnitude of the resultant force, we can use the law of cosines:
c^2 = a^2 + b^2 - 2ab cos(θ)
where c is the magnitude of the resultant force, a and b are the magnitudes of the two forces, and θ is the angle between the two forces.
Plugging in the values, we get:
c^2 = (50 N)^2 + (30 N)^2 - 2(50 N)(30 N) cos(60°)
c^2 = 2500 N^2 + 900 N^2 - 3000 N^2(1/2)
c^2 = 3400 N^2 - 1500 N^2(1/2)
Taking the square root of both sides, we get:
c = sqrt(3400 N^2 - 1500 N^2(1/2))
c ≈ 45.3 N
Therefore, the magnitude of the resultant force is approximately 45.3 N. To find the direction of the resultant force, we can use the law of sines:
sin(α) / a = sin(β) / b = sin(γ) / c
where α and β are the angles between the resultant force and the two forces, and γ is the angle between the two forces.
Plugging in the values, we get:
sin(α) / 50 N = sin(60°) / 45.3 N
sin(α) ≈ 0.692
Taking the inverse sine, we get:
α ≈ 44.1°
Therefore, the direction of the resultant force is approximately 44.1° from the 50 N force.
To learn more about Resultant visit;
https://brainly.com/question/19735274
#SPJ4
When an object is made of the plastic polyester (PET), it uses antimony as a catalyst. After production, antimony can leach into food and drink stored in PET containers. Usually, if stored correctly for a short amount of time, the amount of antimony found in liquids is well below the safety limits. However, there have been reports of as much as 44.7 micrograms per liter [µg/L] of antimony found in fruit juice concentrates. How much antimony, in units of moles [mol], could be found in one gallon [gal] of fruit juice concentrate at this level of contamination? The molecular mass of antimony is 121.76 grams per mole [g/mol].
Answer:
1.39 µmol
Explanation:
(1 gal) × (44.7 µg/L)/(121.76 g/mol)(3.785411784 L/gal) = 1.39 µmol
A hole drilled into a manufactured part is specified to have a diameter of 1.50 cm. Ten parts are sampled from a production run. The hole diameters of the parts range in size from 1.43 cm to 1.55 cm. Is the range of measurements a better indicator of the accuracy or precision of the drilling process? ____________
Answer:
Precision
Explanation
You know the answer is precision because it uses the word range and plus because I just answered this question and got it correct.
.