Monday, March 23, 2015

Display first 10 factors of a given number

Dim n
n=inputbox ("Enter a number to display first 10 factors")

for i=1 to 10
 msgbox n & " X " & i & " = " & n*i
next

Best practices for test automation in agile software development

  Agile software development is a highly iterative and collaborative approach to software development that emphasizes flexibility and a...