Upload Button Icon Add office photos
Premium Employer

i

This company page is being actively managed by OpenText Technologies Team. If you also belong to the team, you can get access from here

OpenText Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

OpenText Technologies Senior Quality Assurance Engineer Interview Questions and Answers

Updated 5 Jun 2024

OpenText Technologies Senior Quality Assurance Engineer Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Java program to reverse a string
  • Ans. 

    Java program to reverse a string using StringBuilder

    • Create a StringBuilder object with the input string

    • Use the reverse() method of StringBuilder to reverse the string

    • Convert the reversed StringBuilder object back to a string using toString()

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Java program to get highest and lowest marks using hash map
  • Ans. 

    Java program using hash map to find highest and lowest marks

    • Create a hash map to store student names and their marks

    • Iterate through the hash map to find the highest and lowest marks

    • Use a variable to keep track of the highest and lowest marks

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Scenario based questions

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jan 2023. There were 6 interview rounds.

Round 1 - Assignment 

Exam in codility portal and it is toughest exam. Have to prepare Basics of Java.. it will help in creating logics.

Round 2 - Technical 

(1 Question)

  • Q1. In Technical round 01.. we have to solve coding questions(more than 2) and that have to drafted in a notepad or in online editor. They are conscious on prompts for next steps. After that, They will ask Ja...
Round 3 - Technical 

(1 Question)

  • Q1. In Technical round 2, have to solve coding questions(more than 3)in notepad and execute in online editor(getting proper output is must). they will ask on Java theory questions more deep, GIT, defect cycle...
Round 4 - Behavioral 

(1 Question)

  • Q1. This is face to face round(can be virtual as well), They will ask technical questions and they will give program to execute. They will ask us to explain codility exam program to explain and execute in live...
Round 5 - Behavioral 

(1 Question)

  • Q1. Once all 4 rounds are done then we will chance to attend this, They will explain roles and responsibilities of the particular role. Then they will shoot one more Technical question or one coding question ...
Round 6 - Behavioral 

(1 Question)

  • Q1. They will check all round results and shoot some Managerial questions and behavioral questions. if they are satisfied then they will release offer.

Senior Quality Assurance Engineer Interview Questions Asked at Other Companies

Q1. How do you manage project compliance from the client's perspectiv ... read more
Q2. Quality standards which we are following in mobile manufacturing.
Q3. What will you do when a customer complaint is reported?
Q4. What is the difference between findElement and findElements?
Q5. What about the Pulverizing unit knowledge?

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about OpenText Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Approached by Company and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - System test 

(1 Question)

  • Q1. Advantage and disadvantage of framework.
  • Ans. 

    Frameworks provide structure and pre-built components for software development, but can also limit flexibility and require learning curve.

    • Advantage: Provides structure and pre-built components for faster development

    • Advantage: Can improve code quality and maintainability

    • Disadvantage: Can limit flexibility and customization

    • Disadvantage: Requires learning curve and potential dependency issues

    • Example: ReactJS provides a fr...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is Oops? Advantage and disadvantage
  • Ans. 

    Oops stands for Object-Oriented Programming. It is a programming paradigm that uses objects to represent real-world entities.

    • Advantages: code reusability, modularity, encapsulation, inheritance, polymorphism

    • Disadvantages: complexity, steep learning curve, performance overhead

    • Example: creating a class 'Car' with properties like 'make', 'model', and 'year', and methods like 'start_engine' and 'stop_engine'

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics in server side and client side coding

Skills evaluated in this interview

I applied via Company Website and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. Core Java - OOPS features, Abstract classes and Interface, Inner Classes, String and Object Class, Equals and HashCode methods, Runtime and Compile time exception, Method overloading and overriding, Cus...

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Clear Core java concepts firmly
2. Basic DB queries
3. Basic Unix commands

I applied via Campus Placement and was interviewed before Nov 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Numerical and logical aptitude test

Round 3 - Coding Test 

There are 5 rounds on datastructure and algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice hr and all team is suportive
Good and smoth interview experiance

I appeared for an interview before Nov 2020.

Round 1 - Telephonic Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

The interview was with a Korean employee. 

  • Q1. 

    Bridge in Graph Problem Statement

    Given an undirected graph with V vertices and E edges, your task is to find all the bridges in this graph. A bridge is an edge that, when removed, increases the number of...

  • Ans. 

    Find all the bridges in an undirected graph.

    • Use Tarjan's algorithm to find bridges in the graph.

    • A bridge is an edge whose removal increases the number of connected components.

    • Check for bridges by removing each edge and checking the number of connected components.

    • Return the edges that are bridges in non-decreasing order.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

Interviewer was an Indian employee. 

  • Q1. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The goal is to identify the longest palindromic substring within this string. In cases where multiple palind...

  • Ans. 

    Identify the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes

    • Keep track of the longest palindrome found

    • Return the longest palindrome with the smallest start index

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Hard

Interviewer was an Indian employee.

  • Q1. 

    Alien Dictionary Problem Statement

    You are provided with a sorted dictionary (by lexical order) in an alien language. Your task is to determine the character order of the alien language from this dictiona...

  • Ans. 

    Given a sorted alien dictionary in an array of strings, determine the character order of the alien language.

    • Iterate through the words in the dictionary to build a graph of character dependencies.

    • Perform a topological sort on the graph to determine the character order.

    • Return the character order as a list of characters.

  • Answered by AI
Round 4 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Hard

Interviewer was an Indian employee. 

  • Q1. 

    Problem: Ninja's Robot

    The Ninja has a robot which navigates an infinite number line starting at position 0 with an initial speed of +1. The robot follows a set of instructions which includes ‘A’ (Acceler...

  • Ans. 

    Determine the minimum length of instruction sequence for a robot to reach a given target on an infinite number line.

    • Start at position 0 with speed +1, update position and speed based on 'A' and 'R' instructions

    • For each test case, find the shortest sequence of instructions to reach the target

    • Consider both positive and negative positions for the robot

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaMust be in final yearGoogle interview preparation:Topics to prepare for the interview - Data Structures, Pointers, Trees, Graphs, Algorithms, Dynamic Programming, BacktrackingTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Do competitive coding in 1st and 2nd year.
Tip 2 : Practice basic questions before starting complex problem.
Tip 3 : Start doing mock interviews from the end of 5th semester. It gives a lot of confidence.

Application resume tips for other job seekers

Tip 1 : Adding competitive programming ranks add value.
Tip 2 : You should have some good project which you can explain nicely.

Final outcome of the interviewRejected

Skills evaluated in this interview

Intern Interview Questions & Answers

Google user image Anonymous

posted on 28 Apr 2022

I applied via LinkedIn and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was quite good

Round 2 - Assignment 

Assignment was real world based

Interview Preparation Tips

Interview preparation tips for other job seekers - do your best and try to excel basic skills.
Are these interview questions helpful?

I applied via Company Website and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

5 or 6 questions from algo and coding

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA is more important and dp, tree and graphs must be learn.

I applied via Company Website and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. They asked to calculate time complexity of any algorithm
  • Ans. 

    Time complexity measures the amount of time an algorithm takes to complete based on input size.

    • Time complexity is expressed using Big O notation (e.g., O(n), O(log n)).

    • O(1) indicates constant time, e.g., accessing an array element.

    • O(n) indicates linear time, e.g., iterating through an array.

    • O(n^2) indicates quadratic time, e.g., nested loops through an array.

    • O(log n) indicates logarithmic time, e.g., binary search in a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice is the only silver bullet to crack any interview!
Do coding of problem on notepad. Refer DS, ALGO related problem from GeeksOfGeeks site.

And 1 more thing coding is an art and please do not mug up the code, just try to understand the tricks, logic and solution and use those tricks and solution to solve any coding problem.

Do practice, Do practice and Do practice....nothing else

Interview Questionnaire 

2 Questions

  • Q1. Java, Constructor, String
  • Q2. OOPs concept

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic OOPs concept, Good knowledge of Core Java(Strings, Collections)

OpenText Technologies Interview FAQs

How many rounds are there in OpenText Technologies Senior Quality Assurance Engineer interview?
OpenText Technologies interview process usually has 5 rounds. The most common rounds in the OpenText Technologies interview process are Technical, Behavioral and Resume Shortlist.
How to prepare for OpenText Technologies Senior Quality Assurance Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at OpenText Technologies. The most common topics and skills that interviewers at OpenText Technologies expect are Selenium, SQL, Automation Testing, Python and Java.
What are the top questions asked in OpenText Technologies Senior Quality Assurance Engineer interview?

Some of the top questions asked at the OpenText Technologies Senior Quality Assurance Engineer interview -

  1. Java program to get highest and lowest marks using hash ...read more
  2. java program to reverse a str...read more
  3. In Technical round 2, have to solve coding questions(more than 3)in notepad and...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 3 interview experiences

Difficulty level

Hard 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Google Interview Questions
4.4
 • 899 Interviews
Amdocs Interview Questions
3.7
 • 533 Interviews
Adobe Interview Questions
3.9
 • 248 Interviews
Salesforce Interview Questions
4.0
 • 234 Interviews
Chetu Interview Questions
3.3
 • 198 Interviews
24/7 Customer Interview Questions
3.5
 • 179 Interviews
Dassault Systemes Interview Questions
3.9
 • 177 Interviews
AVASOFT Interview Questions
2.8
 • 175 Interviews
Oracle Cerner Interview Questions
3.6
 • 162 Interviews
View all
OpenText Technologies Senior Quality Assurance Engineer Salary
based on 136 salaries
₹16 L/yr - ₹25 L/yr
112% more than the average Senior Quality Assurance Engineer Salary in India
View more details

OpenText Technologies Senior Quality Assurance Engineer Reviews and Ratings

based on 12 reviews

3.2/5

Rating in categories

2.8

Skill development

3.1

Work-life balance

2.9

Salary

1.9

Job security

3.1

Company culture

2.2

Promotions

2.6

Work satisfaction

Explore 12 Reviews and Ratings
Sr. Quality Assurance Engineer

Bangalore / Bengaluru

4-7 Yrs

Not Disclosed

Sr. Quality Assurance Engineer

Bangalore / Bengaluru

5-10 Yrs

₹ 12.2-20.8 LPA

Sr. Quality Assurance Engineer

Bangalore / Bengaluru

10-12 Yrs

Not Disclosed

Explore more jobs
Software Engineer
1.1k salaries
unlock blur

₹12 L/yr - ₹21 L/yr

Senior Software Engineer
1.1k salaries
unlock blur

₹22.2 L/yr - ₹40 L/yr

Associate Software Engineer
412 salaries
unlock blur

₹7.9 L/yr - ₹13 L/yr

Lead Software Engineer
374 salaries
unlock blur

₹29.5 L/yr - ₹52 L/yr

Software Developer
261 salaries
unlock blur

₹10.9 L/yr - ₹20 L/yr

Explore more salaries
Compare OpenText Technologies with

Amdocs

3.7
Compare

Automatic Data Processing (ADP)

4.0
Compare

24/7 Customer

3.5
Compare

Google

4.4
Compare
write
Share an Interview