rk


{ City } chandigarh
< Country > india
* Profession * qa engineer
User No # 6058
Total Questions Posted # 1
Total Answers Posted # 7

Total Answers Posted for My Questions # 2
Total Views for My Questions # 4380

Users Marked my Answers as Correct # 23
Users Marked my Answers as Wrong # 9
Questions / { rk }
Questions Answers Category Views Company eMail

WHAT IS SECURITY TESTING.HOW TO DO SECURITY TESTING.IS THERE ANY FRAMEWORK AVAILABLE

2 Manual Testing 4380




Answers / { rk }

Question { GE, 9047 }

what is use of optionexplicit in variable declaration


Answer

Option explicit on means we have to declare the variable
ex dim a

Option explicit off means we dont want to declare the
variable(by default variant)

Is This Answer Correct ?    0 Yes 1 No

Question { ESI, 5065 }

Can anybody give answer for WHAT IS THE MEANING OF
TRANSACTION BASED TESTING WITH EXAMPLE


Answer

Transaction based testing is nothing but using transactions
while doing database stuff like select,update,create etc

Is This Answer Correct ?    6 Yes 0 No


Question { 5006 }

Which is the good tool for testing between Load Runner or
Win Runner,and which version.Can u plz tell me on my id i.e
nitin9360@gmail.com,thnks.


Answer

Hi Nitin,

First see the requirement for performance u have
to use load runner for functional testing u can use
winrunner or qtp

Is This Answer Correct ?    3 Yes 0 No

Question { HCL, 8545 }

how can u do database testing manually?


Answer

Manually we can check the datbase constraints,field
size,writing joins and some ddl commands and stored
procedures

we can do like this also

writing insert statments using stored procedures with
sample data by passing parameters and calling these
name.sql files in batch files and run batch files.

Is This Answer Correct ?    1 Yes 0 No

Question { 5176 }

I am just a beginner in QTP. Could any one explain me in
detail how to automate adding two numbers and getting the
result in QTP. Also I would like to parameterize the
inputs. I have tried but getting an error like 'Can't use
sub.....'(can't recollect the exact error)


Answer

you can write function to add two numbers and call in qtp.

file-->New-->function Library

Public function add(a, b)
add=a+b
End Function


Save it where ever u want with add.vbs

Now File-->settings-->Resources-->Add function library--
>click at add(+) button below one button will appear click
that and add the saved library file(add.vbs).

in qtp normal file

write print add(4,5) and u can parameters as your wish.



add this in

Is This Answer Correct ?    0 Yes 0 No

Question { Microsoft, 8135 }

does test plan is in test strategy or test strategy is in
test plan.


Answer

test strategy is in test plan.

Is This Answer Correct ?    3 Yes 0 No

Question { TCS, 28836 }

how we connect oracle or sql data server database to qtp.


Answer

open qtp-->click record

In Insert Menu-->OutputValue-->Database Output value--
>select specify query manually radio button-->and click at
create button->click new-->select sqlserver from the popup
and click next-->next

u will get connection
DSN=database;UID=username;Trusted_Connection=Yes;APP=QuickTe
st Professional;WSID=computername;

and write sqlstatement

select columnid from tablename (dont put * instead of
columnid)

then automatically the below line is added in qtp
DbTable("DbTable").Output CheckPoint("DbTable")
and do remaining stuff.

u need some more clarification please send the mail to
i.krishna@rediffmail.com

Is This Answer Correct ?    10 Yes 8 No