How to get 120 using 5 zeroes, you can use any operator(+,
*, /...) in qtp.
Answers were Sorted based on User's Feedback
Answer / sureshkumar
We can get 120 using factorial, i.e
Factorial (0) = 1 so that
(0! + 0! + 0! + 0! + 0!)! = 5! => 120
| Is This Answer Correct ? | 7 Yes | 1 No |
Option Explicit
Dim temp,Factorial,i,j,k,x
temp=0
Factorial = 1
For i=1 to 5 step 1
x= Inputbox ("Enter a No. :") '(Enter Zero for
Five Times)
For j=x to 1 Step -1
Factorial=Factorial*j
Next
temp = temp+Factorial
Next
For k=temp to 1 Step -1
Factorial=Factorial*k
Next
Msgbox Factorial
| Is This Answer Correct ? | 3 Yes | 0 No |
how to write a vb script in QTP for yahoo registration form, i want to check the performance also like performance test, stress, load test like that.
Explain about filter expression?
What is loose binding? Why is it not a good practice to use it?
What is wrong with the following code: <%afname="header.asp"%><!?#include file ="<%=afname%>"?>
Explain the filter expression?
Diff between web table ,datatable and data base (QTP)
write a vb script to display the reverse of vbs
reverse the string without using reverse string?
How to remove the spaces in a string Ex: "Welcome to QTPWorld" ?
How will you reverse a string in vbscript?
write a program to display configuration of a local system with the help of vb script.
When inserting strings into a SQL table in ASP what is the risk and how can you prevent it?