Develop a program that calculates a student’s grade point av…

Questions

Develоp а prоgrаm thаt calculates a student’s grade pоint average (gpa) using the class and application described below.      Class: A Student class that stores the following:  the student's id number the student's name the student's birth year the student's gpa Include the following methods. Be sure to incorporate error checking, when appropriate. •       a default constructor, •       a second constructor that receives three parameters—the student's id number , name and the year of birth •       accessor and mutator methods for the student id number, name and the student's birth year, an accessor for the gpa, but no setter for the gpa •       a method named calculateGpa() that calculates and displays the gpa. The calculateGpa() method inputs the five (5) grades the student has earned this semester, which the user will enter on the keyboard as a numeric value (4 for an A, 3 for a B, 2 for a C, 1 for a D, and 0 for an F). The gpa is calculated by adding up all the grades and dividing the total by five (5). You MUST use a loop to input the grades and calculate the gpa. Be sure to use constants when appropriate.  Application: An application program that contains the main method. The main method must do the following, in the order shown below: •       create a Student object named student1 and initialize this object using the default constructor, •       create another Student object named student2 using the second constructor to initialize her student id number to “SR1234”, name to "Maria" and birth year to 2001, •       set the student id number for student1 to “FR9876” •       set the student name for student1 to “John"  •       set the birth year for student1 to 2000  •       print the student's name for student1, and then calculate and print the student’s gpa •       print the student's id for student2, and then calculate and print student's gpa.   Extra Credit: This part of the problem is not required. However, any points earned on this part of the problem will be added to your exam score, improving your score. Each item in this part of the problem is worth the number of points indicated below. •       Write the code for an additional method in the application named printStudentInfo(), which receives a Student object as a parameter. The printStudentInfo() method should display the student id number, name age, and the gpa.      (6 points) •       Add code statements to the main() method to call the printStudentInfo() method twice, once for each of the objects created in the main() method.     (4 points)

Develоp а prоgrаm thаt calculates a student’s grade pоint average (gpa) using the class and application described below.      Class: A Student class that stores the following:  the student's id number the student's name the student's birth year the student's gpa Include the following methods. Be sure to incorporate error checking, when appropriate. •       a default constructor, •       a second constructor that receives three parameters—the student's id number , name and the year of birth •       accessor and mutator methods for the student id number, name and the student's birth year, an accessor for the gpa, but no setter for the gpa •       a method named calculateGpa() that calculates and displays the gpa. The calculateGpa() method inputs the five (5) grades the student has earned this semester, which the user will enter on the keyboard as a numeric value (4 for an A, 3 for a B, 2 for a C, 1 for a D, and 0 for an F). The gpa is calculated by adding up all the grades and dividing the total by five (5). You MUST use a loop to input the grades and calculate the gpa. Be sure to use constants when appropriate.  Application: An application program that contains the main method. The main method must do the following, in the order shown below: •       create a Student object named student1 and initialize this object using the default constructor, •       create another Student object named student2 using the second constructor to initialize her student id number to “SR1234”, name to "Maria" and birth year to 2001, •       set the student id number for student1 to “FR9876” •       set the student name for student1 to “John"  •       set the birth year for student1 to 2000  •       print the student's name for student1, and then calculate and print the student’s gpa •       print the student's id for student2, and then calculate and print student's gpa.   Extra Credit: This part of the problem is not required. However, any points earned on this part of the problem will be added to your exam score, improving your score. Each item in this part of the problem is worth the number of points indicated below. •       Write the code for an additional method in the application named printStudentInfo(), which receives a Student object as a parameter. The printStudentInfo() method should display the student id number, name age, and the gpa.      (6 points) •       Add code statements to the main() method to call the printStudentInfo() method twice, once for each of the objects created in the main() method.     (4 points)

Develоp а prоgrаm thаt calculates a student’s grade pоint average (gpa) using the class and application described below.      Class: A Student class that stores the following:  the student's id number the student's name the student's birth year the student's gpa Include the following methods. Be sure to incorporate error checking, when appropriate. •       a default constructor, •       a second constructor that receives three parameters—the student's id number , name and the year of birth •       accessor and mutator methods for the student id number, name and the student's birth year, an accessor for the gpa, but no setter for the gpa •       a method named calculateGpa() that calculates and displays the gpa. The calculateGpa() method inputs the five (5) grades the student has earned this semester, which the user will enter on the keyboard as a numeric value (4 for an A, 3 for a B, 2 for a C, 1 for a D, and 0 for an F). The gpa is calculated by adding up all the grades and dividing the total by five (5). You MUST use a loop to input the grades and calculate the gpa. Be sure to use constants when appropriate.  Application: An application program that contains the main method. The main method must do the following, in the order shown below: •       create a Student object named student1 and initialize this object using the default constructor, •       create another Student object named student2 using the second constructor to initialize her student id number to “SR1234”, name to "Maria" and birth year to 2001, •       set the student id number for student1 to “FR9876” •       set the student name for student1 to “John"  •       set the birth year for student1 to 2000  •       print the student's name for student1, and then calculate and print the student’s gpa •       print the student's id for student2, and then calculate and print student's gpa.   Extra Credit: This part of the problem is not required. However, any points earned on this part of the problem will be added to your exam score, improving your score. Each item in this part of the problem is worth the number of points indicated below. •       Write the code for an additional method in the application named printStudentInfo(), which receives a Student object as a parameter. The printStudentInfo() method should display the student id number, name age, and the gpa.      (6 points) •       Add code statements to the main() method to call the printStudentInfo() method twice, once for each of the objects created in the main() method.     (4 points)

Develоp а prоgrаm thаt calculates a student’s grade pоint average (gpa) using the class and application described below.      Class: A Student class that stores the following:  the student's id number the student's name the student's birth year the student's gpa Include the following methods. Be sure to incorporate error checking, when appropriate. •       a default constructor, •       a second constructor that receives three parameters—the student's id number , name and the year of birth •       accessor and mutator methods for the student id number, name and the student's birth year, an accessor for the gpa, but no setter for the gpa •       a method named calculateGpa() that calculates and displays the gpa. The calculateGpa() method inputs the five (5) grades the student has earned this semester, which the user will enter on the keyboard as a numeric value (4 for an A, 3 for a B, 2 for a C, 1 for a D, and 0 for an F). The gpa is calculated by adding up all the grades and dividing the total by five (5). You MUST use a loop to input the grades and calculate the gpa. Be sure to use constants when appropriate.  Application: An application program that contains the main method. The main method must do the following, in the order shown below: •       create a Student object named student1 and initialize this object using the default constructor, •       create another Student object named student2 using the second constructor to initialize her student id number to “SR1234”, name to "Maria" and birth year to 2001, •       set the student id number for student1 to “FR9876” •       set the student name for student1 to “John"  •       set the birth year for student1 to 2000  •       print the student's name for student1, and then calculate and print the student’s gpa •       print the student's id for student2, and then calculate and print student's gpa.   Extra Credit: This part of the problem is not required. However, any points earned on this part of the problem will be added to your exam score, improving your score. Each item in this part of the problem is worth the number of points indicated below. •       Write the code for an additional method in the application named printStudentInfo(), which receives a Student object as a parameter. The printStudentInfo() method should display the student id number, name age, and the gpa.      (6 points) •       Add code statements to the main() method to call the printStudentInfo() method twice, once for each of the objects created in the main() method.     (4 points)

Develоp а prоgrаm thаt calculates a student’s grade pоint average (gpa) using the class and application described below.      Class: A Student class that stores the following:  the student's id number the student's name the student's birth year the student's gpa Include the following methods. Be sure to incorporate error checking, when appropriate. •       a default constructor, •       a second constructor that receives three parameters—the student's id number , name and the year of birth •       accessor and mutator methods for the student id number, name and the student's birth year, an accessor for the gpa, but no setter for the gpa •       a method named calculateGpa() that calculates and displays the gpa. The calculateGpa() method inputs the five (5) grades the student has earned this semester, which the user will enter on the keyboard as a numeric value (4 for an A, 3 for a B, 2 for a C, 1 for a D, and 0 for an F). The gpa is calculated by adding up all the grades and dividing the total by five (5). You MUST use a loop to input the grades and calculate the gpa. Be sure to use constants when appropriate.  Application: An application program that contains the main method. The main method must do the following, in the order shown below: •       create a Student object named student1 and initialize this object using the default constructor, •       create another Student object named student2 using the second constructor to initialize her student id number to “SR1234”, name to "Maria" and birth year to 2001, •       set the student id number for student1 to “FR9876” •       set the student name for student1 to “John"  •       set the birth year for student1 to 2000  •       print the student's name for student1, and then calculate and print the student’s gpa •       print the student's id for student2, and then calculate and print student's gpa.   Extra Credit: This part of the problem is not required. However, any points earned on this part of the problem will be added to your exam score, improving your score. Each item in this part of the problem is worth the number of points indicated below. •       Write the code for an additional method in the application named printStudentInfo(), which receives a Student object as a parameter. The printStudentInfo() method should display the student id number, name age, and the gpa.      (6 points) •       Add code statements to the main() method to call the printStudentInfo() method twice, once for each of the objects created in the main() method.     (4 points)

Develоp а prоgrаm thаt calculates a student’s grade pоint average (gpa) using the class and application described below.      Class: A Student class that stores the following:  the student's id number the student's name the student's birth year the student's gpa Include the following methods. Be sure to incorporate error checking, when appropriate. •       a default constructor, •       a second constructor that receives three parameters—the student's id number , name and the year of birth •       accessor and mutator methods for the student id number, name and the student's birth year, an accessor for the gpa, but no setter for the gpa •       a method named calculateGpa() that calculates and displays the gpa. The calculateGpa() method inputs the five (5) grades the student has earned this semester, which the user will enter on the keyboard as a numeric value (4 for an A, 3 for a B, 2 for a C, 1 for a D, and 0 for an F). The gpa is calculated by adding up all the grades and dividing the total by five (5). You MUST use a loop to input the grades and calculate the gpa. Be sure to use constants when appropriate.  Application: An application program that contains the main method. The main method must do the following, in the order shown below: •       create a Student object named student1 and initialize this object using the default constructor, •       create another Student object named student2 using the second constructor to initialize her student id number to “SR1234”, name to "Maria" and birth year to 2001, •       set the student id number for student1 to “FR9876” •       set the student name for student1 to “John"  •       set the birth year for student1 to 2000  •       print the student's name for student1, and then calculate and print the student’s gpa •       print the student's id for student2, and then calculate and print student's gpa.   Extra Credit: This part of the problem is not required. However, any points earned on this part of the problem will be added to your exam score, improving your score. Each item in this part of the problem is worth the number of points indicated below. •       Write the code for an additional method in the application named printStudentInfo(), which receives a Student object as a parameter. The printStudentInfo() method should display the student id number, name age, and the gpa.      (6 points) •       Add code statements to the main() method to call the printStudentInfo() method twice, once for each of the objects created in the main() method.     (4 points)

Develоp а prоgrаm thаt calculates a student’s grade pоint average (gpa) using the class and application described below.      Class: A Student class that stores the following:  the student's id number the student's name the student's birth year the student's gpa Include the following methods. Be sure to incorporate error checking, when appropriate. •       a default constructor, •       a second constructor that receives three parameters—the student's id number , name and the year of birth •       accessor and mutator methods for the student id number, name and the student's birth year, an accessor for the gpa, but no setter for the gpa •       a method named calculateGpa() that calculates and displays the gpa. The calculateGpa() method inputs the five (5) grades the student has earned this semester, which the user will enter on the keyboard as a numeric value (4 for an A, 3 for a B, 2 for a C, 1 for a D, and 0 for an F). The gpa is calculated by adding up all the grades and dividing the total by five (5). You MUST use a loop to input the grades and calculate the gpa. Be sure to use constants when appropriate.  Application: An application program that contains the main method. The main method must do the following, in the order shown below: •       create a Student object named student1 and initialize this object using the default constructor, •       create another Student object named student2 using the second constructor to initialize her student id number to “SR1234”, name to "Maria" and birth year to 2001, •       set the student id number for student1 to “FR9876” •       set the student name for student1 to “John"  •       set the birth year for student1 to 2000  •       print the student's name for student1, and then calculate and print the student’s gpa •       print the student's id for student2, and then calculate and print student's gpa.   Extra Credit: This part of the problem is not required. However, any points earned on this part of the problem will be added to your exam score, improving your score. Each item in this part of the problem is worth the number of points indicated below. •       Write the code for an additional method in the application named printStudentInfo(), which receives a Student object as a parameter. The printStudentInfo() method should display the student id number, name age, and the gpa.      (6 points) •       Add code statements to the main() method to call the printStudentInfo() method twice, once for each of the objects created in the main() method.     (4 points)

Develоp а prоgrаm thаt calculates a student’s grade pоint average (gpa) using the class and application described below.      Class: A Student class that stores the following:  the student's id number the student's name the student's birth year the student's gpa Include the following methods. Be sure to incorporate error checking, when appropriate. •       a default constructor, •       a second constructor that receives three parameters—the student's id number , name and the year of birth •       accessor and mutator methods for the student id number, name and the student's birth year, an accessor for the gpa, but no setter for the gpa •       a method named calculateGpa() that calculates and displays the gpa. The calculateGpa() method inputs the five (5) grades the student has earned this semester, which the user will enter on the keyboard as a numeric value (4 for an A, 3 for a B, 2 for a C, 1 for a D, and 0 for an F). The gpa is calculated by adding up all the grades and dividing the total by five (5). You MUST use a loop to input the grades and calculate the gpa. Be sure to use constants when appropriate.  Application: An application program that contains the main method. The main method must do the following, in the order shown below: •       create a Student object named student1 and initialize this object using the default constructor, •       create another Student object named student2 using the second constructor to initialize her student id number to “SR1234”, name to "Maria" and birth year to 2001, •       set the student id number for student1 to “FR9876” •       set the student name for student1 to “John"  •       set the birth year for student1 to 2000  •       print the student's name for student1, and then calculate and print the student’s gpa •       print the student's id for student2, and then calculate and print student's gpa.   Extra Credit: This part of the problem is not required. However, any points earned on this part of the problem will be added to your exam score, improving your score. Each item in this part of the problem is worth the number of points indicated below. •       Write the code for an additional method in the application named printStudentInfo(), which receives a Student object as a parameter. The printStudentInfo() method should display the student id number, name age, and the gpa.      (6 points) •       Add code statements to the main() method to call the printStudentInfo() method twice, once for each of the objects created in the main() method.     (4 points)

Develоp а prоgrаm thаt calculates a student’s grade pоint average (gpa) using the class and application described below.      Class: A Student class that stores the following:  the student's id number the student's name the student's birth year the student's gpa Include the following methods. Be sure to incorporate error checking, when appropriate. •       a default constructor, •       a second constructor that receives three parameters—the student's id number , name and the year of birth •       accessor and mutator methods for the student id number, name and the student's birth year, an accessor for the gpa, but no setter for the gpa •       a method named calculateGpa() that calculates and displays the gpa. The calculateGpa() method inputs the five (5) grades the student has earned this semester, which the user will enter on the keyboard as a numeric value (4 for an A, 3 for a B, 2 for a C, 1 for a D, and 0 for an F). The gpa is calculated by adding up all the grades and dividing the total by five (5). You MUST use a loop to input the grades and calculate the gpa. Be sure to use constants when appropriate.  Application: An application program that contains the main method. The main method must do the following, in the order shown below: •       create a Student object named student1 and initialize this object using the default constructor, •       create another Student object named student2 using the second constructor to initialize her student id number to “SR1234”, name to "Maria" and birth year to 2001, •       set the student id number for student1 to “FR9876” •       set the student name for student1 to “John"  •       set the birth year for student1 to 2000  •       print the student's name for student1, and then calculate and print the student’s gpa •       print the student's id for student2, and then calculate and print student's gpa.   Extra Credit: This part of the problem is not required. However, any points earned on this part of the problem will be added to your exam score, improving your score. Each item in this part of the problem is worth the number of points indicated below. •       Write the code for an additional method in the application named printStudentInfo(), which receives a Student object as a parameter. The printStudentInfo() method should display the student id number, name age, and the gpa.      (6 points) •       Add code statements to the main() method to call the printStudentInfo() method twice, once for each of the objects created in the main() method.     (4 points)

Develоp а prоgrаm thаt calculates a student’s grade pоint average (gpa) using the class and application described below.      Class: A Student class that stores the following:  the student's id number the student's name the student's birth year the student's gpa Include the following methods. Be sure to incorporate error checking, when appropriate. •       a default constructor, •       a second constructor that receives three parameters—the student's id number , name and the year of birth •       accessor and mutator methods for the student id number, name and the student's birth year, an accessor for the gpa, but no setter for the gpa •       a method named calculateGpa() that calculates and displays the gpa. The calculateGpa() method inputs the five (5) grades the student has earned this semester, which the user will enter on the keyboard as a numeric value (4 for an A, 3 for a B, 2 for a C, 1 for a D, and 0 for an F). The gpa is calculated by adding up all the grades and dividing the total by five (5). You MUST use a loop to input the grades and calculate the gpa. Be sure to use constants when appropriate.  Application: An application program that contains the main method. The main method must do the following, in the order shown below: •       create a Student object named student1 and initialize this object using the default constructor, •       create another Student object named student2 using the second constructor to initialize her student id number to “SR1234”, name to "Maria" and birth year to 2001, •       set the student id number for student1 to “FR9876” •       set the student name for student1 to “John"  •       set the birth year for student1 to 2000  •       print the student's name for student1, and then calculate and print the student’s gpa •       print the student's id for student2, and then calculate and print student's gpa.   Extra Credit: This part of the problem is not required. However, any points earned on this part of the problem will be added to your exam score, improving your score. Each item in this part of the problem is worth the number of points indicated below. •       Write the code for an additional method in the application named printStudentInfo(), which receives a Student object as a parameter. The printStudentInfo() method should display the student id number, name age, and the gpa.      (6 points) •       Add code statements to the main() method to call the printStudentInfo() method twice, once for each of the objects created in the main() method.     (4 points)

Develоp а prоgrаm thаt calculates a student’s grade pоint average (gpa) using the class and application described below.      Class: A Student class that stores the following:  the student's id number the student's name the student's birth year the student's gpa Include the following methods. Be sure to incorporate error checking, when appropriate. •       a default constructor, •       a second constructor that receives three parameters—the student's id number , name and the year of birth •       accessor and mutator methods for the student id number, name and the student's birth year, an accessor for the gpa, but no setter for the gpa •       a method named calculateGpa() that calculates and displays the gpa. The calculateGpa() method inputs the five (5) grades the student has earned this semester, which the user will enter on the keyboard as a numeric value (4 for an A, 3 for a B, 2 for a C, 1 for a D, and 0 for an F). The gpa is calculated by adding up all the grades and dividing the total by five (5). You MUST use a loop to input the grades and calculate the gpa. Be sure to use constants when appropriate.  Application: An application program that contains the main method. The main method must do the following, in the order shown below: •       create a Student object named student1 and initialize this object using the default constructor, •       create another Student object named student2 using the second constructor to initialize her student id number to “SR1234”, name to "Maria" and birth year to 2001, •       set the student id number for student1 to “FR9876” •       set the student name for student1 to “John"  •       set the birth year for student1 to 2000  •       print the student's name for student1, and then calculate and print the student’s gpa •       print the student's id for student2, and then calculate and print student's gpa.   Extra Credit: This part of the problem is not required. However, any points earned on this part of the problem will be added to your exam score, improving your score. Each item in this part of the problem is worth the number of points indicated below. •       Write the code for an additional method in the application named printStudentInfo(), which receives a Student object as a parameter. The printStudentInfo() method should display the student id number, name age, and the gpa.      (6 points) •       Add code statements to the main() method to call the printStudentInfo() method twice, once for each of the objects created in the main() method.     (4 points)

Describe in аs much detаil аs yоu can the steps invоlved in a muscle cоntraction beginning with the arrival of the action potential at the neuromuscular junction and ending with cross-bridge formation. 10 points with up to  5 bonus points for exceptional answers.