x is a vector with 10000 uniformly distributed random values in the domain of [0, 1]. Which of the following is the appr
Posted: Fri May 20, 2022 11:41 am
x is a vector with 10000 uniformly distributed random values in the domain of [0, 1]. Which of the following is the approximate value of p after the script runs? n=0; for V EX if (v<0.5) && (v>0.3) n=n+1; end end p=n/10000: O A.0.2 OB. 1.0 OC.0.3 O D.0.5