| Back to Questions Page |
| |
| Question |
What is the difference between Smoke Test & Sanity Test? |
Rank |
Answer Posted By |
|
Question Submitted By :: Umesh Koodali |
| This Interview Question Asked @ Qualtree-Solutions |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | I need the diff between sanity and smoke, not the defnition
of smoke testing. Anyway thanks for posting answers  |
| Umesh |
| |
| |
| Answer | smoke test :testing the major functionality when ever a
build or setup or moved to testing env .so that by means of
which u will be knowing further testing is possibale or not.  |
| Nataraja.cv |
| |
| |
| Answer | The difference is Smoke testing is conducted on new Built
where as snaity test is also conducted to test basic
functionality but on already failed smoke tests.  |
| Chethana |
| |
| |
|
|
| |
| Answer | smoke testing: It is performed by developers before
releasing the application to testing team.In this they
verify basic functionality of an application
sanity testing: After receiving the application test
engineer VALIDATES basic functionality of an application
with help of checked list to estimate stability.
Ex: For login screen
Smoke testing is only test whether the user is able to
login or not .
And Sanity testing is to test text field lenght,datatype of
text,which page it takes  |
| Amit |
| |
| |
| Answer | Smoke testing- This term came from Electronic Industry
where if ther is a shor circuit then is should produce the
smoke.
Sanity testing- This is the min no of test case that needs
to be executed before moving to the next level of testing.
Ex- If you are not able to login even after entering the
correct id/passwd that means the sanity test fails  |
| Ravinder Mehra |
| |
| |
| Question |
in qtp how can we do test when the build is not ready |
Rank |
Answer Posted By |
|
Question Submitted By :: Kotesh |
| This Interview Question Asked @ Mindlance |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | By Using Descriptive Programming we can start the qtp
scripts.
there is no need of Build.  |
| Nani |
| |
| |
| Answer | You cannot do any test when the build is not ready, because
we perform testing on build. When build is not available,
how can we test and what can we test ?
Before the build is released, we get ready to test the build
by writing test scripts in Descriptive Programming and by
using prototype of the application. When build is released,
we execute our test scripts on the build.
If you want to test the build, you definitely need the
build. If you want to get ready to test the build, you can
write descriptive programming.  |
| Ravi, Fortechsoft |
| |
| |
| Question |
How to test stored procuders???/ |
Rank |
Answer Posted By |
|
Question Submitted By :: Gsri_nivas |
| This Interview Question Asked @ TCS |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | You have two alternatives. One is to create a stored
procedure that executes the procedure under development. It
will call the procedure with every combination of input
parameters possible. The second is to use the command
window as a client, and call the procedures from there.
This re-routes the server's error messages to the command
line, where you can trap them to a file and read them
outside Query Analyzer.  |
| Shilpa |
| |
| |
| Question |
hi,
i was adding the two numbers in qtp scripts but i didn't get
the answer. see my below script, i dont know wht is the problem.
i passed the value a=3 b= 2, i got the ans 32 instead of 5.
i thing the problem is to be c = a+b
my mail id karthis4u@gmail.com
Dim a, b, c
a = inputbox("enter the a ")
b = inputbox("enter the b ")
c = a + b
print c
|
Rank |
Answer Posted By |
|
Question Submitted By :: Karthis4u |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | hello
which ever the code you have written will be doing
cancatenation by accepting as characters.
if you provide inputs as a="abc" and b="xyz" then output
will be "abcxyz" right.
if you add two numbers you can go for this below code
function sum(a,b)
c=a+b
msgbox c
end function
calling the function
sum 2,3 then you will get output as 5  |
| Prasad V |
| |
| |
| Answer | hi
Use CINT Function:: correct code is
Dim a, b, c
a =cint( inputbox("enter the a "))
b =cint( inputbox("enter the b "))
c = a + b
msgbox c
send mail if you have any query:
ccna_deepak@yahoo.com  |
| Deepak Singh |
| |
| |
| Answer | Hi,
prasad's code was right.. but we should pass values for the
function sum
dim a,b,c
function sum(a,b)
c=a+b
msgbox c
end function
x=sum(3,2)  |
| Kavi |
| |
| |
| Question |
i finished writing test caes, logged bugs and also
regression testing i finished.when we do user acceptance
testing? |
Rank |
Answer Posted By |
|
Question Submitted By :: Nithi |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | acceptance testing is done by the user and the manufacturer
of the software or you can say by the client to check
whether the system is working as per his/her requirements.
Its a kind of a black box testing but not done by
professionals (Software testers).It is often referred to as
a(n) functional test, beta test, QA test, application test,
confidence test, final test, or end user test  |
| Harjeet Kaur |
| |
| |
| Question |
Whenever developer will recieved the defect from the
tester,then he will go thru the defect whether it is
acceptable or not?for that he will execute that application
again,while executing if he did not found any such type of
defect(what we are rise the defect above),then he will send
that defect to the corresponding tester with status
of 'reject',as a tester what we can do?(here writing the
reproduce steps and attached screen shots has been done by
tester while sending the defect to the developer, no need
to send reproduced steps and screen shots again) |
Rank |
Answer Posted By |
|
Question Submitted By :: Venkata Narayana N |
| This Interview Question Asked @ CTS , Ibm, IBM |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | The tester should try to reproduce the defect again. If the
tester able to reproduce the defect then he/she should ask
the developer to try reproduce the defect in testing
environment instead of developing environment and then ask
them to fix it.
Please let me know if I am correct or wrong.
bommi_ki@yahoo.ca  |
| Kiranmayi |
| |
| |
| Answer | as the defect is rejected, once again execute the
application to check whether it is a defect or not. if at
all we find the same defect once again then check for the
requirements that are with the development department and
compare it with the requirements that are with us. may be
some times the altered requirement document will not reach
the testing department as soon as they reached the
development department.  |
| Kirani |
| |
| |
| Answer | One solution is as kiranmayi said we have to ask him to
execute in test environment instead of development
environment
Other solution is, if it is possible to share your desktop
with developer then do so by providing the user name and
password. Now ask the developer to give a try on your
machine, if he is able to reproduce the bug then try to
find out the root cause why he was not able to reproduce on
his machine. (Reasons can be many like Bug is OS dependent,
browser dependent etc).  |
| Remo |
| |
| |
| Answer | Exactly Remo. Also one thing, rarely this types of bugs are
reproducable. Because this bug is for perticular OS,
browser or for that user (Email) only.
So tester can do one thing, he can provide taht email id,
password, name of OS, browser (like IE, FF, Netscape,
Saffari etc), steps to follow...etc  |
| Anita |
| |
| |
| Question |
how open two urls in one browser?
plz urgent |
Rank |
Answer Posted By |
|
Question Submitted By :: Punna.inter |
| This Interview Question Asked @ Satyam |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | use invoke function  |
| Navdeep Ahir |
| |
| |
| Answer | Navdeep,
If u dont know exact answer, plz dont post answers.
before posting answers plz. verify once with others.
dim ie1, ie2
set ie1=createobject("Internet Explorer.Application")
ie1.visible=true
ie1.navigate"http:\\localhoast\enquiry\index"
set ie2=createobject("Internet Explorer.Application")
ie2.visible=true
ie2.navigate"http:\\localhoast\registration\index"
bye
venkateshwarlu  |
| Venkateshwarlu |
| |
| |
| Answer | Venkateswarlu
I dont think the answer given by you is correct. You are
opening two urls in two browsers(not single browser).
Also, there should be no space between Internet and
Explorer in the createobject function. It should read
createobject("InternetExplorer.Application").
Internet Explorer supports opening only one URL at a time
within the same browser; however, Mozilla Firefox supports
opening N number of URLs within the same browser using File-
>New Tab.
Let me know if you need any further information.  |
| Ravi, Fortechsoft (india) Pvt |
| |
| |
| Answer | systemutil.Run"iexplore","http://www.yahoo.com"
browser("title:=Yahoo! india").Navigate"http://www.orkut.com"
browser("title:=orkut - login").Close  |
| Santoshnathan |
| |
| |
| Question |
What is memory leakage? |
Rank |
Answer Posted By |
|
Question Submitted By :: Rohit |
| This Interview Question Asked @ Fiserv |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | A memory leak is the gradual loss of available computer
memory when a program (an application or part of the
operating system) repeatedly fails to return memory that it
has obtained for temporary use. As a result, the available
memory for that application or that part of the operating
system becomes exhausted and the program can no longer
function.  |
| Rohitbaliyan |
| |
| |
| Question |
Hi this is sridhar,iam working in a small organization and i
have 1 year exp in manual testing,which type of questions
will ask if i keep 1+exp in other companies.pls send your
valuable suggestions for me.And my e-mail id is
sridharraghava@gmail.com
ne |
Rank |
Answer Posted By |
|
Question Submitted By :: Sridhar |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | you can check the questions asked in the interviews on the
site geekinterviews.com or
www.astrainfotech.com/software-testing-faq.html  |
| Harjeet Kaur |
| |
| |
|
| |
|
Back to Questions Page |