Automation Testing, Manual Testing, QTP/UFT 11 , QC/ALM 11 ,SAP TAO, Unix, Selenium, Oracle SQL, Shell Scripting and For Online Trinings to contact me : Cell:+91-8897972059 , Email Id : quicktestprotech@gmail.com

Thursday, November 4, 2010

RandomNumber Object - Generate Random Numbers

RandomNumber Object - Generate Random Numbers


  1. '###############################################  
  2. '           RandomNumber Object   
  3. '###############################################  
  4.   
  5. ' Purpose:- Used to generate Random Numbers between specific range  
  6.   
  7. 'Syntax: RandomNumber(ParameterNameOrStartNumber [,EndNumber])   
  8.   
  9. 'The below script prints 5 random numbers between 1 and 10  
  10.   
  11. For iStart=1 to 5  
  12.   
  13.  print RandomNumber(1,10)  
  14.   
  15. Next  
  16.   
  17. '**********************************************  
  18. 'Generating Random Numbers with rnd function  
  19. '**********************************************  
  20.   
  21. 'Formulae:-  Int((upperbound - lowerbound + 1) * Rnd + lowerbound)  
  22.   
  23. upperbound=10  
  24. lowerbound =1  
  25.   
  26. For iStart=1 to 5  
  27.   
  28.  print Int((upperbound - lowerbound + 1) * Rnd + lowerbound)  
  29.   
  30. Next  
  31.   
  32. 'Here rnd function generates a float value  
  33. 'Int function return integer value

0 comments:

Post a Comment

Loading...