Answer:
Weight(lb): 10
Flat fee(cents): 75
Cents per pound: 25
Shipping cost(cents): 325
Explanation:
we run this as a jave programming language
import java.util.Scanner;
public class Shipping Calculator {
public static void main (String [] args) {
int shipWeightPounds = 10;
int shipCostCents = 0;
final int FLAT_FEE_CENTS = 75;
final int CENTS_PER_POUND = 25;
shipCostCents = FLAT_FEE_CENTS + CENTS_PER_POUND * shipWeightPound
/* look up the solutioin above */
System.out.println("Weight(lb): " + shipWeightPounds);
System.out.println("Flat fee(cents): " + FLAT_FEE_CENTS);
System.out.println("Cents per pound: " + CENTS_PER_POUND);
System.out.println("Shipping cost(cents): " + shipCostCents);
}
}
Answer:
the difference in pressure between the inside and outside of the droplets is 538 Pa
Explanation:
given data
temperature = 68 °F
average diameter = 200 µm
to find out
what is the difference in pressure between the inside and outside of the droplets
solution
we know here surface tension of carbon tetra chloride at 68 °F is get from table 1.6 physical properties of liquid that is
σ = 2.69 ×
N/m
so average radius =
= 100 µm = 100 ×
m
now here we know relation between pressure difference and surface tension
so we can derive difference pressure as
2π×σ×r = Δp×π×r² .....................1
here r is radius and Δp pressure difference and σ surface tension
Δp =
put here value
Δp =
Δp = 538
so the difference in pressure between the inside and outside of the droplets is 538 Pa
Answer:
(a) Work out put=692.83
(b) Change in specific entropy=0.0044
Explanation:
Properties of steam at 1 MPa and 200°C

We know that if we know only one property in side the dome then we will find the other property by using steam property table.
Given that dryness or quality of steam at the exit of turbine is 0.83 and temperature T=40°C.So from steam table we can find pressure corresponding to saturation temperature 40°C.
Properties of saturated steam at 40°C


So the enthalpy of steam at the exit of turbine






(a)
Work out put =
=2827.4-2134.57 
Work out put =692.83 
(b) Change in specific entropy

Change in specific entropy =0.0044
Answer:
- def processString(sentence):
- middle = len(sentence) // 2
- output = sentence[0: middle - 5] + sentence[middle+5:]
- return output
-
- print(processString("I have a dream"))
Explanation:
Create a function processString that take sentence as input paratemer (Line 1).
Next create a variable middle to hold the value of middle index of sentence string (Line 2)
Build the output string by slicing the input sentence from first character to character middle - 5th and from middle + 5th till the end of the string (Line 3).
Test the function using a sample sentence and we shall get the output "I am"
Answer:
Explanation:
Please check the below file for the attached file