﻿<?phpxml version="1.0" encoding="utf-8"?>
<rss version="2.0" 
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
>
<channel>
<title>Common Interview Questions / Devin / All</title>
<link>http://commoninterview.com</link>
<description>The source for Job Interview Questions and Job Search Networking</description>
<pubDate>Mon, 08 Mar 2010 02:56:38 -0700</pubDate>
<language>en</language>
<item>
<title><![CDATA[What is a correlated sub-query? How can these queries be useful?]]></title>
<link>http://commoninterview.com/Programming_Interview_Questions/what-is-a-correlated-sub-query-how-can-these-queries-be-useful-1/</link>
<comments>http://commoninterview.com/Programming_Interview_Questions/what-is-a-correlated-sub-query-how-can-these-queries-be-useful-1/</comments>
<pubDate>Mon, 08 Mar 2010 03:56:38 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Programming Interview Questions</category>
<guid>http://commoninterview.com/Programming_Interview_Questions/what-is-a-correlated-sub-query-how-can-these-queries-be-useful-1/</guid>
<description><![CDATA[The sub-query contained in the query requests values from the outside query, creating a loop. <br/><br/>3 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What is the difference between an  OUTPUT parameter and a return parameter?]]></title>
<link>http://commoninterview.com/Programming_Interview_Questions/what-is-the-difference-between-an-output-parameter-and-a-return-parameter/</link>
<comments>http://commoninterview.com/Programming_Interview_Questions/what-is-the-difference-between-an-output-parameter-and-a-return-parameter/</comments>
<pubDate>Mon, 08 Mar 2010 03:55:45 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Programming Interview Questions</category>
<guid>http://commoninterview.com/Programming_Interview_Questions/what-is-the-difference-between-an-output-parameter-and-a-return-parameter/</guid>
<description><![CDATA[If the applicant is able to answer this question correctly, the odds are good that they have some experience working with stored procedures.<br />A return parameter is always returned by a stored procedure, and it is meant to indicate the success or failure of the stored procedure. The return parameter is always an INT data type.<br />An OUTPUT parameter is designated specifically by the developer, and it can return other types of data, such as characters and numeric values. (There are some limitations on the data types that can be used as output parameters.) You can use multiple OUTPUT parameters in a stored procedure, whereas you can only use one return parameter.<br /><br/><br/>2 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What can be used to ensure that a field in a table only accepts a certain range of values?]]></title>
<link>http://commoninterview.com/Programming_Interview_Questions/what-can-be-used-to-ensure-that-a-field-in-a-table-only-accepts-a-certain-range-of-values/</link>
<comments>http://commoninterview.com/Programming_Interview_Questions/what-can-be-used-to-ensure-that-a-field-in-a-table-only-accepts-a-certain-range-of-values/</comments>
<pubDate>Mon, 08 Mar 2010 03:54:45 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Programming Interview Questions</category>
<guid>http://commoninterview.com/Programming_Interview_Questions/what-can-be-used-to-ensure-that-a-field-in-a-table-only-accepts-a-certain-range-of-values/</guid>
<description><![CDATA[The answer you want to hear is a Check constraint, which is defined on a database table that limits the values entered into that column. These constraints are relatively easy to create, and they are the recommended type for enforcing domain integrity in SQL Server.<br />Triggers can also be used to restrict the values accepted in a field in a database table, but this solution requires the trigger to be defined on the table, which can hinder performance in certain situations. For this reason, Microsoft recommends Check constraints over all other methods for restricting domain integrity.<br /><br/><br/>2 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What is a performance consideration of having too many indexes on a production online transaction processing (OLTP)table]]></title>
<link>http://commoninterview.com/Programming_Interview_Questions/what-is-a-performance-consideration-of-having-too-many-indexes-on-a-production-online-transaction-processing-oltptable/</link>
<comments>http://commoninterview.com/Programming_Interview_Questions/what-is-a-performance-consideration-of-having-too-many-indexes-on-a-production-online-transaction-processing-oltptable/</comments>
<pubDate>Mon, 08 Mar 2010 03:53:40 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Programming Interview Questions</category>
<guid>http://commoninterview.com/Programming_Interview_Questions/what-is-a-performance-consideration-of-having-too-many-indexes-on-a-production-online-transaction-processing-oltptable/</guid>
<description><![CDATA[You are looking for the applicant to make some reference regarding data manipulations. The more indexes on a table, the more time it takes for the database engine to update, insert, or delete data, as the indexes all have to be maintained as the data manipulation occurs.<br/><br/>3 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[How can you ensure that a table named TableB with a field named Fld1 will only have those values in the Fld1 field that ]]></title>
<link>http://commoninterview.com/Programming_Interview_Questions/how-can-you-ensure-that-a-table-named-tableb-with-a-field-named-fld1-will-only-have-those-values-in-the-fld1-field-that-/</link>
<comments>http://commoninterview.com/Programming_Interview_Questions/how-can-you-ensure-that-a-table-named-tableb-with-a-field-named-fld1-will-only-have-those-values-in-the-fld1-field-that-/</comments>
<pubDate>Mon, 08 Mar 2010 03:51:25 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Programming Interview Questions</category>
<guid>http://commoninterview.com/Programming_Interview_Questions/how-can-you-ensure-that-a-table-named-tableb-with-a-field-named-fld1-will-only-have-those-values-in-the-fld1-field-that-/</guid>
<description><![CDATA[This relationship related question has two potential answers. The first answer (and the one that you want to hear) is the use of foreign key constraints. A foreign key constraint is used to maintain referential integrity. It is used to ensure that a field in a table will only hold values that are already defined in another field in a different (or the same) table. That field is the candidate key (usually a primary key of the other table).<br /><br />The other option is the use of triggers. Triggers can be used to ensure the same effect of constraints in a roundabout way, but it is much more difficult to set up and maintain, and the performance is typically worse. Because of this, Microsoft recommends that developers use foreign key constraints instead of triggers for maintaining referential integrity.<br /><br/><br/>2 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What are triggers? What are the different types of triggers in SQL Server 2000?]]></title>
<link>http://commoninterview.com/Programming_Interview_Questions/what-are-triggers-what-are-the-different-types-of-triggers-in-sql-server-2000/</link>
<comments>http://commoninterview.com/Programming_Interview_Questions/what-are-triggers-what-are-the-different-types-of-triggers-in-sql-server-2000/</comments>
<pubDate>Mon, 08 Mar 2010 03:44:32 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Programming Interview Questions</category>
<guid>http://commoninterview.com/Programming_Interview_Questions/what-are-triggers-what-are-the-different-types-of-triggers-in-sql-server-2000/</guid>
<description><![CDATA[It's very beneficial for a potential database developer to know the types of triggers available, and how to implement them.<br /><br />A trigger is a specialized type of stored procedure that is bound to a table or view in SQL Server 2000. In SQL Server 2000, there are INSTEAD-OF triggers and AFTER triggers. INSTEAD-OF triggers are procedures that execute in place of a Data Manipulation Language (DML) statement on a table. For example, if I have an INSTEAD-OF-UPDATE trigger on TableA, and I execute an update statement on that table, the code in the INSTEAD-OF-UPDATE trigger will execute instead of the update statement that I executed.<br /><br />An AFTER trigger executes after a DML statement has taken place in the database. These types of triggers are very handy for auditing data changes that have occurred in your database tables.<br /><br/><br/>3 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What is a primary key? What is a foreign key?]]></title>
<link>http://commoninterview.com/Programming_Interview_Questions/what-is-a-primary-key-what-is-a-foreign-key/</link>
<comments>http://commoninterview.com/Programming_Interview_Questions/what-is-a-primary-key-what-is-a-foreign-key/</comments>
<pubDate>Mon, 08 Mar 2010 03:43:28 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Programming Interview Questions</category>
<guid>http://commoninterview.com/Programming_Interview_Questions/what-is-a-primary-key-what-is-a-foreign-key/</guid>
<description><![CDATA[A primary key is the field(s) in a table that uniquely defines the row in the table; the values in the primary key are always unique. A foreign key is a constraint that establishes a relationship between two tables. This relationship typically involves the primary key field(s) from one table with an adjoining set of field(s) in another table (although it could be the same table). The adjoining field(s) is the foreign key.<br/><br/>4 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What does NULL mean?]]></title>
<link>http://commoninterview.com/Programming_Interview_Questions/what-does-null-mean/</link>
<comments>http://commoninterview.com/Programming_Interview_Questions/what-does-null-mean/</comments>
<pubDate>Mon, 08 Mar 2010 03:40:29 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Programming Interview Questions</category>
<guid>http://commoninterview.com/Programming_Interview_Questions/what-does-null-mean/</guid>
<description><![CDATA[The value NULL is a very tricky subject in the database world, so don't be surprised if several applicants trip up on this question.<br />The value NULL means UNKNOWN; it does not mean '' (empty string). Assuming ANSI_NULLS are on in your SQL Server database, which they are by default, any comparison to the value NULL will yield the value NULL. You cannot compare any value with an UNKNOWN value and logically expect to get an answer. You must use the IS NULL operator instead.<br /><br/><br/>4 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What is an index? What types of indexes are available in SQL Server 2000?]]></title>
<link>http://commoninterview.com/Programming_Interview_Questions/what-is-an-index-what-types-of-indexes-are-available-in-sql-server-2000/</link>
<comments>http://commoninterview.com/Programming_Interview_Questions/what-is-an-index-what-types-of-indexes-are-available-in-sql-server-2000/</comments>
<pubDate>Mon, 08 Mar 2010 03:39:49 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Programming Interview Questions</category>
<guid>http://commoninterview.com/Programming_Interview_Questions/what-is-an-index-what-types-of-indexes-are-available-in-sql-server-2000/</guid>
<description><![CDATA[Any experienced database developer should be able to answer this question with ease. Some of the less-experienced developers will be able to answer it, but with a little less clarity.<br /><br />In its most simple terms, an index is a data structure used to provide quick access to data in a database table or view. In SQL Server, they come in two flavors: clustered and non-clustered. Clustered indexes store the data at the leaf level of the index. This means that whichever field(s) in your table are included in the clustered index, they will be stored in an orderly fashion in the table. Because of this sorting, you can only have one clustered index per table. Non-clustered indexes contain a row identifier at the leaf level of the index. This row identifier is a pointer to a location of the data on the disk. This allows you to have more than one non-clustered index per table.<br /><br/><br/>3 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Can you give me an overview of some of the database objects available for use in SQL Server 2000?]]></title>
<link>http://commoninterview.com/Programming_Interview_Questions/can-you-give-me-an-overview-of-some-of-the-database-objects-available-for-use-in-sql-server-2000/</link>
<comments>http://commoninterview.com/Programming_Interview_Questions/can-you-give-me-an-overview-of-some-of-the-database-objects-available-for-use-in-sql-server-2000/</comments>
<pubDate>Mon, 08 Mar 2010 03:38:59 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Programming Interview Questions</category>
<guid>http://commoninterview.com/Programming_Interview_Questions/can-you-give-me-an-overview-of-some-of-the-database-objects-available-for-use-in-sql-server-2000/</guid>
<description><![CDATA[You are looking for objects such as: tables, views, user-defined functions, and stored procedures; it's even better if they mention additional objects such as triggers. It's not a good sign if an applicant cannot answer this basic question.<br/><br/>3 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What is Isolation Level? ]]></title>
<link>http://commoninterview.com/Programming_Interview_Questions/what-is-isolation-level-/</link>
<comments>http://commoninterview.com/Programming_Interview_Questions/what-is-isolation-level-/</comments>
<pubDate>Mon, 08 Mar 2010 03:38:11 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Programming Interview Questions</category>
<guid>http://commoninterview.com/Programming_Interview_Questions/what-is-isolation-level-/</guid>
<description><![CDATA[An isolation level determines the degree of isolation of data between concurrent transactions. The default SQL Server isolation level is Read Committed. A lower isolation level increases concurrency, but at the expense of data correctness. Conversely, a higher isolation level ensures that data is correct, but can affect concurrency negatively. The isolation level required by an application determines the locking behavior SQL Server uses. SQL-92 defines the following isolation levels, all of which are supported by SQL Server: <br />Read uncommitted (the lowest level where transactions are isolated only enough to ensure that physically corrupt data is not read). <br />Read committed (SQL Server default level). <br />Repeatable read. <br />Serializable (the highest level, where transactions are completely isolated from one another). <br /><br/><br/>1 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What is Transaction? ]]></title>
<link>http://commoninterview.com/Programming_Interview_Questions/what-is-transaction--3/</link>
<comments>http://commoninterview.com/Programming_Interview_Questions/what-is-transaction--3/</comments>
<pubDate>Mon, 08 Mar 2010 03:36:50 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Programming Interview Questions</category>
<guid>http://commoninterview.com/Programming_Interview_Questions/what-is-transaction--3/</guid>
<description><![CDATA[A transaction is a sequence of operations performed as a single logical unit of work. A logical unit of work must exhibit four properties, called the ACID (Atomicity, Consistency, Isolation, and Durability) properties, to qualify as a transaction. <br/><br/>1 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What are the constraints ? ]]></title>
<link>http://commoninterview.com/Programming_Interview_Questions/what-are-the-constraints-/</link>
<comments>http://commoninterview.com/Programming_Interview_Questions/what-are-the-constraints-/</comments>
<pubDate>Mon, 08 Mar 2010 03:35:53 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Programming Interview Questions</category>
<guid>http://commoninterview.com/Programming_Interview_Questions/what-are-the-constraints-/</guid>
<description><![CDATA[Table Constraints define rules regarding the values allowed in columns and are the standard mechanism for enforcing integrity. SQL Server 2000 supports five classes of constraints. NOT NULL , CHECK, UNIQUE, PRIMARY KEY, FOREIGN KEY. <br/><br/>1 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What is DTS? ]]></title>
<link>http://commoninterview.com/Programming_Interview_Questions/what-is-dts-/</link>
<comments>http://commoninterview.com/Programming_Interview_Questions/what-is-dts-/</comments>
<pubDate>Mon, 08 Mar 2010 03:34:52 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Programming Interview Questions</category>
<guid>http://commoninterview.com/Programming_Interview_Questions/what-is-dts-/</guid>
<description><![CDATA[Microsoft® SQL Server™ 2000 Data Transformation Services (DTS) is a set of graphical tools and programmable objects that lets you extract, transform, and consolidate data from disparate sources into single or multiple destinations. <br/><br/>1 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What is DTC? ]]></title>
<link>http://commoninterview.com/Programming_Interview_Questions/what-is-dtc-/</link>
<comments>http://commoninterview.com/Programming_Interview_Questions/what-is-dtc-/</comments>
<pubDate>Mon, 08 Mar 2010 03:33:51 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Programming Interview Questions</category>
<guid>http://commoninterview.com/Programming_Interview_Questions/what-is-dtc-/</guid>
<description><![CDATA[The Microsoft Distributed Transaction Coordinator (MS DTC) is a transaction manager that allows client applications to include several different sources of data in one transaction. MS DTC coordinates committing the distributed transaction across all the servers enlisted in the transaction. <br/><br/>4 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What is a LiveLock? ]]></title>
<link>http://commoninterview.com/Programming_Interview_Questions/what-is-a-livelock-/</link>
<comments>http://commoninterview.com/Programming_Interview_Questions/what-is-a-livelock-/</comments>
<pubDate>Mon, 08 Mar 2010 03:32:48 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Programming Interview Questions</category>
<guid>http://commoninterview.com/Programming_Interview_Questions/what-is-a-livelock-/</guid>
<description><![CDATA[A livelock is one, where a request for an exclusive lock is repeatedly denied because a series of overlapping shared locks keeps interfering. SQL Server detects the situation after four denials and refuses further shared locks. A livelock also occurs when read transactions monopolize a table or page, forcing a write transaction to wait indefinitely. <br/><br/>2 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What is a deadlock? ]]></title>
<link>http://commoninterview.com/Programming_Interview_Questions/what-is-a-deadlock-/</link>
<comments>http://commoninterview.com/Programming_Interview_Questions/what-is-a-deadlock-/</comments>
<pubDate>Mon, 08 Mar 2010 03:31:41 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Programming Interview Questions</category>
<guid>http://commoninterview.com/Programming_Interview_Questions/what-is-a-deadlock-/</guid>
<description><![CDATA[Deadlock is a situation when two processes, each having a lock on one piece of data, attempt to acquire a lock on the other's piece. Each process would wait indefinitely for the other to release the lock, unless one of the user processes is terminated. SQL Server detects deadlocks and terminates one user's process<br/><br/>4 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What's the difference between DELETE TABLE and TRUNCATE TABLE commands? ]]></title>
<link>http://commoninterview.com/Programming_Interview_Questions/whats-the-difference-between-delete-table-and-truncate-table-commands-/</link>
<comments>http://commoninterview.com/Programming_Interview_Questions/whats-the-difference-between-delete-table-and-truncate-table-commands-/</comments>
<pubDate>Wed, 03 Mar 2010 20:23:02 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Programming Interview Questions</category>
<guid>http://commoninterview.com/Programming_Interview_Questions/whats-the-difference-between-delete-table-and-truncate-table-commands-/</guid>
<description><![CDATA[DELETE TABLE is a logged operation, so the deletion of each row gets logged in the transaction log, which makes it slow. TRUNCATE TABLE also deletes all the rows in a table, but it won't log the deletion of each row, instead it logs the deallocation of the data pages of the table, which makes it faster. Of course, TRUNCATE TABLE can be rolled back. <br/><br/>2 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[How to find 6th highest salary from Employee table?]]></title>
<link>http://commoninterview.com/Programming_Interview_Questions/how-to-find-6th-highest-salary-from-employee-table/</link>
<comments>http://commoninterview.com/Programming_Interview_Questions/how-to-find-6th-highest-salary-from-employee-table/</comments>
<pubDate>Wed, 03 Mar 2010 20:21:20 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Programming Interview Questions</category>
<guid>http://commoninterview.com/Programming_Interview_Questions/how-to-find-6th-highest-salary-from-employee-table/</guid>
<description><![CDATA[SELECT TOP 1 salary FROM (SELECT DISTINCT TOP 6 salary FROM employee<br />	ORDER BY salary DESC) a ORDER BY salary <br /><br/><br/>1 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What’s the difference between a primary key and a unique key? ]]></title>
<link>http://commoninterview.com/Programming_Interview_Questions/what’s-the-difference-between-a-primary-key-and-a-unique-key-/</link>
<comments>http://commoninterview.com/Programming_Interview_Questions/what’s-the-difference-between-a-primary-key-and-a-unique-key-/</comments>
<pubDate>Wed, 03 Mar 2010 20:18:16 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Programming Interview Questions</category>
<guid>http://commoninterview.com/Programming_Interview_Questions/what’s-the-difference-between-a-primary-key-and-a-unique-key-/</guid>
<description><![CDATA[Both primary key and unique enforce uniqueness of the column on which they are defined. But by default primary key creates a clustered index on the column, where are unique creates a non-clustered index by default. Another major difference is that, primary key doesn't allow NULLs, but unique key allows one NULL only. <br/><br/>2 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Write an SQL Query to Delete Duplicate records from a table using ROWID?]]></title>
<link>http://commoninterview.com/Programming_Interview_Questions/write-an-sql-query-to-delete-duplicate-records-from-a-table-using-rowid/</link>
<comments>http://commoninterview.com/Programming_Interview_Questions/write-an-sql-query-to-delete-duplicate-records-from-a-table-using-rowid/</comments>
<pubDate>Fri, 19 Feb 2010 05:28:19 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Programming Interview Questions</category>
<guid>http://commoninterview.com/Programming_Interview_Questions/write-an-sql-query-to-delete-duplicate-records-from-a-table-using-rowid/</guid>
<description><![CDATA[A question where every coder/DBA/QA and Tester should now about<br/><br/>2 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Tell me about yourself]]></title>
<link>http://commoninterview.com/general_questions/tell-me-about-yourself/</link>
<comments>http://commoninterview.com/general_questions/tell-me-about-yourself/</comments>
<pubDate>Mon, 08 Feb 2010 04:49:12 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>General Questions</category>
<guid>http://commoninterview.com/general_questions/tell-me-about-yourself/</guid>
<description><![CDATA[Tell me about yourself!<br/><br/>2 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What questions do you have about the job ]]></title>
<link>http://commoninterview.com/general_questions/what-questions-do-you-have-about-the-job--1/</link>
<comments>http://commoninterview.com/general_questions/what-questions-do-you-have-about-the-job--1/</comments>
<pubDate>Fri, 05 Feb 2010 16:58:02 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>General Questions</category>
<guid>http://commoninterview.com/general_questions/what-questions-do-you-have-about-the-job--1/</guid>
<description><![CDATA[This a standard question being asked at every interview.  You need to be prepared to know about the job rather than just awaiting for job order.  <br /><br />The recruiter would be interested in knowing your thoughts about the job, its security, etc.<br/><br/>2 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What is the use of Text output value in QTP?   ]]></title>
<link>http://commoninterview.com/Testing_Interview_Questions/what-is-the-use-of-text-output-value-in-qtp--1/</link>
<comments>http://commoninterview.com/Testing_Interview_Questions/what-is-the-use-of-text-output-value-in-qtp--1/</comments>
<pubDate>Fri, 08 Jan 2010 07:18:30 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Testing and QA Interview Questions</category>
<guid>http://commoninterview.com/Testing_Interview_Questions/what-is-the-use-of-text-output-value-in-qtp--1/</guid>
<description><![CDATA[Answer posted by shreethik on 2005-06-09 08:36:38: Output values enable to view the values that the application talkes during run time.When paramaterised, the values change for each iteration.Thus by creating output values, we can capture the values that the application takes for each run and output<br /><br />[Source: JAGAN MOHAN "Interview questions bible"] <br /><br/><br/>1 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Explain the keyword createobject with an example.  ]]></title>
<link>http://commoninterview.com/Testing_Interview_Questions/explain-the-keyword-createobject-with-an-example--/</link>
<comments>http://commoninterview.com/Testing_Interview_Questions/explain-the-keyword-createobject-with-an-example--/</comments>
<pubDate>Fri, 08 Jan 2010 07:16:54 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Testing and QA Interview Questions</category>
<guid>http://commoninterview.com/Testing_Interview_Questions/explain-the-keyword-createobject-with-an-example--/</guid>
<description><![CDATA[Createobject:Creates and returns a reference to an Automation object.Example:Dim ExcelSheetSet ExcelSheet = CreateObject("Excel.Sheet")<br /><br />[Source: JAGAN MOHAN "Interview questions bible"] <br /><br/><br/>1 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Give me an example where you have used a COM interface in your QTP project?  ]]></title>
<link>http://commoninterview.com/Testing_Interview_Questions/give-me-an-example-where-you-have-used-a-com-interface-in-your-qtp-project-/</link>
<comments>http://commoninterview.com/Testing_Interview_Questions/give-me-an-example-where-you-have-used-a-com-interface-in-your-qtp-project-/</comments>
<pubDate>Fri, 08 Jan 2010 07:16:52 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Testing and QA Interview Questions</category>
<guid>http://commoninterview.com/Testing_Interview_Questions/give-me-an-example-where-you-have-used-a-com-interface-in-your-qtp-project-/</guid>
<description><![CDATA[com inteface appears in the scenario of front end and back end.for eg:if you r using oracle as back end and front end as VB or any language then for better compatibility we will go for an interface.of which COM wil be one among those intefaces.<br /><br />[Source: JAGAN MOHAN "Interview questions bible"] <br /><br/><br/>1 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Few basic questions on commonly used Excel VBA functions.  ]]></title>
<link>http://commoninterview.com/Testing_Interview_Questions/few-basic-questions-on-commonly-used-excel-vba-functions--/</link>
<comments>http://commoninterview.com/Testing_Interview_Questions/few-basic-questions-on-commonly-used-excel-vba-functions--/</comments>
<pubDate>Fri, 08 Jan 2010 07:14:29 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Testing and QA Interview Questions</category>
<guid>http://commoninterview.com/Testing_Interview_Questions/few-basic-questions-on-commonly-used-excel-vba-functions--/</guid>
<description><![CDATA[common functions are:  Coloring the cell Auto fit cell setting navigation from link in one cell to other saving <br /> <br />[Source: JAGAN MOHAN "Interview questions bible"] <br /><br/><br/>1 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Explain what the difference between Shared Repository and Per_Action Repository  ]]></title>
<link>http://commoninterview.com/Testing_Interview_Questions/explain-what-the-difference-between-shared-repository-and-per-action-repository-/</link>
<comments>http://commoninterview.com/Testing_Interview_Questions/explain-what-the-difference-between-shared-repository-and-per-action-repository-/</comments>
<pubDate>Fri, 08 Jan 2010 07:13:13 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Testing and QA Interview Questions</category>
<guid>http://commoninterview.com/Testing_Interview_Questions/explain-what-the-difference-between-shared-repository-and-per-action-repository-/</guid>
<description><![CDATA[In Shared reporsitory, one object is used in more than one actions and in per action reporsitory, everytime in every action, objects are stored differently and are not shared.<br /><br />[Source: JAGAN MOHAN "Interview questions bible"] <br /><br/><br/>1 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Discuss QTP Environment.  ]]></title>
<link>http://commoninterview.com/Testing_Interview_Questions/discuss-qtp-environment--/</link>
<comments>http://commoninterview.com/Testing_Interview_Questions/discuss-qtp-environment--/</comments>
<pubDate>Fri, 08 Jan 2010 07:13:11 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Testing and QA Interview Questions</category>
<guid>http://commoninterview.com/Testing_Interview_Questions/discuss-qtp-environment--/</guid>
<description><![CDATA[QuickTest Pro environment using the graphical interface and ActiveScreen technologies - A testing process for creating test scripts, relating manual test requirements to automated verification features - Data driving to use several sets of data using one test script. <br /><br />[Source: JAGAN MOHAN "Interview questions bible"] <br /><br/><br/>1 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What is the difference between Call to Action and Copy Action.?   ]]></title>
<link>http://commoninterview.com/Testing_Interview_Questions/what-is-the-difference-between-call-to-action-and-copy-action-/</link>
<comments>http://commoninterview.com/Testing_Interview_Questions/what-is-the-difference-between-call-to-action-and-copy-action-/</comments>
<pubDate>Fri, 08 Jan 2010 07:11:23 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Testing and QA Interview Questions</category>
<guid>http://commoninterview.com/Testing_Interview_Questions/what-is-the-difference-between-call-to-action-and-copy-action-/</guid>
<description><![CDATA[when u insert a call to action,they r read only in the calling test.It can be modified in the original test.where as come to copy action,you can make changes to the copied action,your changes will not effect the original action where it created.<br /><br />[Source: JAGAN MOHAN "Interview questions bible"] <br /><br/><br/>1 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Explain the concept of how QTP identifies object.  ]]></title>
<link>http://commoninterview.com/Testing_Interview_Questions/explain-the-concept-of-how-qtp-identifies-object--/</link>
<comments>http://commoninterview.com/Testing_Interview_Questions/explain-the-concept-of-how-qtp-identifies-object--/</comments>
<pubDate>Fri, 08 Jan 2010 07:10:07 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Testing and QA Interview Questions</category>
<guid>http://commoninterview.com/Testing_Interview_Questions/explain-the-concept-of-how-qtp-identifies-object--/</guid>
<description><![CDATA[During recording qtp looks at the object and stores it as test object.For each test object QT learns a set of default properties called mandatory properties,and look at the rest of the objects to check whether this properties are enough to uniquely identify the object.  During test run,QT<br /><br />[Source: JAGAN MOHAN "Interview questions bible"] <br /><br/><br/>1 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[Differentiate the two Object Repository Types of QTP.   ]]></title>
<link>http://commoninterview.com/Testing_Interview_Questions/differentiate-the-two-object-repository-types-of-qtp--1/</link>
<comments>http://commoninterview.com/Testing_Interview_Questions/differentiate-the-two-object-repository-types-of-qtp--1/</comments>
<pubDate>Fri, 08 Jan 2010 07:08:57 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Testing and QA Interview Questions</category>
<guid>http://commoninterview.com/Testing_Interview_Questions/differentiate-the-two-object-repository-types-of-qtp--1/</guid>
<description><![CDATA[In Qtp there are 2 object repositories, they are1.Shared Object Repository2.Per Action Mode,by default it's per action mode.we will use shared OR for calling a particular action,it's like calling external libraries.we will use per action for a particular action ie, for one action only.<br /><br />[Source: JAGAN MOHAN "Interview questions bible"] <br /><br/><br/>1 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What projects have you used WinRunner on? Tell me about some of the challenges that arose and how you  ]]></title>
<link>http://commoninterview.com/Testing_Interview_Questions/what-projects-have-you-used-winrunner-on-tell-me-about-some-of-the-challenges-that-arose-and-how-you--1/</link>
<comments>http://commoninterview.com/Testing_Interview_Questions/what-projects-have-you-used-winrunner-on-tell-me-about-some-of-the-challenges-that-arose-and-how-you--1/</comments>
<pubDate>Fri, 08 Jan 2010 07:08:23 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Testing and QA Interview Questions</category>
<guid>http://commoninterview.com/Testing_Interview_Questions/what-projects-have-you-used-winrunner-on-tell-me-about-some-of-the-challenges-that-arose-and-how-you--1/</guid>
<description><![CDATA[pbs :WR fails to identify the object in gui. If there is a non std window obk wr cannot recognize it ,we use GUI SPY for that to handle such situation<br /><br />[Source: JAGAN MOHAN "Interview questions bible"] <br /><br/><br/>1 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What are the properties you would use for identifying a browser & page when using descriptive programming  ]]></title>
<link>http://commoninterview.com/Testing_Interview_Questions/what-are-the-properties-you-would-use-for-identifying-a-browser-page-when-using-descriptive-programming-/</link>
<comments>http://commoninterview.com/Testing_Interview_Questions/what-are-the-properties-you-would-use-for-identifying-a-browser-page-when-using-descriptive-programming-/</comments>
<pubDate>Fri, 08 Jan 2010 07:06:33 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Testing and QA Interview Questions</category>
<guid>http://commoninterview.com/Testing_Interview_Questions/what-are-the-properties-you-would-use-for-identifying-a-browser-page-when-using-descriptive-programming-/</guid>
<description><![CDATA[Logical Name of BrowserLogical Name of Pagee.g. Browser("myBrowser").Page("myPage")<br /><br />[Source: JAGAN MOHAN "Interview questions bible"] <br /><br/><br/>1 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What is a Run-Time Data Table? Where can I find and view this table?   ]]></title>
<link>http://commoninterview.com/Testing_Interview_Questions/what-is-a-run-time-data-table-where-can-i-find-and-view-this-table--1/</link>
<comments>http://commoninterview.com/Testing_Interview_Questions/what-is-a-run-time-data-table-where-can-i-find-and-view-this-table--1/</comments>
<pubDate>Fri, 08 Jan 2010 07:05:18 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Testing and QA Interview Questions</category>
<guid>http://commoninterview.com/Testing_Interview_Questions/what-is-a-run-time-data-table-where-can-i-find-and-view-this-table--1/</guid>
<description><![CDATA[The test results tree also includes the table-shaped icon that displays the run-time Data Table-a table that shows the values used to run a test containing Data Table parameters or the Data Table output values retrieved from a test while application test run.<br /><br />[Source: JAGAN MOHAN "Interview questions bible"] <br /><br/><br/>1 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What is the difference between check point and output value.  ]]></title>
<link>http://commoninterview.com/Testing_Interview_Questions/what-is-the-difference-between-check-point-and-output-value--/</link>
<comments>http://commoninterview.com/Testing_Interview_Questions/what-is-the-difference-between-check-point-and-output-value--/</comments>
<pubDate>Fri, 08 Jan 2010 07:05:12 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Testing and QA Interview Questions</category>
<guid>http://commoninterview.com/Testing_Interview_Questions/what-is-the-difference-between-check-point-and-output-value--/</guid>
<description><![CDATA[additional comment on Above comment:An output value is a value retrieved during the runsession and entered into runtime table or data table subsequently it can be used as input value in your test.<br /><br />[Source: JAGAN MOHAN "Interview questions bible"] <br /><br/><br/>1 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[How the exception handling can be done using QTP  ]]></title>
<link>http://commoninterview.com/Testing_Interview_Questions/how-the-exception-handling-can-be-done-using-qtp-/</link>
<comments>http://commoninterview.com/Testing_Interview_Questions/how-the-exception-handling-can-be-done-using-qtp-/</comments>
<pubDate>Fri, 08 Jan 2010 07:03:37 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Testing and QA Interview Questions</category>
<guid>http://commoninterview.com/Testing_Interview_Questions/how-the-exception-handling-can-be-done-using-qtp-/</guid>
<description><![CDATA[Recovery scenario manager provides a wizard that guides you through the defining recovery scenario. Recovery scenario has three steps 1. Triggered Events 2. Recovery steps 3. Post Recovery Test-Run <br /><br />[Source: JAGAN MOHAN "Interview questions bible"] <br /><br/><br/>1 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[What are the different scripting languages you could use when working with QTP ?  ]]></title>
<link>http://commoninterview.com/Testing_Interview_Questions/what-are-the-different-scripting-languages-you-could-use-when-working-with-qtp--/</link>
<comments>http://commoninterview.com/Testing_Interview_Questions/what-are-the-different-scripting-languages-you-could-use-when-working-with-qtp--/</comments>
<pubDate>Fri, 08 Jan 2010 07:00:55 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Testing and QA Interview Questions</category>
<guid>http://commoninterview.com/Testing_Interview_Questions/what-are-the-different-scripting-languages-you-could-use-when-working-with-qtp--/</guid>
<description><![CDATA[This will also support java script, but i hve not tries refer Quick test plus help for each function they have give code in vbs and js.<br /><br />[Source: JAGAN MOHAN "Interview questions bible"] <br /><br/><br/>1 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[How do you test SIEBEL application using QTP?  ]]></title>
<link>http://commoninterview.com/Testing_Interview_Questions/how-do-you-test-siebel-application-using-qtp--1/</link>
<comments>http://commoninterview.com/Testing_Interview_Questions/how-do-you-test-siebel-application-using-qtp--1/</comments>
<pubDate>Fri, 08 Jan 2010 07:00:06 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Testing and QA Interview Questions</category>
<guid>http://commoninterview.com/Testing_Interview_Questions/how-do-you-test-siebel-application-using-qtp--1/</guid>
<description><![CDATA[In SWE section u need to addAutomationEnable = TRUE and at the same time you need to use SWECmd= AutoOn in the URL <br /> <br />[Source: JAGAN MOHAN "Interview questions bible"] <br /><br/><br/>1 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[How to handle the exceptions using recovery secnario manager in Qtp?   ]]></title>
<link>http://commoninterview.com/Testing_Interview_Questions/how-to-handle-the-exceptions-using-recovery-secnario-manager-in-qtp-/</link>
<comments>http://commoninterview.com/Testing_Interview_Questions/how-to-handle-the-exceptions-using-recovery-secnario-manager-in-qtp-/</comments>
<pubDate>Fri, 08 Jan 2010 06:59:19 -0700</pubDate>
<dc:creator>Devin</dc:creator>
<category>Testing and QA Interview Questions</category>
<guid>http://commoninterview.com/Testing_Interview_Questions/how-to-handle-the-exceptions-using-recovery-secnario-manager-in-qtp-/</guid>
<description><![CDATA[There are 4 trigger events during which a recovery scenario should be activated. They are A pop up window appears in an opened application during the test run. A property of an object changes its state or value. A step in the test does not run successfully. An open application fails<br /><br />[Source: JAGAN MOHAN "Interview questions bible"] <br /><br/><br/>1 Vote(s) ]]></description>
</item>

</channel>
</rss>

