Tuesday, July 17, 2012

Interview Question Company -1


1. What is test plan?
2. Testing Levels?
3. How to get max salary from the employee table?
4. How to read data from excel(Multiple times) and login into the application using credentials?
5. 9 balloon are there but weight only 3 times and get the minimum weight of the balloon?
6. when you login with the specific credentials for the first time it was able to login but when you login with same credential you are unable to login then how you validate those situation?
7. How to get the employee names which is starts from "C" name/letter

Thursday, July 12, 2012

Company-2 Interview Questions

1.What is framework?
2.How to get middle number of the given string?
3.How to compare excel and webtable data?
4.Write a code for convert a string horizontal to vertical?
5.How to execute lo gin script for number of times?
6.What is register user function?
7.File System Object?
8.Write program for creating excel?
9.What are the differ ace tabs in QC?
10.How to update excel with out opening,1,2,8?
11.How to get row count from the excel and global sheet?
12.What are the utility functions available ?
13.String functions in VB Script?
14.Syntax of Instr ?
15.How to retrieve links from inside cell which is in the Web table?
16.How to concatenation two strings?
17.What is Reported.Report event?
18.What is systemutil.Run and Syntax?
19.What is Run,NotRun,Fail in the QC?
20.What is child item and child object?
21.difference bw Sync,Wait, and Wait Property?
22.What is Virtual Object?
23.Action Syntax?
24.How to addsheet
25.Types of object Rep and explain both
26.Write a program to find the given "Guru Prasadu", 2nd U position and 3 rd "U" Position
27.How to Load OR file at Runtime

Company-3 Interview Questions


1.What is sytem testing,functional testing
2.if i have 100 test cases in that 25 fail.how many tc will do regression and how many will do retesting.
3.count of web edit and get child radio buttons..
4.write script for login and it should returns either true or false
5.same login function should iterate the multiple times with differences test data
6.how to call keywords in keyword driven frame work
7.how to review testcase with out application
8.seviority and priority
9.write a script for read the files for folder
10.i have 10 line of code i want to skip error upto 5 lines from 6 Th line if any error popup is there it should display?

IP Interview Questions


1 .What is the framework .
2. How to retrieve the value from  one action to another action
3. How to use Dictionary object
4. How to make case sensitive and insensitive dictionary.
5. What is Compare Mode
5. What is the system testing, Functional System and Non Function
6. What is the STLC ?
7. How to Return Object, 
8. Difference b/w Call by Value, Call By Reference
9.How to identify the Object
10. How to select Radio Group Using Child object
11. How to Create Class in VBScript
12. What is Class?
13.What is Option Explicit
14.How many records mode and Run modes has qtp?
15.How to get column count from excel sheet
16.How to close 5 browser
17.How to add recovery scenario to selected step,
18.How to add requirements in QC

How to Display the vertical string to horizontal


 Str = "Guru Prasad"
    For i =len(Str)  to 1 step-1
      Le = mid(Str,i,1)
      oTemp = Le & vbNewLine & oTemp
    Next
msgbox oTemp



How to get count of repeated word in given string Ex : "guru prasad"



str = "guruprasuadu"
Cnt =0
p=1
do while instr(p,str,"u") > 0
          Cnt = Cnt +1
p = instr(p,str,"u")+len("u")
msgbox p
loop
msgbox Cnt

How to open multiple&new tab browsers at run time



 Systemutil.Run "iexplore.exe","www.google.com"
 wait(2)
 Set oDesc = Description.Create
 oDesc("Micclass").Value = "Browser"
 Set oBrowser = Desktop.ChildObjects(oDesc)
 strBrowserName = oBrowser(0).GetROProperty("title")
 msgbox strBrowserName
 Browser("name:="&strBrowserName).Navigate "www.gmail.com"
 Browser("CreationTime:=0").OpenNewTab()