Interview Questions, Answers and Tutorials

Category: Uncategorized

Quality Center Multiple Choice Questions-3

21) You can view a list of alerts for a ………… entity.A) A test in the test plan tree or Test GridB) A test instance in the Execution GridC) None of aboveD) Both A) & B)22) A red flag indicates that the alert is………A) NewB) OldC) Follow upD) Urgent23) A gray flag indicates that the alert ………..A) NewB) has already been readC) Follow upD) Urgent24) A follow up flag is specific to your user login name. Anyone else viewing therecord does not see your follow up alert.A) TrueB) False 25) Quality Center assigns the image a unique file name with…

QTP Questions Set 2

11) The Information pane provides a list of…………. in the test:A) Semantic errorsB) Syntax errorsC) Common errorsD) Logic errors12) When we switch from Expert view to the Keyword view, QTP automaticallychecks for syntax errors in the test and shows them in the information pane.A) TrueB) False13) If the information pane is not open, QTP automatically opens it in case asyntax error is detected.A) TrueB) False14) ………………… provides a list of the resources that are specified in your test butcannot be found.A) Missing paneB) Missing Resources paneC) Resources paneD) Missing Items pane15) Whenever you open a test or a function library,…

Quality Center Multiple Choice Questions-1

1) Test management with Quality Center involves …. Phases.A) FourB) FiveC) SixD) Seven2) The phases of Test management with Quality Center in order are:A) Specify Releases, Specify Requirements, Plan Tests, Execute Tests, TrackDefectsB) Specify Requirements, Specify Releases, Plan Tests, Execute Tests, TrackDefectsC) Specify Requirements, Plan Tests, Specify Releases, Execute Tests, TrackDefectsD) Specify Releases, Specify Requirements, Plan Tests, Track Defects, ExecuteTests3) By creating a list of authorized users and assigning each user a password anduser group, you control the kinds of additions and modifications each user makesto the project.A) TrueB) False4) The …….determines the privileges that the user has within a…

Basic Knowledge of Game Testing

To be a game tester, you need to be an avid game player. But playing games is not enough, you need to have a flair for finding problems. A computer game is further complex than a usual software application. Mostly games are made up of collection of essential components like rendering engine, database, animations, sounds, special effects etc. The process and techniques that are normally used for software testing will also be functional for Game Testing e.g. Code Inspection, Path and Flow testing, Incremental Focus Testing etc. You have to examine each and every part of the game. For example…

4 ways to get & count objects in QTP

Imagine simple and practical QTP tasks: How to count all links on Web page? How to get them and click each link? How to get all WebEdits and check their values? I’m going to show 4 approaches how to get lists of UI controls and process them (for example get their count).As an example, I will work with links on Google Labs page. My goal is to get the list of links and count them. I’ve added Google Labs page to my Object Repository and now it looks like: I use Object Repository (OR) to simplify my demo-scripts.Since the browser & the page were added to OR, we…

QTP – How to get all Object Indentification Properties?

There are two ways how to get all properties of an object in QuickTest Professional: Manually Programmatically Use QTP Object Spy to get manually object properties.I’ve captured properties of ”Advanced Search” link from Google’s page: So, QTP Object Spy shows these values: Using QTP Object Spy you can get Run-time Object Properties and Test Object Properties. It’s possible to get these properties programatically: The GetTOProperty and GetTOProperties methods enable you to retrieve a specific property value or all the properties and values that QuickTest uses to identify an object. The GetROProperty returns the current value of the test object property from the object in the application. GetTOProperty differs from the GetROProperty method: GetTOProperty returns…

Interview questions on WinRunner

How you used WinRunner in your project? – Yes, I have been using WinRunner for creating automated scripts for GUI, functional and regression testing of the AUT. Explain WinRunner testing process? – WinRunner testing process involves six main stages Create GUI Map File so that WinRunner can recognize the GUI objects in the application being tested Create test scripts by recording, programming, or a combination of both. While recording tests, insert checkpoints where you want to check the response of the application being tested. Debug Test: run tests in Debug mode to make sure they run smoothly Run Tests: run tests in Verify mode to test…

LoadRunner interview questions

What is load testing? – Load testing is to test that if the application works fine with the loads that result from large number of simultaneous users, transactions and to determine weather it can handle peak usage periods. What is Performance testing? – Timing for both read and update transactions should be gathered to determine whether system functions are being performed in an acceptable timeframe. This should be done standalone and then in a multi user environment to determine the effect of multiple transactions on the timing of a single transaction. Did u use LoadRunner? What version? – Yes. Version 7.2. Explain the…

Software tester (SQA) interview questions

These questions are used for software tester or SQA (Software Quality Assurance) positions. Refer to The Real World of Software Testing for more information in the field. The top management was feeling that when there are any changes in the technology being used, development schedules etc, it was a waste of time to update the Test Plan. Instead, they were emphasizing that you should put your time into testing than working on the test plan. Your Project Manager asked for your opinion. You have argued that Test Plan is very important and you need to update your test plan from time to…

QTP Hackers – How to decrypt encrypted (SetSecure’d) password

I will explain you how to decode an encoded password in QTP.Using QuickTest Professional and this approach, you can hack email accounts published on Internet. Are you interested? 🙂 So, continue reading this QTP tutorial for details. I’ve just recorded a simple script, which signs into Gmail. It: Fills ‘Username’ in Fills ‘Password’ in Clicks ‘Sign in’ button And the recorded QTP script is: Browser(“Gmail”).Page(“Gmail”).WebEdit(“Email”).Set “someaccount”Browser(“Gmail”).Page(“Gmail”).WebEdit(“Passwd”).SetSecure “493844a99bee0e3ab952f2e867fd08e3”Browser(“Gmail”).Page(“Gmail”).WebButton(“Sign in”).Click As you can see, QTP script is simple enough.I’ve set “someaccount” to ‘Username’ editbox. But what about ‘Password’ editbox? What value have I filled in? QTP encrypted the password using SetSecure method: WebEdit(“Passwd”).SetSecure “493844a99bee0e3ab952f2e867fd08e3” QTP Help: The SetSecure method is recorded when a password or other…