To make a random selection using a random number generator, we could make use of a computer programming to execute the task by following the steps below ;
A.) Using python 3 to generate a random sample of 141 plots :
import random
#import the random module
random_sample = random.sample(range(1410), 141)
#using the sample method, randomly select a sample of 141 plots from the total number of plots, 1410
print(random_sample)
#display the randiy selected plots which is 10% of the total
B.) Choosing the first three plots using the method described in (A)
first_3 = random_sample[:3]
#from the 141 random samples, use list slicing to select the first three plots from the sample
print('\n The first 3 plots are : ' , first_3)
#display the first three sample plots selected.
Learn more :https://brainly.com/question/25083828