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 to manage projects compliance for clients point of view..
Q2. Quality standards which we are following in mobile manufacturing.
Q3. What will you do when customer complaint reported
Q4. What about the Pulverizing unit knowledge?
Q5. Describe 7 qc tools pfmea and process control

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Basic OOPS concept, sql questions

I applied via Campus Placement and was interviewed before Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. For java based profile, questions related to collections, usage of comparator, Class loading are asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in basics of computer science like data structure and algorithms. Have a detailed understanding of java basics

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 50 minutes
Round difficulty - Medium

Yes consist of two code and questions MCQ of ds ,algo,Linz,shell,English and DBMS
Test happens with your webcam access.

  • Q1. 

    Nth Fibonacci Number Problem

    Calculate the Nth term in the Fibonacci sequence using the formula: F(n) = F(n-1) + F(n-2) where F(1) = F(2) = 1.

    Given a number N, determine the Nth Fibonacci number.

    Input...

  • Ans. 

    Calculate the Nth Fibonacci number using the given formula and constraints.

    • Implement a function to calculate the Nth Fibonacci number using the formula F(n) = F(n-1) + F(n-2) with base cases F(1) = F(2) = 1.

    • Use dynamic programming or recursion to efficiently compute the Fibonacci number for large N values.

    • Ensure the input N is within the constraints 1 <= N <= 10000.

    • Example: For N = 5, the output should be 5 as th

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Hard

Late night around at 8 pm 
Environmental is positive.
Interviewer made me feel positive

  • Q1. 

    Priority Queue Implementation

    Ninja is tasked with implementing a priority queue using the Heap data structure. Since Ninja is busy with tournament preparations, your help is requested to complete this ta...

  • Ans. 

    Implement a priority queue using Heap data structure with functions like push, pop, getMaxElement, and isEmpty.

    • Implement push() function to insert element into the priority queue.

    • Implement pop() function to delete the largest element from the queue.

    • Implement getMaxElement() function to return the largest element.

    • Implement isEmpty() function to check if the queue is empty.

  • Answered by AI
  • Q2. You have 3 bulbs outside a room and 3 switches inside the room. The challenge is to determine which switch controls which bulb, with the constraint that you can only enter the bulb room once.
Round 3 - HR 

Round duration - 10 Minutes
Round difficulty - Easy

Morning time
Positive environment
Nice interviewer

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Associate Software Engineer in GurgaonEligibility criteria6 cgpa ,no gapAmdocs interview preparation:Topics to prepare for the interview - Python, Data structure, DBMS, algorithm, IotTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : practice on subject in which you are strong enough and unbeatable
Tip 2 : Always go through previous interview experiences on internet
Tip 3 : follow continuety

Application resume tips for other job seekers

Tip 1 : mention only you strong topics ,don't include anything you don't know about 
Tip 2 : always make your resume one pager

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 120minutes
Round difficulty - Easy

It was an online MCQ's + coding round consisting of 20 MCQ’s and 1 coding problem.

  • Q1. Check whether there exists a loop in the linked list.
  • Ans. 

    Check for a loop in a linked list by using two pointers moving at different speeds.

    • Use two pointers, one moving at double the speed of the other.

    • If there is a loop, the two pointers will eventually meet at the same node.

    • Example: 1 -> 2 -> 3 -> 4 -> 5 -> 2 (loop back to 2), the two pointers will meet at node 2.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

The interview started at 8:30 pm in cc of Delhi Technological University itself and it was quite late. There was only a single interviewer and he asked me one coding question related to overflow of integers.

  • Q1. How can you check for integer overflow when multiplying two integers and ensure the result is stored correctly within an integer type?
  • Ans. 

    To check for integer overflow when multiplying two integers, use the properties of integer overflow and check if the result is within the valid range of the integer type.

    • Check if the signs of the two integers are the same to avoid overflow in case of multiplication.

    • Use the properties of integer overflow to detect if the result exceeds the maximum or minimum value of the integer type.

    • Consider using a larger data type or...

  • Answered by AI
Round 3 - HR 

Round duration - 15 minutes
Round difficulty - Easy

It was quite late . There was only one interviewer and I was asked about my family , education and future plannings and few questions related joining locations and documents etc.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Delhi Technological University. I applied for the job as SDE - 1 in PuneEligibility criteria6Amdocs interview preparation:Topics to prepare for the interview - I did a lot of practice of data structures and algorithms. I covered main topics such as arrays, strings, trees, linked lists, hashmaps, and recursion. Algorithms such as sorting, searching, BFS, DFS, and greedy were also covered by me.Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Focus on data structures and algorithms part more. Tell the interviewer , starting from the brute force approach to the most optimal solution as this will give a good impression to the interviewer.

Application resume tips for other job seekers

To be honest, the problem-solving ability is the only thing that most companies care about. So you can manipulate your resume according to that. Mention your competitive programming handles in your resume and also other coding ranks or achievements which you have achieved.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Company Website and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. How does you skills relate to this job
  • Q2. Why should we hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare and stay confident

I appeared for an interview in Jan 2021.

Interview Questionnaire 

1 Question

  • Q1. Merge sort, Quick sort and fibonaci
  • Ans. 

    Merge sort and Quick sort are sorting algorithms while Fibonacci is a sequence of numbers.

    • Merge sort is a divide and conquer algorithm that divides the input array into two halves, sorts each half and then merges them.

    • Quick sort is also a divide and conquer algorithm that selects a pivot element and partitions the array around the pivot.

    • Fibonacci is a sequence of numbers where each number is the sum of the two precedin...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good at algorithm, they can judge very quickly the efficiency level.

I applied via Company Website and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on problem solving, data structures and algortithms

Interview Preparation Tips

Interview preparation tips for other job seekers - Be very thorough in data structures and algorithms, solve problems in Leetcode...

I applied via Naukri.com and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions about Comptel Eventlink tool, Perl scripting, unix shell scripting and a bit a SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer in details for whatever you are asked. Also be honest if you don't know something rather than guessing. Nobody is expected to know EVERYTHING.

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 One-on-one Round.
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, Automation Testing, SQL, Linux and Agile.
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. This is face to face round(can be virtual as well), They will ask technical que...read more

Tell us how to improve this page.

OpenText Technologies Senior Quality Assurance Engineer Interview Process

based on 3 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Google Interview Questions
4.4
 • 851 Interviews
Amdocs Interview Questions
3.7
 • 519 Interviews
Adobe Interview Questions
3.9
 • 236 Interviews
Salesforce Interview Questions
4.0
 • 230 Interviews
24/7 Customer Interview Questions
3.5
 • 176 Interviews
Chetu Interview Questions
3.2
 • 176 Interviews
AVASOFT Interview Questions
2.9
 • 167 Interviews
Dassault Systemes Interview Questions
4.0
 • 166 Interviews
Oracle Cerner Interview Questions
3.7
 • 158 Interviews
View all
OpenText Technologies Senior Quality Assurance Engineer Salary
based on 130 salaries
₹11 L/yr - ₹25 L/yr
113% 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 9 reviews

3.1/5

Rating in categories

2.9

Skill development

2.8

Work-life balance

2.6

Salary

1.6

Job security

2.8

Company culture

1.9

Promotions

2.5

Work satisfaction

Explore 9 Reviews and Ratings
Software Engineer
1k salaries
unlock blur

₹6.5 L/yr - ₹26 L/yr

Senior Software Engineer
923 salaries
unlock blur

₹12 L/yr - ₹36 L/yr

Lead Software Engineer
375 salaries
unlock blur

₹16 L/yr - ₹50 L/yr

Associate Software Engineer
371 salaries
unlock blur

₹6.8 L/yr - ₹17 L/yr

Software Developer
237 salaries
unlock blur

₹7.2 L/yr - ₹25 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
Did you find this page helpful?
Yes No
write
Share an Interview