Hi! everyone
I'm starting out in programming,I need a pseudocode or flowcharting to use to help me get started on coding(JavaScript and HTML). Often, when I take a look at a coding assignment, it looks daunting, and it's hard to figure out exactly where to start. Especially with all of that specific code syntax.I need a Pseudocode that will let me focus on the algorithm - the problem solving technique - without letting the actual code syntax get in the way.For the following program that I want to design
I want a Pseudocode to design the logic for a program that creates student records for Creighton Technical College and assigns an advisor and a dormitory to each student. The program asks users for their first name, last name, birth date (month, day, and year), and intended major. Advisors are assigned based on major, as follows:
Major Advisor Last Name
Business Brown for the first 100 students, then Davis
Computer Information Systems Cunningham for the first 100 students, then Lee
Heating and Air Conditioning Parke
Hospitality Hunter
Undeclared Ulster
Dormitories are assigned based on both major and age, as follows:
Major Age Dormitory
Business under 21 Washington
Business 21 and over Adams
Computer Information Systems under 21 Jefferson
Computer Information Systems 21 and over Lincoln
Heating and Air Conditioning any Grant
Hospitality or Undeclared any Wilson
Perform as many validation checks as you can think of to make sure that complete and accurate records are created.
a. Draw the hierarchy chart.
b. Write the pseudocode3
Eager Student