Posted on 16 Aug 2022, this text provides information on Syllabus Queries related to Course Queries. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.
Write a program to calculate the current grade based on the CSE 1341 syllabus. The program should prompt the user for their first and last name. It will then pass those names as Strings to the second method of the CSE1341Grade class. The name of the second method will be calcGrade. This method will prompt the user for the count of exam scores, count of quiz scores, and count of lab scores to entered by the user.
It will then utilize repetition structure to prompt for exam grades, quiz grades and lab grades based on the previous counts entered. For example, if the user entered count of exam scores to be 2; then the program will loop 2 times to input the two exam grades; and similarly for the count of quiz and count lab grades.
Assume you have a 100% attendance record and you will get all 5% of the attendance grade. Use the syllabus to determine the weights of each of the categories such as the exams, quizzes and labs. Add 5% to the total score since you had perfect attendance. Assume: all exams, labs and quiz scores are out of 100 points. Sample Run: 
^^That is my homework assignment, and this is what I have done so far
importjava.util.Scanner;publicclass CSE1341Grade
{publicstaticvoid main(String[] args){//set up Scanner for user input, prompt for first name, define variable, and print responseScanner s =newScanner(System.in);System.out.print("First name: ");String first = s.nextLine();System.out.printf(" %s\n", first);//prompt user for last name, define variable, and print responseSystem.out.print("Last name: ");String last = s.nextLine();System.out.printf(" %s\n", last);}publicstaticvoid calcGrade(String first,String last){//prompt user for number of exam grades, define exam variable, print responseSystem.out.print("How many exam grades do you have? ");String exam = s.nextLine();System.out.printf(" %s\n", exam);//prompt user for number of quiz grades, define quiz variable, print responseSystem.out.print("How many quiz grades do you have? ");String quiz = s.nextLine();System.out.printf(" %s\n", quiz);//prompt user for number of lab grades, define lab variable, print responseSystem.out.print("How many lab grades do you have? ");String lab = s.nextLine();System.out.printf(" %s\n", lab);while(exam !=-1){System.out.print("Enter " exam 1" score: ",++exam)//define variables for computationsint score =0;int grade =0;//if statement to determine the final letter gradeif
No matter what stage you're at in your education or career, TuteeHUB will help you reach the next level that
you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice
sessions to improve your knowledge and scores.
manpreet
Best Answer
2 years ago
Write a program to calculate the current grade based on the CSE 1341 syllabus. The program should prompt the user for their first and last name. It will then pass those names as Strings to the second method of the CSE1341Grade class. The name of the second method will be calcGrade. This method will prompt the user for the count of exam scores, count of quiz scores, and count of lab scores to entered by the user.
It will then utilize repetition structure to prompt for exam grades, quiz grades and lab grades based on the previous counts entered. For example, if the user entered count of exam scores to be 2; then the program will loop 2 times to input the two exam grades; and similarly for the count of quiz and count lab grades.
Assume you have a 100% attendance record and you will get all 5% of the attendance grade. Use the syllabus to determine the weights of each of the categories such as the exams, quizzes and labs. Add 5% to the total score since you had perfect attendance. Assume: all exams, labs and quiz scores are out of 100 points. Sample Run: 
^^That is my homework assignment, and this is what I have done so far