think about what she wants to do with her life and what collage is best fit for that
Answer:
30 units of Food A and 45 units of Food B are to be purchased to keep costs at the minimum $105.
Explanation:
X = Amount of food A
Y = Amount of food B
Z= 2X+Y..... minimum cost equation
50X + 20Y > 2400 .................Vitamins .......(1)
30X + 20Y > 1800 ...................Minerals.......(2)
10X + 40Y > 1200 .................Calories ..........(3)
X > 0
y > 0
X=30 and Y = 45
Z= 2(30) + 45 = $105
Answer:
the types of hacker attacks and techniques. White Hat Hackers. Black Hat Hackers. Gray Hat Hackers. Script Kiddies.
Explanation:
i don't know if this can help you
Answer to my knowledge is d. overlap
Answer:
weightPound = float(input("Enter your weight in pounds "))
heightInches = float(input("Enter your height in inches "))
weightKg = weightPound*0.453592
heightMeter = heightInches*0.0254
BodyMassIndex = weightKg/(heightMeter*heightMeter)
print("")
print("Your Weight in kilograms is: ")
print(weightKg)
print("Your Height in meters is: ")
print(heightMeter)
print("Your Body Mass Index is: ")
print(BodyMassIndex)
Explanation:
- Above is a Python Script to accomplish the task
- See attached image for the program output.
- Observe that we used the formula weight/height*height to calculate the Body Mass Index
- Observe also the conversion from pounds to Kilogram and inches to meters