nagaraju.ch


{ City } hyderabad
< Country > india
* Profession *
User No # 76352
Total Questions Posted # 0
Total Answers Posted # 14

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 76
Users Marked my Answers as Wrong # 13
Questions / { nagaraju.ch }
Questions Answers Category Views Company eMail




Answers / { nagaraju.ch }

Question { MBT, 51654 }

In Oracle 9i what does "i" Stands for?


Answer

Oracle 9i supports the internet applications

i stands for Internet

Is This Answer Correct ?    0 Yes 0 No

Question { Verizon, 8924 }

what are the contents of FRS?


Answer

FRS = Functional Requirements Specification.

This document contains all the functional behavior of the
product, this document helps to write the test cases.

Is This Answer Correct ?    2 Yes 0 No


Question { Oracle, 14261 }

what is the difference between sql& oracle?


Answer

Oracle is a company and it is a database,SQL is an
structured Query Language having DDL,DML&TCL

Is This Answer Correct ?    0 Yes 0 No

Question { 5958 }

1. Hai, if we are not having any SRS,BRS docs., how can we
prepare the test cases & how can we test the application ?
2. In this, is it possible to make 100% bug free.


Answer

1. If we are not having any docs, then we have to do this

I. Exploratory Testing (in the time of testing only we need
to understand)

II. Parallel Testing (by checking the previous version
functionality of the product)

III. Discuss with the developers and Business analyst about
the functionality.

So that we can prepare the test cases

2. As a tester we have to make it as bug free

Plz tell me that my answer is correct is correct wrong.

Is This Answer Correct ?    1 Yes 0 No

Question { Fidelity, 6474 }

Which one is done first, either testcases or test scenario?


Answer

Test Scenarios are made first and then test cases

Is This Answer Correct ?    2 Yes 0 No

Question { 4434 }

WHAT IS LOAD TESTING


Answer

Load testing:

Performance is conduct by gradually increasing the user at
regular intervals of time

Is This Answer Correct ?    0 Yes 0 No

Question { 4434 }

WHAT IS LOAD TESTING


Answer

Load Testing

Performance is conduct by gradually increasing the user at
the regular intervals of time.

Is This Answer Correct ?    0 Yes 0 No

Question { 6703 }

what is entry / exit criteria and pass / fail criteria ?


Answer

Entry and Exit criteria

1. Entry Criteria: The conditions to start testing.
2. Exit Criteria: The conditions to stop testing.

Pass/Fail criteria (conditions)

Specify the conditions if statements to accept the build for
testing (or) Reject the build

Is This Answer Correct ?    8 Yes 1 No

Question { 15467 }

what are the defects in gmail


Answer

I found 2 defects in gmail

1. If user send a mail that ID which was not present in the
Data base of gmail also that mail was sent, gmail msg that
"Your message has been sent" instead of msg "THIS ID IS NOT
PRESENT" OR "WRONG ID WRITTEN"
EXAMPLE: 153165@gmail.com

2. If user send mail to any Domin that which was not present
i.e, aaa@yyy.com for this ID also gmail msg that "your mail
sent Successfully" and after some time gmail send a mail
that msg sent fail.


Plz tel me my answer correct are not

Is This Answer Correct ?    40 Yes 5 No

Question { 4276 }

what is the diff between verification and validation.is
verifiction and validation will takes place in each and
every phase..pls send a clarified answer


Answer

Verification:

This is conduct throughout the project cycle to ensure are
we developing the right project or not.

Validation:

Conduct after coding to ensure the develop project is
working right or not as per the requirements.

both Verification and validation in all phases, so that the
final product is the Quality one.

Is This Answer Correct ?    5 Yes 2 No

Question { 4240 }

How to automate the windows dialog box which is coming in
the run mode?
Whenever I run my scripts,I am getting dialog box ( for ex:
Pls enter zipcode" eventhough I already entered the
value,the dialog box pops up).I need to click it.
Pls give some idea-How to automate the dialog box which is
pop up in the runtime.


Answer

hello friend, use the Recovery Scenario

If it is POP UP window
1)Select Trigger Event as POP-UP Event
2)Select Recovery Operation as Key board or mouse operation
3)Select Recovery Operation - Click Button or press enter key
4)Give the Scenario name
5)Save the Scenario (it is in .QRS)
Associate the scenario in your test, so that when ever you
get the pop-up window the recovery scenario do the click, no
need to click manually in run time


Thank You

Is This Answer Correct ?    3 Yes 0 No

Question { 6252 }

Can anybody tell test cases for the following condition?

In a railway reservation form, 4 types of ticket ranges are
there like a) age up to 3, NO TICKET. b) age up to 7, HALF
TICKET. c) age up to 60, FULL TICKET. d) age from 61, SENIOR
CITIZEN QUOTA.
if you enter age into the text box the relevant message
should be displayed..... Eg. FULL TICKET.


Answer

Use select case statement

example:

dim age
age=inputbox("Enter the age")
select case age

case "age up to 3"
msgbox "No Ticket"

case "age up to 7"
msgbox "Halt Ticket"

Just i gave example

case "age up to 60"
msgbox "Full Ticket"
case else
msgbox"SENIOR CITIZEN QUOTA"
end select

Is This Answer Correct ?    3 Yes 3 No

Question { 9903 }

How many bugs have u found in your project?


Answer

We cant guess that we will get this many bugs in our
project, depending on the coding or any mistake we will
raise the bug. They may be possible that we didn't get any
bugs on small projects


Thank you

Is This Answer Correct ?    8 Yes 2 No

Question { IQ, 3049 }

Whhat is a Functions


Answer

A function is a block of statement, A function will not execute immediately when we run, we have to call the function to execute
example

function name(){          // for creating a function

     echo "My name is -----";   

}

name();                   // calling the function

Is This Answer Correct ?    4 Yes 0 No