Convert your algorithm from Question One into a complete Java application. Marks will be

allocated based upon:
● Your Java code matching your pseudo code algorithm from Question One.
● Your Java code being syntactically correct.
● Your Java code conforming to the dept. of Computing Java Coding Standard.

write a pseudo-code representing the following

marks;80-100=grade A
marks 60-79=grade B
marks 50-59=grade C
marks 40-49=grade D
marks 0-39=grade E

To convert the algorithm from Question One into a complete Java application, you need to follow these steps:

Step 1: Set up your Java development environment.
- Install any Java Development Kit (JDK) version on your computer.
- Set the PATH environment variable to point to the JDK installation directory.
- Choose a text editor or Integrated Development Environment (IDE) to write your Java code. Examples of popular IDEs are Eclipse, IntelliJ IDEA, and NetBeans.

Step 2: Create a new Java class and define the necessary variables.
- Open your chosen IDE or text editor and create a new Java class file.
- Define the necessary variables as per your algorithm's requirements. For example, if your algorithm works with integers, you may need to define integer variables.

Step 3: Write the main method.
- Inside the class, write the main method, which is the entry point of the Java application.
- The main method should be defined as: `public static void main(String[] args)`

Step 4: Implement the algorithm logic within the main method.
- Translate your algorithm's pseudo code into Java code statements.
- Use conditional statements (if-else, switch-case), loops (for, while), and other necessary Java syntax to implement the algorithm logic.

Step 5: Compile and run the Java application.
- Save the Java file with the .java extension.
- Open the command prompt or terminal and navigate to the directory where the Java file is saved.
- Compile the Java file using the `javac` command followed by the filename. For example, `javac MyJavaApp.java`
- Once the compilation is successful, run the application using the `java` command followed by the name of the class containing the main method. For example, `java MyJavaApp`

Throughout the process, make sure to adhere to the Department of Computing Java Coding Standards. These standards may include conventions for naming variables, formatting code, and organizing project structure. Consult your department's specific coding standards for accurate adherence.

Note: Without your specific algorithm from Question One, it is not possible to provide a fully-fledged Java code. However, by following the steps mentioned above, you should be able to create a Java application that matches your pseudo code algorithm and conforms to the Java Coding Standards.