Answer:
Explanation:
Usage: flip [-t|-u|-d|-m] filename[s]
Converts ASCII files between Unix, MS-DOS/Windows, or Macintosh newline formats
Options:
-u = convert file(s) to Unix newline format (newline)
-d = convert file(s) to MS-DOS/Windows newline format (linefeed + newline)
-m = convert file(s) to Macintosh newline format (linefeed)
-t = display current file type, no file modifications
Answer:
The temperature T= 648.07k
Explanation:
T1=input temperature of the first heat engine =1400k
T=output temperature of the first heat engine and input temperature of the second heat engine= unknown
T3=output temperature of the second heat engine=300k
but carnot efficiency of heat engine =
where Th =temperature at which the heat enters the engine
Tl is the temperature of the environment
since both engines have the same thermal capacities <em>
</em> therefore 
We have now that

multiplying through by T

multiplying through by 300
-
The temperature T= 648.07k
Answer:
Given,
Temperature;
T = 393;;K
Convert to Celcius;
T = (393-273) degrees
T = 120°C
Using Table A-4 (Saturated water - Temperature table), at T = 120 C;
vf = 0.001060 m³/kg
vg = 0.89133 m³/kg
Quality is given as;
75% = 0.75
Specific volume is given as;
v = vf + x (vg - vf) = 0.001060 + 0.75(0.89133 _ 0.001060)
v= 0.66876 m³/kg
We know;
v = V/m
0.66876 = 100/m
m = 149.53 kg
Answer:
(a) the cutting time to complete the facing operation = 11.667mins
b) the cutting speeds and metal removal rates at the beginning= 12.89in³/min and end of the cut. = 8.143in³/min
Explanation:
check attached files below for answer.
Answer:
sum2 = 0
counter = 0
lst = [65, 78, 21, 33]
while counter < len(lst):
sum2 = sum2 + lst[counter]
counter += 1
Explanation:
The counter variable is initialized to control the while loop and access the numbers in <em>lst</em>
While there are numbers in the <em>lst</em>, loop through <em>lst</em>
Add the numbers in <em>lst</em> to the sum2
Increment <em>counter</em> by 1 after each iteration