Computer Science, asked by krishansharma94, 1 year ago

do the following program using javascript
a) write a following to display the student grade using switch statement​

Answers

Answered by jksilambu24
2

Explanation:

<?php

$marks = 40;

if ($marks>=60)

{

$grade = "First Division";

}

else if($marks>=45)

{

$grade = "Second Division";

}

else if($marks>=33)

{

$grade = "Third Division";

}

else

{

$grade = "Fail";

}

#For your request

Similar questions