Answer:
Following are the program in the Python Programming Language.
#import the random package to generate random number
import random
#declare variables and initialize to 10 and 0
num = 10
count=0
#set for loop
for i in range(1,num):
#set variable that store random number
n = random.randint(0,5);
#set if conditional statement
if(n==4):
#print count and break loop
print("Count:%d"%(count))
break
#increament in count by 1
count+=1;
Output:
Count:4
Explanation:
Following are the description of the program.