Question 637474
A test has 10 true/false questions. To pass the test, at least 7 questions have to be answered correctly. If a student guesses on each question, what is the probabilty that the student will pass the test?
-----------------------
Binomial Problem with n = 10 and P(correct) = 1/2
----
P(x >= 7) = 1 - P(0<= x <=6) = 1 - binomcdf(10,0.5,6) = 0.1719
====================
Cheers,
Stan H.
===============