What would the following code snippet display?              …

What would the following code snippet display?                                                                                                                               var x = 5;                                                                                                                               if(x == 4)                                                                                                                                   document.write(“Math is fun!”);                                                                                                                                else                                                                                                                                     document.write(“Wrong! “);                                                                                                                                     document.write(“Math is not fun!”);

A liter of normal saline IV fluids was started at 9AM and wa…

A liter of normal saline IV fluids was started at 9AM and was to infuse for 8 hours. Four hours later, only 300 mL has been absorbed. The nurse recalculates the IV flow rate to make sure that the remaining IV fluids will infuse in the originally scheduled 8 hours.  How many mL’s per hour will the nurse reset the pump in order to infuse the remaining IV fluids over 4 hours?      

 Which of the following should be used to make the code snip…

 Which of the following should be used to make the code snippet work for students who get any score between 0 – 100?      var grade = 0;                                                                                                                                var score = parseInt(“What’s the score?”);                                                                                                                            if (score < 70)                  grade = "F";                                                                                                                             else if ( ??? )                  grade = "C";                                                                                                                              else if (grade >= 85)                   grade = “A”;