Answer: hardness
Explanation:
Hardness is a measure of a material's ability to resist plastic deformation. In other words, it is a measure of how resistant material is to denting or scratching. Diamond, for example, is a very hard material. It is extremely difficult to dent or scratch a diamond. In contrast, it is very easy to scratch or dent most plastics.
Answer:
Technician A is wrong
Technician B is right
Explanation:
voltage drop of 0.8 volts on the starter ground circuit is not within specifications. Voltage drop should be within the range of 0.2 V to 0.6 V but not more than that.
A spun bearing can seize itself around the crankshaft journal causing it not to move. As the car ignition system is turned on, the stater may draw high current in order to counter this seizure.
Answer:
The power developed in HP is 2702.7hp
Explanation:
Given details.
P1 = 150 lbf/in^2,
T1 = 1400°R
P2 = 14.8 lbf/in^2,
T2 = 700°R
Mass flow rate m1 = m2 = m = 11 lb/s Q = -65000 Btu/h
Using air table to obtain the values for h1 and h2 at T1 and T2
h1 at T1 = 1400°R = 342.9 Btu/h
h2 at T2 = 700°R = 167.6 Btu/h
Using;
Q - W + m(h1) - m(h2) = 0
W = Q - m (h2 -h1)
W = (-65000 Btu/h ) - 11 lb/s (167.6 - 342.9) Btu/h
W = (-65000 Btu/h ) - (-1928.3) Btu/s
W = (-65000 Btu/h ) * {1hr/(60*60)s} - (-1928.3) Btu/s
W = -18.06Btu/s + 1928.3 Btu/s
W = 1910.24Btu/s
Note; Btu/s = 1.4148532hp
W = 2702.7hp
Answer:
The solution code is written in Python:
- def convertCSV(number_list):
- str_list = []
- for num in number_list:
- str_list.append(str(num))
-
- return ",".join(str_list)
- result = convertCSV([22,33,44])
- print(result)
Explanation:
Firstly, create a function "convertCSV" with one parameter "number_list". (Line 1)
Next, create an empty list and assign it to a new variable <em>str_list</em>. (Line 2)
Use for-loop to iterate through all the number in the <em>number_list</em>.(Line 4). Within the loop, each number is converted to a string using the Python built-in function <em>str() </em>and then use the list append method to add the string version of the number to <em>str_list</em>.
Use Python string<em> join() </em>method to join all the elements in the str_list as a single string. The "," is used as a separator between the elements (Line 7) . At the end return the string as an output.
We can test the function by calling the function and passing [22,33,34] as an argument and we shall see "22,33,44" is printed as an output. (Line 9 - 10)
Answer:
A) True
Explanation:
Yes this is true when length is creases the heat transfer coefficient decease with length.
The heat transfer(h) coefficient is varying with x by given expression
For Laminar flow

For turbulent flow

But when flow is in transitional state the heat heat transfer(h) coefficient is increases with x.But for laminar as well as turbulent flow h is decrease when x increases.