InterviewSolution
Saved Bookmarks
| 1. |
Three-digit random numbers are given below:170, 111, 352, 002, 563, 203, 405, 545, 111, 446, 776, 691, 816, 233, 616, 300, 250, 816, 010.Using the random numbers, select a 2 % random sample with and without replacement from a population of 350 units. |
|
Answer» First of all we will assign numbers 1 to 350 to the units of population.
Sample with replacement: Considering the repeated numbers, first seven random numbers are: 170, 111, 002, 203, 111, 233, 300. Sample without replacement: Ignoring the repeated numbers, the first seven random numbers are: 170, 111, 002, 203, 233, 300, 250. |
|