venkateswarareddy


{ City }
< Country > india
* Profession * tester
User No # 15539
Total Questions Posted # 2
Total Answers Posted # 22

Total Answers Posted for My Questions # 9
Total Views for My Questions # 13444

Users Marked my Answers as Correct # 47
Users Marked my Answers as Wrong # 27
Answers / { venkateswarareddy }

Question { ACS, 6139 }

There is a field in the form...if i will put a number it
will give the square of the number as output..it takes
numbers from 1 to 100!!!
how to test it???


Answer

hi friend
now you can partetion three equal classes .
1.1 to 100 test is pass
2.less than 1 test is fail
3.greaterthan 100 test is fail
your enter no only 1 to 100.you can write the sequre
formula and tested it.
this is my thought any wrongs are their u can send mail.

Is This Answer Correct ?    3 Yes 0 No

Question { 5935 }

what are the conditions of test cases?


Answer

TEST CONDITIONS ARE TWO TYPES.THOSE ARE
1.PREE CONDITION
2.POST CONDITION
Eg:SUPPOSE YOUR MONEY WITH DRAWAL OPERATION IN ATM .
PREE CONDITIONS ARE VALID CARD AND VALID PIN NO
POST CONDITION IS MONEY WIDTH DRAWAL OPERATION IS
SUCCESSFULLY COMPLETED.

Is This Answer Correct ?    1 Yes 0 No


Question { 12298 }

Can anyone tell me testing comes under verification or
validation?


Answer

Verification is proving that a product meets the
requirements specified during previous activity carried out
correctly throughout development life cycle ,while
validation checks that the system meets the customer's
requirements at the end of the life cycle.
The creation of the test product is much more closely
relation to validation than to verification .
Traditionally software testing has been consider a
validation process.

Is This Answer Correct ?    13 Yes 3 No

Question { 5590 }

When we have to use Boundary value analysis and when to use
equivalence partitioning. Please explain with an example.
Urgently required.


Answer

When u are gathering test date we use boundary value analysis or Equivalence class partition.
Ex-In age text box accept the values between 14 to 80.In this situation we use BVA.
like

1.Add +1 to boundaries (14+1) 15 and(80+1) 81
2.Subtract -1 to boundaries (14-1)=13 and (80-1)= 79

Divide three class

1.below 13 test fail
2.14 to 80 test pass
3.above 81 test fail.

Is This Answer Correct ?    4 Yes 5 No

Question { 7435 }

How can i see test results in excel sheet ? test data not present in data table.


Answer

How can i send test results to excel sheet?

Is This Answer Correct ?    2 Yes 3 No

Question { 9405 }

Please let know the scripts for counting number of repeated
letters in the word. Note repeated letter should not be
count agian.

Ex: If "Hello" is my word... l is coming twice.. it should
count once and print... secong 'l' should not count again..


Answer

Dim str,ln,i,md,ub,sp
str="apple"
ln=len(str)
for i=1 to ln
md=mid(str,i,1)
sp=split(str,md)
ub=ubound(sp)
if ub=i+1 then
msgbox md &vbnewline& "contain more than one character in
given string"
else
msgbox md &vbnewline& "contain only one character in given
string"
end if
next

If any modifications are there please let me know....

Is This Answer Correct ?    1 Yes 2 No

Question { 8605 }

how to get the object count ?????????


Answer

systemutil.Run"C:\Users\Raju\Desktop\cal.exe"
Set desc =Description.Create()
desc("micclass").Value = "Button"
set button=vbwindow("vbname:=CALCULATOR").vbbutton
("vbname:=ADD").ChildObjects(desc)
a= button.count()
msgbox (a)

Is This Answer Correct ?    1 Yes 0 No

Prev    1    [2]