Let n=10 (number of questions) and p=1/5 (the probability to choose correct answer).
Now we can consider X - number if correct answers, and X∼Bin(10,1/5)
We need to find P(X≥6) - the probability that he will get at least six questions correct.
For X∼Bin(n,p) we have: P(X=k)=(kn)pk(1−p)n−k
P(X≥6)=P(X=6)+P(X=7)+P(X=8)+P(X=9)+P(X=10)=210×(1/5)6(4/5)4+120×(1/5)7(4/5)3+45×(1/5)8(4/5)2+10×(1/5)94/5+1×(1/5)10≈0.0064
Answer: 0.0064
Comments