| Back to Questions Page |
| |
| Question |
What is throw object? |
Rank |
Answer Posted By |
|
Question Submitted By :: Kanaka |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | I think, it is used for Error Handling.
In vbscript, the related code is -ON ERROR RESUME NEXT.
By creating Recovery Scenarios, we can handle error.
But, in Real-time 90% people don't use These Reco.Scenarios.
Instead they use VBScript to take the error, and then write
the Descrepency into a xls file.
Protect Hindu Culture from Pseudo-Securalists, Other
Religious Fundamentalists.
Support BJP, RSS.  |
| G |
| |
| |
| Question |
Can we continue functionality testing without framework? |
Rank |
Answer Posted By |
|
Question Submitted By :: Kanaka |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | We Can!
By directly Hard coding the values into the script.
This can also be called as Linear Framework. But, I feel,
this may not be a frame work.
---
Protect Hindu Culture from Pseudo-Securalists, Other
Religious Fundamentalists.
Support BJP, RSS.
--  |
| P |
| |
| |
| Answer | Hi..
We can do that. some of the companies are doing that. If the
customer is paying for framework..definitely they will
follow this.
If any queries..
nanda.dreddy@gmail.com  |
| Nanda |
| |
| |
|
|
| |
| Answer | Yes we can continue testing process without a frame work.
But it is not a recommended way .Because the main aim of
frame works is to execute the tests in an optimised way.  |
| Satyanarayana |
| |
| |
| Answer | Framework is nothing but framing our work in certain
way/path or limits, This will make our work easy and
understandable to anybody and easily reference in future..
etc.,
Functionality Testing means just testing the functionality
of certain feature in an application.
This functionality testing is one small part in Framework.
we can follow our own style to test an application, that
will become your own framework.  |
| Baba Fakruddin |
| |
| |
| Question |
How many actions we can create with in a test? |
Rank |
Answer Posted By |
|
Question Submitted By :: Kanaka |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | 255  |
| Raju |
| |
| |
| Answer | I have seen some where it is 255 or 256 im not sure exactly  |
| Rafi |
| |
| |
| Question |
Why we have to split actions in a test? |
Rank |
Answer Posted By |
|
Question Submitted By :: Kanaka |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | susposeIf there is three actions ,then split these three
actions by right click on mouse and select split action for
make actions as reusable action and call them when your
wantand also call them by call to existing action
if it is wrong plese correct it  |
| Vengi |
| |
| |
| Answer | 2 ways
1.independent of each other
2.nested(2nd action is called by 1st)  |
| Litan |
| |
| |
| Answer | To make our script more modularize, we split the actions  |
| Uday Kumar_anem |
| |
| |
| Answer | To achieve more efficiency.
To achieve Modularity.
To decrease code complexity.
if we splitted,then We can make any action as resuable at
any time & we can copy or call that actions easily whenever
required.
we can run each action rather than entire test ..by
using "Run from Step" in any action.  |
| Sreekanth Chilam |
| |
| |
| Question |
Can we call a parameter from an action to other action? |
Rank |
Answer Posted By |
|
Question Submitted By :: Kanaka |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | By using enviornment variables
if it is worng correct please  |
| Vengi |
| |
| |
| Answer | Yes we can pass from one action to other action.
First we have to declare the action parameters.
Then we can pass these parameters from one action to other
action with the variable names  |
| Rams |
| |
| |
| Answer | S of sourse we can send by parameterising the input and
output parameters from the action propperties window...  |
| Joshua |
| |
| |
| Answer | Following are the ways to pass values from one action to
another.
- Test parameters
- Action parameters
- Environment variables  |
| Siraj |
| |
| |
| Question |
Can we create test script with out Step Generator? |
Rank |
Answer Posted By |
|
Question Submitted By :: Kanaka |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Yes you can always create a test script without a test generator  |
| Neha |
| |
| |
| Answer | yes, u can create the QTP script without step generator, u
can create by using recording option and manually.  |
| Ramu |
| |
| |
| Answer | Yes, u can create the script without a step generator, u
can create by using manually.  |
| Aze |
| |
| |
| Answer | Yes,we can create the script without step generator. Step
generator is a Additional feature for the people who are
new to QTP. Generally script will be generated using any
one of the following methods.
- Recording method
- Manual script writing method(Using Object repository)
- Descriptive programing method(Without using Object
repository0  |
| Siraz Shaik |
| |
| |
| Question |
Can we use same virtual objects in many number of tests? |
Rank |
Answer Posted By |
|
Question Submitted By :: Kanaka |
| This Interview Question Asked @ TCS |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Yes, we can use same virtual objects in any number of tests.
Once any object changed as virtual object that information
will be saved in virtual object manager. Until the same
virtual object exist, we can use those virtual objects in
any number of tests.  |
| Siraj Shaik |
| |
| |
| Question |
Where virtual objects stores results? |
Rank |
Answer Posted By |
|
Question Submitted By :: Kanaka |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | virtual object wizard  |
| Arunsingh |
| |
| |
| Answer | Virtual objects information is stored in Object Repository
only but not in Virtual Object Wizard. Virtual Object
Wizard is used to configure the virtual objects as Standard
Objects so as to idetifiable by the QTP tool.
If any other answer is there please post it.
Thanx,
Jayachander L
Software Test Engineer  |
| Jayachander Lakavath |
| |
| |
| Answer | As per my knowledge, All the information related to virtual
object will be stored in virtual object manager.  |
| Siraj Shaik |
| |
| |
| Question |
what's the o/p
int main(int n, char *argv[])
{
char *s= *++argv;
puts(s);
exit(0);
}
|
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
| This Interview Question Asked @ Motorola |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | first command line argument
lets say..
exe for above prog is a.out
execute command
a.out arg1 arg2 arg3
then out put will be arg1  |
| Sreed |
| |
| |
| Question |
Can I concatenate various datasets whose organization are
different from each other. Lets say I want to cancatenate a
PDS file, a PS file, a GDG file etc. Can You do that ??
If yes, how ? is there any separate Utility to do so ??? |
Rank |
Answer Posted By |
|
Question Submitted By :: Islam |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Nope. We Cant.  |
| Kavitha |
| |
| |
| Answer | We can convert the GDG file to a disk file and can use
append "A" for concatenation. Try this out!!! Please let me
know if it works fine by sending an e-mai...  |
| Premalatha.m |
| |
| |
| Answer | Converting to disk file in the sense, we have to copy that
GDG file to a disk file using the sort utility which
specify "sORT FIELDS = COPY". My email-id is
prem_dev86@rediffmail.com.  |
| Premalatha.m |
| |
| |
| Answer | Test this code
//MYJOB1 JOB
(,L3),'MRJTEST',MSGCLASS=X,NOTIFY=&SYSUID,CLASS=B
//*
//STEP01 EXEC
PGM=SORT
//SYSOUT DD
SYSOUT=*
//*
//* *** INPUT PRINT FILE
***
//SORTIN DD DSN=&SYSUID..TESTGDG
(0),DISP=SHR
// DD
DSN=&SYSUID..EMPYT,DISP=SHR
// DD DSN=&SYSUID..TESTPDS
(TEST1),DISP=SHR
//*
//* *** OUTPUT EXTRACT FILE
***
//SORTOUT DD DSN=&SYSUID..TESTGDG
(+1),
// DISP=
(NEW,CATLG,KEEP),
// UNIT=SYSDA,SPACE=(CYL,
(10,5)),
// DCB=
(DSORG=PS,RECFM=FB,LRECL=80)
//*
//SYSIN DD
*
SORT
FIELDS=COPY
/*  |
| Ayan |
| |
| |
| Question |
can any one tell whats the difference between smoke testing
and sanity testing |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
| This Interview Question Asked @ HCL , No Where |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Smoke Testing: In this testing we will check whether all
componenets are present or not. Where as in Sanity we will
check all components are working properly or not.  |
| Ashok Kumar Gurram |
| |
| |
| Answer | Ashok Kumar Gurram,hi this is not eorrect answer as i
experience .sanity and smoke differece is there or not .i
don't know but smoke testing is checking all the major
functonalies are not checking before relaesd to the testing
team at inc or system testing level  |
| Softwaretester4u |
| |
| |
| Answer | BOTH THE ABOVE ANSWER ARE RIGHT TO CERTAIN EXTEND.LET ME RE-
PHASE IT, SMOKE TEST WE PERFORM AFTER EACH AND EVERY
BUILD,VERSION CHANGE ETC. THIS TEST WE TRY TO FIND WHETHER
ALL THE CONDITIONS IS MET AS WE DERIVED.
NOW SANITY TEST IS THE ONE WHEN WE DO THE INITIAL TESTING
OF ANY SOFTWARE WHETHER SOFTWARE IS ACCEPTABLE FOR
TESTING.GENERALLY ITS THE FIRST TEST, WHEN A QA IS CALLED
FOR AFTER THE APPLICATION IS DEVELOPPED.  |
| Uttam007 |
| |
| |
| Answer | Checking the major functionality in an application is called
smoke testing
Checking the minor functionality in an application is called
sanity testing  |
| Hari |
| |
| |
| Answer | as of my knowledge, just before relasing the build the
developers will check whether the build is proper forhter
detailed testing or not . that is known as smoke testing
and once the build is relaised the test engineers will
check whether the build knos as sanitary testing  |
| Sateesh.m |
| |
| |
| Answer | smoke testing will check all the functionalities in the
application,but not go deeply into it(otherwise we can say
BVT(Build verification test)
sanity testing wiil check major functionalities and deeply
go into that
both will prepare the application to be testable one  |
| Mayandi M |
| |
| |
| Answer | Smoke and Sanity testing both perform the same type of
checking which is whether the software should go for major
testing or not. The difference lies, Smoke Testing is
performed at developers end by the developer and in
contrast Sanity Testing is performed by the tester.
And i can gurantee this is 100% correct answer.  |
| Fundoo |
| |
| |
| Answer | According to FUNDOO who replied and I write:
"Smoke and Sanity testing both perform the same type of
checking which is whether the software should go for major
testing or not. The difference lies, Smoke Testing is
performed at developers end by the developer and in
contrast Sanity Testing is performed by the tester.
And i can gurantee this is 100% correct answer.
"
Well, Fundoo it seems you are new to QA
experience/business. Don't comment that your answer is 100%
correct answer which is distorted & Confusing to those
persons who are reading this site.
First of all: The Smoke test are done each and every time,
if the version is changed, that has nothing to do with
developers etc. Yes, are you using Automation. If yes, then
the smoke test are done by the Autoamation team(expert)
after the developers have given the software to the QA
team. Well if your company is small then it may be the
developer doing that, then in that case you are a Tester
not a QA. Regarding the Sanity Test, that is performed
first time, when the application is developed. Later you
have Smoke test and lot of regression test before you are a
new version is developed. And the cycle goes on and on. I
hope to the readers that the confussion is cleared after
reading this.  |
| Uttam |
| |
| |
| Question |
Give me the Full flow of SD and MM |
Rank |
Answer Posted By |
|
Question Submitted By :: Prasad.t |
| This Interview Question Asked @ Wipro |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | SD Flows
inquiery (va11)-> quatations(va22) ->sale order
(va01)->billing delivary (vl01)->invoice (vf01)-> vender
payments.
MM flows
----------
purchage requesation (ME51) ->purchage order (ME21)->goods
receipts (MIGO)-->Invioce verifications(MIRO)--->Venderpayment
if any requirements for you, please send to me my e-mail is
prabhu.pole@yahoo.com  |
| Prabhu Das |
| |
| |
| Answer | MM Flow
MRP Controller (MD11)--> Pur.Requisition (ME51)-->Req for
Quotation (ME41)-->Purchase Order(ME21)-->Order Confirmation
(VA01)--->Goods Receipt (MIGO)--->Material Documentation
(MB51)--->Invoice Verification (MIRO)--->Physical Inventory
documentation- Inventory counting
Cycle Counting
Clear Differences
SD FLOW
Inquiry (VA11) ---> Quotation (VA21)---> Purchase Order
(ME21)--->Order Confirmation(VA01)---> Picking List(VL36)--
>Packing List(VL02,VL01)--->Shipping (VT01)--->Invoice
(VF21,VF01)--AR  |
| Jyothirmaikaza |
| |
| |
| Question |
Hi Guys, here I am posting one question.
Wen u r working with Notepad. If it is not responding in
the middle of TEst...what u will do. |
Rank |
Answer Posted By |
|
Question Submitted By :: Nanda.d |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | WHIT I DO NOTHING . I REMOVE THIS THOUGHT FROM MY BRAIN .
AND YOU TO DO THIS...  |
| Pal |
| |
| |
| Answer | if dont have answer dont post..ok. dont post this type of
answers again pls. this is one of the interview question.
ofcourse this was occured in real time also.  |
| Nanda |
| |
| |
| Answer | There can be many answers for this one -
1. One will killing the process notepad.exe .
2.Second will be getting the text using mercury.clipboard
object and killing the notepad process .
The text copid in the clipboard can be pasted in any new
notepad window.  |
| Ashis |
| |
| |
| Answer | As notepad not responding is an unexpected event and also
this might not be the case every time, you should go for
recovery scenario.  |
| Mercy |
| |
| |
| Answer | hey guys
can u plz explain this how to kill the note pad for this
any specific function is there  |
| Rani |
| |
| |
| Answer | Hi,
Try this to Close the Notepad at RunTime,
SystemUtil.CloseProcessByName("notepad.exe")  |
| Aravindh |
| |
| |
| Answer | If notepad is not responding in the middle of the process,
No other operations can be done on notepad so simply skip
the process by putting On error resume next statement
before starting notepad operations and show remark by
displaying message box or display remark in result window.  |
| Siraj Shaik |
| |
| |
| Question |
how can u map SDLC With STLC |
Rank |
Answer Posted By |
|
Question Submitted By :: Er_jitendersaini |
| This Interview Question Asked @ Hewitt |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | sdlc means that software development life cycle.It contais
various phases for developing a software.The phases are
analysis,desin,coding,testing and maitences.In each phase
software will develop step by step.
stlc means that software testing life cycle model.It
contains various kinds of steps for testing that is test
plan,test stratigies,usecase,testcase,execution of
testcase,bugreport,log a bug, verified .This kind of all
steps used for testing.  |
| Rambalaji |
| |
| |
| Answer | HI
SDLC & STLC can be mapped thro V-Model
sun_ramprasad@yahoo.com  |
| Ramprasad.s |
| |
| |
| Answer | STLC is a part of SDLC  |
| Nayana |
| |
| |
| Answer | Yes SDLC can be maped to STLC with the help of V model.
I have tried to show it
1. Requirement Specifications ----------> Acceptance Test
Acceptance TP Cases
2. Functional design -------------------> System Test Cases
System TP
3. Detailed design ------------------->Integrated Test Cases
Integrated TP
4. Program Specifications--------------->Unit Test Cases
Unit TP
TP refers to Test Plan and not Time Pass :)
So in each of the phases of SDLC , we start planning and
writing Test Cases accordingly,this is how u map SDLC with
STLC.
Hope my answer was fruitful to you  |
| Indu Pillai |
| |
| |
|
| |
|
Back to Questions Page |