Oracle Corporation-QTP Interview Questions
Posted By Lax on April 12th, 2010 in Interviews By Company
Company Name: oracle Corporation
Location: Hyderabad
Interview Date: 10th April,10
Duration: 30min
Position: Sr. Test Engineer Automation
Experience: 3+ Yrs
Sent By: Monica
Questions:
- How to retrieve number from alphanumeric value.
- How to capture a dynamic value in Web Application
- How to get the output value from one transaction and use this output value as input of another transaction.
- What are the business process following in your project
- How to count a web table row
- What is the QC Life Cycle
- How many types of Frame work and which one you are implementing in your project
It’s our responsibility to answer to the above questions. Please Comments and answer to the questions.
Attended any interview? Please send us the questions at Sendus@stestuff.com and help your fellow test engineers.
Similar Posts:
- None Found

This post has 4 comments
July 31st, 2010
send me written Test paper question and answer to oracle in any software company
July 31st, 2010
send me various written Test paper question and answer for oracle in any software company
August 27th, 2010
Ques: How to retrieve number from alphanumeric value.
Ans: follow the below code for answer: —
Dim myvar1, myvar2, myText, muarray()
myText = “HE1L0″
For i = 1 to Len(myText)
If Asc(Mid(myText, i, 1)) >47 and Asc(Mid(myText, i, 1)) < 58 Then
myvar1 = myvar1 + Mid(myText, i, 1) + “,”
MsgBox myvar1
Else
myvar2 = myvar2 + Mid(myText, i, 1)
MsgBox myvar2
End If
Next
October 15th, 2010
Public Function AlphaCount(ByVal oldstr)
Dim strlen,str,charactercount,numcount,objRegExpr
Set objRegExpr = New regexp
objRegExpr.Pattern = “[a-zA-Z]”
objRegExpr.Global = True
strlen=Len(oldstr)
For i=1 to strlen
str=Mid(oldstr,i,1)
Set colMatches = objRegExpr.Execute(str)
If colMatches.Count Then
charactercount=charactercount+1
Else
numcount=numcount+1
End If
Next
AlphaCount=charactercount
End Function
MsgBox(AlphaCount(“111Oracle123″))