Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Create program in C# using Console App Projects in Visual Studios. A certain college only accepts prospective students if one of the following conditions is

Create program in C# using Console App Projects in Visual Studios.

A certain college only accepts prospective students if one of the following conditions is true: (a) their high school GPA is greater than or equal to 3.0 AND their entrance admission test score is greater than or equal to 60, OR (b) their entrance admission test score is greater than or equal to 90 (regardless of GPA). Write a program named Admissions that prompts a user for a GPA and entrance admissions test score, and then displays whether the users admission to the college is accepted or denied. Use nested if-else statements to solve this problem.

Write a program named Admissions that prompts a user for a GPA and entrance admissions test score, and then displays whether the users admission to the college is accepted or denied. Use nested if-else statements to solve this problem.

Example output test cases might be:

Enter grade point average: 3.0

Enter test score: 75

This students admission is ACCEPTED.

Enter grade point average: 3.5

Enter test score: 55

This students admission is DENIED.

Enter grade point average: 2.5

Enter test score: 88

This students admission is DENIED.

Enter grade point average: 2.0

Enter test score: 91

This students admission is ACCEPTED.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

What Is A Database And How Do I Use It

Authors: Matt Anniss

1st Edition

1622750799, 978-1622750795

More Books

Students also viewed these Databases questions

Question

What is the preferred personality?

Answered: 1 week ago