Solved

An Application Needs to Generate Three Random Numbers That Can

Question 46

Essay

An application needs to generate three random numbers that can be from 1 to 9.The random numbers will be assigned to variables named intNum1,intNum2,and intNum3.Write the necessary statements to generate the random numbers and store them in their respective variables.The following Dim statements are provided:
Dim intNum1 As Integer
Dim intNum2 As Integer
Dim intNum3 As Integer

Correct Answer:

verifed

Verified

Dim randGen As New Random
intN...

View Answer

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions