Ask Question
20 October, 21:23

What is Pseudo-code? Write a Pseudo-code to determine a student's final grade and indicate whether it is passing or failing. The final grade is calculated as the average of five marks. (Passing criteria is Grade >=50)

+4
Answers (1)
  1. 20 October, 21:51
    0
    Pseudo-code is a method of outlining/designing a program before actually using the programming language to code it. Again, Pseudo-code is not the actual programming language but it can include keywords from the language itself along with general words to describe what the particular purpose of that code is for. For example, the Pseudo code for this example would be: 1.) Collect Students grades with I/O operation (either from file or from user) 2.) Get average of students grades, average is Students grades divided by 5. 3.) Use comparative operators in your language to check if average is greater than or equal to 50. 4.) Display Students passing/failing status with I/O operation. 5.) End program or repeat for next user.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “What is Pseudo-code? Write a Pseudo-code to determine a student's final grade and indicate whether it is passing or failing. The final ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers