What will the following code output if the variable score is…

What will the following code output if the variable score is set to 75? if (marks >= 90) {    System.out.println(“A”);} else if (marks >= 80) {    if (marks > 85 && marks < 90) {        System.out.println("B+");    } else {        System.out.println("B");    }} else if (marks >= 70) {    if (marks >= 75) {        System.out.println(“C+”);    } else {        System.out.println(“C”);    }} else {    System.out.println(“D or lower”);}