Software Testing Interview Questions at EncoraInc
Posted By Lax on November 30th, 2009 in Interviews By Company
Company Name: EncoraInc
Interview Date: 28th Nov,09
Duration: ~30mins (Telecon)
Position: Manual & QTP Engineer
Experience: 3Yrs+
Sent By: Sasmita from Hyderabad
Questions:
Here are the questions that were asked
- What is difference b/w function and sub routine?
- How will you set the Synchronization in QTP, whitout using Wait & sync.
- I have a text field having “Encorainc”, how will you get/retrieve the last 4 letters of the word “Encorainc”
- How will you write the testcases, incase the Application is not yet ready
- What is BPT
- Explain Defect Life Cycle
- What are the entries/detailes you fill when logging a defect?
- Whate is the difference between QC and mantis?
- How will you connect the database through QTP script
- If application is not supported to the QTP Recod and Palyback, what is the alternative we have to implement for the Automating it?
- How to connect QTP with QC
- How to parametrize the data in to the QTP script
- How to create the specific function which will be used across the Actions? (OR what is the difference b/w funcations created for a specific Action and across actions?)
- Without creating a DNS, how will you connect the Database.
- What is Application area entity and what are the contents of the Application Area in BPT.
- What is the difference between the Sanity and Smoke testing
- What is Regression testing
- What is the Build version
- What are the Automation Approaches
- What is ECP and Boundary value analysis.
It’s our responsibility to answer to the above questions. Please comments and answer to the questions.
Attended any interview? Please send us the questions at Contact@stestuff.com and help your fellow Test engineers.
Similar Posts:
- None Found

This post has 2 comments
May 27th, 2010
3. I have a text field having “Encorainc”, how will you get/retrieve the last 4 letters of the word “Encorainc”
To retrieve the last four letters of the word “Encorainc” we need to use the Right()Function. The script is as follows
str = “Encorainc”
str1=right(str,4)
msgbox str1
For more information please visit
http://www.kiranqa.blogspot.com
http://www.qtp4free.blogspot.com
May 27th, 2010
Hi
for this question “Without creating a DNS, how will you connect the Database.”
The answer is yes we can connect to the database with out creating a DSN name using a connection string
look at the below connectionstrings
For mysql
Driver={mySQL};server=server02;UID=sa;password=sa;APP=QuickTest Professional;database=testdb
For MS SQL
Driver={SQL Server};server=server02;UID=sa;password=sa;APP=QuickTest Professional;database=testdb
For MS SQL 2008
Driver={SQL Server Native Client 10.0};server=server02;UID=sa;password=sa;APP=QuickTest Professional;database=testdb
For more information
Please visit
http://www.kiranqa.blogspot.com
http://www.qtp4free.blogspot.com