Answer: l = 2142.8575 ft
v = 193.99 ft/min.
Explanation:
Given data:
Thickness of the slab = 3in
Length of the slab = 15ft
Width of the slab = 10in
Speed of the slab = 40ft/min
Solution:
a. After three phase
three phase = (0.2)(0.2)(0.2)(3.0)
= 0.024in.
wf = (1.03)(1.03)(1.03)(10.0)
= 10.927 in.
Using constant volume formula
= (3.0)(10.0)(15 x 15) = (0.024)(10.927)Lf
Lf = (3.0)(10.0)(15 x 15)/(0.024)(10.927)
= 6750 /0.2625
= 25714.28in = 2142.8575 ft
b.
vf = (0.2 x 0.2 x 3.0)(1.03 x 1.03 x 10.0)(40)/(0.024)(10.927)
= (0.12)(424.36)/0.2625
= 50.9232/0.2625
= 193.99 ft/min.
Answer:
Rock and orange juice
Explanation:
The mystery matter to be submerged in water must be a solid, therefore we can eliminate the Lemonade and Milk, and Orange juice and Helium, as these pairs do not contain solids. The graduated cylinder is used to measure the volume of a liquid, therefore the only remaining option is Rock and Orange Juice.
Answer:
12.5%
Explanation:
Compaction ratio= Volume before reduction/volume after reduction
Compaction ratio= 8/1
% reduction in volume= Volume after reduction/Volume before reduction× 100= 1/compaction ratio × 100
% reduction in volume= 1/(8/1) × 100
=12.5
Answer:
The solution code is written in Python 3.
- carYear = 1995
- if(carYear < 1967):
- print("Probably has few safety features.\n")
- if(carYear > 1970):
- print("Probably has head rests. \n")
- if(carYear > 1991):
- print("Probably has electronic stability control.\n")
- if(carYear > 2002):
- print("Probably has airbags. \n")
Explanation:
Firstly, create a variable, <em>carYear</em> to hold the value of year of the car make. (Line 1)
Next, create multiple if statements as required by the question (Line 3-13). The operator "<" denotes "smaller" and therefore <em>carYear < 1967</em> means any year before 1967. On another hand, the operator ">" denotes "bigger" and therefore <em>carYear > 1970 </em>means any year after 1970.
The print statement in each of the if statements is done using the Python built-in function <em>print()</em>. The "\n" is an escape sequence that create a new line at the end of each printed phrase.
Answer:
a. SATA cable
Explanation:
A troubleshooting process could be as follows:
- <em>The Power supply</em> is working since it is possible to receive the <em>error message</em>.
- With no <em>OS available</em> is not possible to 'roll back the Windows update'.
Then, two alternatives remain:
- SATA cable.
- Hard drive.
In the reliability configuration of the components, <em>the hard drive depends on the SATA cable to work properly. </em>A faulty SATA cable would prevent the hard drive to work correctly. Then,<em> </em>a loosely SATA cable is the first thing to check before proceeding with the hard disk.
Additionally, a loosely SATA cable is also a common source of error messages like "OS not found" and it would be easier step to be discarded before continuing with a more demanding one like checking the hard drive.