bharath chandra maddhi


{ City } hyderabad
< Country > india
* Profession *
User No # 96712
Total Questions Posted # 6
Total Answers Posted # 1

Total Answers Posted for My Questions # 13
Total Views for My Questions # 42806

Users Marked my Answers as Correct # 0
Users Marked my Answers as Wrong # 0
Questions / { bharath chandra maddhi }
Questions Answers Category Views Company eMail

Where we save the bugs?

Google,

2 Manual Testing 4660

Find the 'String' from excel sheet and save to another sheet.But we don't know the string column number and row number?

4 QTP 6038

Can we write winrunner language i.e TSL in QTP tool?

QTP 1467

What is differnce between bug and error?

3 Manual Testing 5035

How to find given string is palindrome or not without using strreverse() function?

2 QTP 19861

How do we connect QC by using QTP?

Infosys,

2 QTP 5745




Answers / { bharath chandra maddhi }

Question { 3754 }

What is the use of "Option Explicit"?


Answer

"Option Explicit" statement is used to declare variables and
arrays on the top of the script.When this stmt in script ,QTP
can allows all variables used in that script without
returning any error.

For example: x= 10
y= 20
z= c*y
msgbox(z)
In the above code, by mistakenly typed as 'c' in the place
of 'x'. Bur QTP tool allows 'c' as a new variable without
returning error.

Is This Answer Correct ?    0 Yes 0 No