// Java program to assign grades to a student // using nested if-else classGFG{ publicstaticvoidmain(Stringargs[]) { // Store marks of all the subjects in an array intmarks[]={25,65,46,98,78,65}; // Max marks will be 100 * number of subjects intmax_marks=marks.length*100; /...