Need in PseudoCode ONLY Write the pseudocode to solve the fo
Need in Pseudo-Code ONLY!!
Write the pseudocode to solve the following problem: Input a person\'s name, height (in inches), and weight (in pounds). If the person\'s height exceeds 60 inches and the person\'s weight exceeds 100 pounds, output the person\'s name. If the height and weight do not meet these criteria, output nothing.
Solution
Input: Name, Height(in inches), Weight(in Pounds)
Procedure: 1. Get Name, Height and Weight
2. If Height >= 60 && Weight >=100
Return Name
else
Return 0

