Answer:
Functional Relationship
Explanation:
A functional relationship is only achieved through control and involves a specific change in one event (dependent variable) that can reliably be produced by specific manipulations of another event (independent variable), and the change in the dependent variable is unlikely to be the result of other extraneous factors (confounding variables
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 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:
Temperature at center of apples = 11.2⁰C
Temperature at surface of apples = 2.7⁰C
Amount of Heat transferred = 17.2kJ
Explanation:
The properties of apple are given as:
k = 0.418 W/m.°C
ρ = 840 kg/m³
Cр = 3.81 kJ/kg.°C
α = 1.3*10 ⁻⁷ m²/s
h = 8 W/m².°C
d = 0.09m
r = 0.045m
t = 1 hour = 3600s
<h2>Solution</h2>
Biot number is given as:

The constants λ₁ and A₁ corresponding to Biot number (from the table) are:
λ₁ = 1.476
A₁ = 1.239
Fourier Number is:

As Fourier Number > 0.2 , one term approximates solutions are applicable
The temperature at the center of apples, The temperature at surface of apples and Amount of heat transfer is found in the ATTACHMENT.
Answer:
<em>minimum required diameter of the steel linkage is 3.57 mm</em>
<em></em>
Explanation:
original length of linkage l = 10 m
force to be transmitted f = 2 kN = 2000 N
extension e = 5 mm= 0.005 m
maximum stress σ = 200 N/mm^2 = 
maximum stress allowed on material σ = force/area
imputing values,
200 = 2000/area
area = 2000/(
) =
m^2
recall that area = 
=
= 
= 
=
m = 3.57 mm
<em>maximum diameter of the steel linkage d = 3.57 mm</em>