Question: I need a vb net program for this (4) (4 marks) in Visual Studio, create and test a console application that does the following (1)

I need a vb net program for this
(4) (4 marks) in Visual Studio, create and test a console application that does the following (1) Create a variable of the Integer data type, named marks, (2) Create a variable of the String data type, named grade; (3) Use the built-in function Console.ReadLine to get the user's input for marks as follows (Is assumed that the user always inputs integers when testing this program) Console.WriteLine("Input the marks:") marks = CType(Console.ReadLine(. Integer) (4) Comert marks into grade as follows using an If. Then-ElseIf statement: marks grade 90-100 85-89 80-84 77-79 B- 73-76 70-72 B- 67-69 63-66 60-62 50-59 D A- A A- B C. 0-49 F (5) Display the value of grade in the console window using the flowing statement Console.WriteLine("The grade is " & grade) Hint: The Is Then-Ebelf statement is a lengthy one and is similar to the following If ((marks >= 90) And (marks c=100)) Then grade = "A- ElseIf ((marks >= 85) And (marks =0) And (marks
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
