How do I get the number to show the grade point average and Test score in the ouput? Any images of input and output to help me out would be very much appreciated! Still cannot figure this out.

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

How do I get the number to show the grade point average and Test score in the ouput? Any images of input and output to help me out would be very much appreciated! Still cannot figure this out.

add TAX
ity
1.
2.
19. Which of the following C# expressions means. "If itemNumber is 5 and zone is 1 or 3.
add TAX to price?
-- --
price = price + TAX;
a if(itemNumber - 5 && zone ==
price = price + TAX:
b. if(itemNumber
cif(itemNumber
price = price + TAX;
d. two of these
a. if(itemNumber != 100)
price = price + TAX;
Exercises
Exercises
5 && (zone = 1 11 zone == 3))
5 && (zone ==1 || 3))
integer itemNumber is not 100?
Which of the following C# expressions results in TAX being added to price if the
b. if(! (itemNumber == 100))
price = price + TAX;
d. all of these
1 || zone == 3)
c. if(itemNumber <100 || itemNumber> 100)
price = price + TAX;
181
Programming Exercises
Write a program named CheckCredit that prompts users to enter a purchase price
message; otherwise, display Approved.
for an item. If the value entered is greater than a credit limit of $8,000, display an error
Write a program named Twitter that accepts a user's message and determines
messages of more than 140 characters.
whether it is short enough for a social networking service that does not accept
3. Write a program named Admission for a college's admissions office. The user enters
a numeric high school grade point average (for example, 3.2) and an admission
test score. Display the message Accept if the student meets either of the following
requirements:
• A grade point average of 3.0 or higher, and an admission test score of at least 60
A grade point average of less than 3.0, and an admission test score of at least 80
• If the student does not meet either of the qualification criteria, display Reject.
Transcribed Image Text:add TAX ity 1. 2. 19. Which of the following C# expressions means. "If itemNumber is 5 and zone is 1 or 3. add TAX to price? -- -- price = price + TAX; a if(itemNumber - 5 && zone == price = price + TAX: b. if(itemNumber cif(itemNumber price = price + TAX; d. two of these a. if(itemNumber != 100) price = price + TAX; Exercises Exercises 5 && (zone = 1 11 zone == 3)) 5 && (zone ==1 || 3)) integer itemNumber is not 100? Which of the following C# expressions results in TAX being added to price if the b. if(! (itemNumber == 100)) price = price + TAX; d. all of these 1 || zone == 3) c. if(itemNumber <100 || itemNumber> 100) price = price + TAX; 181 Programming Exercises Write a program named CheckCredit that prompts users to enter a purchase price message; otherwise, display Approved. for an item. If the value entered is greater than a credit limit of $8,000, display an error Write a program named Twitter that accepts a user's message and determines messages of more than 140 characters. whether it is short enough for a social networking service that does not accept 3. Write a program named Admission for a college's admissions office. The user enters a numeric high school grade point average (for example, 3.2) and an admission test score. Display the message Accept if the student meets either of the following requirements: • A grade point average of 3.0 or higher, and an admission test score of at least 60 A grade point average of less than 3.0, and an admission test score of at least 80 • If the student does not meet either of the qualification criteria, display Reject.
File
Edit
What's New?
C# Admission
100 %
一、面
9
10
11 I
12 35
13
14
View
15
16
17
18
19
20
218
22
23
24
25
TIMBRES
27
28
29
30
Git Project
78°F
Sunny
7
Build
B2-
Program.cs* X Form1.cs [Design]
Debug
Debug
Any CPU
O references
internal static class Program
{
O references
static void Main()
{
No issues found
Analyze
Tools
Admission.Program
L-13 —5VB-S
C# Interactive (.NET Framework 64-bit) Error List Output
Ready
Start
Console.Write("Enter grade point average: ");
double gradePointAvg = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Reject");
Console.Write("Enter admission test score: ");
double admTestScore = Convert.ToDouble(Console.ReadLine());
if (gradePointAvg >= 3.0 && admTest Score >= 60)
22
Console.WriteLine("Accept");
Extensions
else if (gradePointAvg <=. 3.0 && admTestScore >= 80)
Console.WriteLine("Accept");
ܚܙܐ ܕܚܕ ܡܐ ܐܚܐ ܚܝܙ
T
Window
5
Help
Search (Ctrl+Q)
= = = WRAN.
2 พ.
0
Output
Show output from: Debug
TILRE
--------.
'Admission.exe' (CLR v4.0.30319: DefaultDomain); Loaded "C:\Users\conle source repos\Admission Admission\bin\Debug\Admission.exe'. Symbols
Enter grade point average: Enter admission test score: Reject
The program [5520] Admission.exe has exited with code 0 (0x0).
and IT-TI
op
Main()
8
13
-NA-S COME
N
Ln: 21
NOORDER
Admiss
Ch: 17
T
Transcribed Image Text:File Edit What's New? C# Admission 100 % 一、面 9 10 11 I 12 35 13 14 View 15 16 17 18 19 20 218 22 23 24 25 TIMBRES 27 28 29 30 Git Project 78°F Sunny 7 Build B2- Program.cs* X Form1.cs [Design] Debug Debug Any CPU O references internal static class Program { O references static void Main() { No issues found Analyze Tools Admission.Program L-13 —5VB-S C# Interactive (.NET Framework 64-bit) Error List Output Ready Start Console.Write("Enter grade point average: "); double gradePointAvg = Convert.ToDouble(Console.ReadLine()); Console.WriteLine("Reject"); Console.Write("Enter admission test score: "); double admTestScore = Convert.ToDouble(Console.ReadLine()); if (gradePointAvg >= 3.0 && admTest Score >= 60) 22 Console.WriteLine("Accept"); Extensions else if (gradePointAvg <=. 3.0 && admTestScore >= 80) Console.WriteLine("Accept"); ܚܙܐ ܕܚܕ ܡܐ ܐܚܐ ܚܝܙ T Window 5 Help Search (Ctrl+Q) = = = WRAN. 2 พ. 0 Output Show output from: Debug TILRE --------. 'Admission.exe' (CLR v4.0.30319: DefaultDomain); Loaded "C:\Users\conle source repos\Admission Admission\bin\Debug\Admission.exe'. Symbols Enter grade point average: Enter admission test score: Reject The program [5520] Admission.exe has exited with code 0 (0x0). and IT-TI op Main() 8 13 -NA-S COME N Ln: 21 NOORDER Admiss Ch: 17 T
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY