Page 1 of 1

Answer the following THREE questions: Design pseudocode for a program that accepts four values for Student ID, Student n

Posted: Fri Apr 29, 2022 6:35 am
by answerhappygod
Answer the following THREE questions:
Design
pseudocode for a program that accepts four values for
Student ID, Student name, year of birth, and major from the user.
Then it should check and displays a message if the student's age is
greater than 16. The message should follow the following
format:
“Dear <student name> your
age is greater than 16”
Answer
Design a
flowchart for a program that accepts two numbers from
a user and display the appropriate one of the following
messages:
a. First number <first
number> is smaller than the second number <second
number>.
b. Second number < Second
number> is smaller than the first number <first
number>.
c. Numbers are equal.
Design a flowchart and
pseudocode for a mobile subscription plan. Allow
the user to enter the number of months and the plan price. Assume
that the user earns extra 15 percent discount every month, while
the maximum discount is 45 percent. The program output is a
schedule that lists each month's number in the mobile subscription
plan starting with month 1 and the user’s savings at that
month.
Example: (This is an example; your
program should accept the values from the user)
User entered 6 months mobile
subscription for 250 USD plan.
The output:
Month number 1 the discount percentage
is 0% and the discount amount is 0 USD
Month number 2 the discount percentage
is 15% and the discount amount is 37.5 USD
Month number 3 the discount percentage
is 30% and the discount amount is 75 USD
Month number 4 the discount percentage
is 45% and the discount amount is 112.5 USD
Month number 5 the discount percentage
is 45% and the discount amount is 112.5 USD
Month number 6 the discount percentage
is 45% and the discount amount is 112.5 USD