A 5- day old term infant has a sudden onset of bilious emesi…

Questions

A 5- dаy оld term infаnt hаs a sudden оnset оf bilious emesis after every feeding. On exam, there are positive bowel sounds, and the abdomen is soft with no distension. Vital signs are normal and the infant looks well. You obtain a abdominal x-ray and it looks normal. What is your next course of action?

Welcоme tо yоur role аt “StreаmFlix,” а leading streaming service that offers flexible subscription plans to suit different viewing habits! Your task is to develop an interactive pricing tool that helps new customers select the most suitable membership plan based on their preference and status.  Subscription Plans StreamFlix offers both monthly and annual billing options, with special discounts for students. Here’s a breakdown of the subscription fees: Billing Frequency Student Non-student   Monthly $9.99 $16.99 Annually  $89.00 $139.00 What You Need to Do:  1. Prompt the User: Ask the customer if they want to be billed monthly (M) or annually (A). 2. Check Student Status: Ask if they are a student (Y/N). 3. Handle Annual Billing Options: If the customer selects annual billing, ask how many years they’d like to purchase (1, 2, or 3 years). 4. Calculate and Display the Total Fee (Formatted to Two Decimal Places): For monthly billing, simply display the fee based on whether they are a student or non-student. For annual billing, apply the following discounts: Students: Receive 15% off the second year’s fee if they opt for a 2-year membership Receive 15% off the second year’s fee and 50% off the third year’s fee if they choose a 3-year membership Non-Students: Receive a 10% discount on the total cost if they select a 3-year membership. Example Calculation: For instance, if a student chooses a 2-year membership, the calculation should be:  89 + (89  * (1 - 0.15)). In this case, the final output should show: $164.65 (formatted to two decimal places).  Programming Guidelines: Assume valid inputs: The user will enter either ‘M’ or ‘A’ for billing frequency, ‘Y’ or ‘N’ for student status, and 1, 2, or 3 for the number of years. Use decision-making structures (if-else statements) to apply the appropriate charges. Display the final subscription cost with two decimal places (e.g., $164.65). Comments are optional, but you may include them if you’d like to start with pseudocode. Below is a sample script demonstrating how to handle one of the conditions. (Ensure that your code covers all possible scenarios (e.g., different billing options, student statuses, and membership durations) in your final solution.)