Tag: testing

Questions Related to testing

  1. Installation Testing

  2. Gorilla Testing

  3. Exhaustive Testing

  4. End-to-End testing


Correct Option: B

Testing the application after the installation at the client place

  1. Compatibility Testing

  2. Ad Hoc Testing

  3. Accessibility Testing

  4. Beta Testing


Correct Option: D
  1. A. Action Settings

  2. B. Action Properties

  3. C. Action Run Settings

  4. D. Action Call Properties


Correct Option: B

What are the available environment variable type(s)?

  1. A. Built-in

  2. B. User-defined

  3. C. User-function

  4. D. Built-in, User-defined


Correct Option: D

AI Explanation

To answer this question, let's go through each option to understand why it is correct or incorrect:

Option A) Built-in - This option is incorrect. Built-in environment variables are provided by the operating system or programming language and are not a type of environment variable.

Option B) User-defined - This option is correct. User-defined environment variables are created by the user and can be used to store custom values or settings.

Option C) User-function - This option is incorrect. User-function is not a type of environment variable. It may refer to a user-defined function in programming, but not to a type of environment variable.

Option D) Built-in, User-defined - This option is correct. Both built-in and user-defined environment variables are available types. Built-in environment variables are provided by the operating system or programming language, while user-defined environment variables are created by the user.

The correct answer is D. This option is correct because it includes both built-in and user-defined environment variables as available types.

  1. A. Pop-up window, object state, VBScript event

  2. B. Object State, VBScript event, Application crash

  3. C. Pop-up window, object state, test run error, QTP crash

  4. D. Pop-up window, object state, test run error, application crash


Correct Option: D

How do you close the database session after examining the results of an SQL query?

  1. A. Call the ADO.Close function

  2. B. Use the close method for the RecordSet object

  3. C. Set the RecordSet and Connection objects equal to Nothing

  4. D. Use the close method for the RecordSet and Connection objects


Correct Option: D

AI Explanation

To close the database session after examining the results of an SQL query, you can use the close method for the RecordSet and Connection objects.

Option A) Call the ADO.Close function - This option is incorrect because there is no ADO.Close function. The correct method to close the RecordSet and Connection objects is by using the close method.

Option B) Use the close method for the RecordSet object - This option is incorrect because it only closes the RecordSet object, not the Connection object. Both objects need to be closed to close the database session.

Option C) Set the RecordSet and Connection objects equal to Nothing - This option is incorrect because setting the objects equal to Nothing does not necessarily close the database session. The close method should still be called on both objects.

Option D) Use the close method for the RecordSet and Connection objects - This option is correct because using the close method for both the RecordSet and Connection objects will close the database session.

Therefore, the correct answer is D.