Amazing Interview Questions - Printable Version +- Micro Focus QTP (UFT) Forums (https://www.learnqtp.com/forums) +-- Forum: Micro Focus UFT (earlier known as QTP) (https://www.learnqtp.com/forums/Forum-Micro-Focus-UFT-earlier-known-as-QTP) +--- Forum: UFT / QTP Interview Questions (https://www.learnqtp.com/forums/Forum-UFT-QTP-Interview-Questions) +--- Thread: Amazing Interview Questions (/Thread-Amazing-Interview-Questions) |
Amazing Interview Questions - amanjain42 - 07-09-2013 I want to know the answers following Questions. write a script for 1. How a function can return two values.? write the code for the function.. ? 2. compare two date "10/10/2013" and "10-octomber-2013" and return true or false.? 3. Write a regular expression for dynamic 6 integer values in the expression "amanjain888073bhilwara" 4. write a script for check the content in a web table and if correct then check the check box at the end of row.? 5. write a script for identifying that multiple web browser are already open and we have to close all the browser except one browser "internet explorer"? 6. What is difference between child-objects and child-items? 7. write a script for click on a particular (15) link in a list of links (like 20 links are their in a web page) 8. how can a run time object is identified by qtp during execution of script. manual testing. 1. If their is any mistake in the "name" of visiting card, then what will be the severity and priority of this. ? 2. what will be the "verification test cases" for the gmail login page.? RE: Amazing Interview Questions - Ankur - 07-10-2013 Please write your tentative answers first, rest will follow then. RE: Amazing Interview Questions - nakulgupta18 - 08-20-2013 1. How a function can return two values.? write the code for the function.. ? Code: '''using two output parameters while defining a function Code: '''using arrays 2. compare two date "10/10/2013" and "10-octomber-2013" and return true or false.? Code: date1 = "10/10/2013" RE: Amazing Interview Questions - anu05446 - 01-27-2014 or you can use the date functional also here. Code: A="10-octomber-2013" RE: Amazing Interview Questions - anu05446 - 01-27-2014 3. "amanjain\d{4}bhilwara" sorry use the below one. "amanjain\d{6}bhilwara" |