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 QA Engineer Interview Questions, Process, and Tips

Updated 28 Oct 2024

Top OpenText Technologies QA Engineer Interview Questions and Answers

OpenText Technologies QA Engineer Interview Experiences

8 interviews found

QA Engineer Interview Questions & Answers

user image Ajay Kumar

posted on 28 Oct 2024

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Testcases for pencil
  • Ans. 

    Testcases for a pencil include checking its writing ability, eraser functionality, durability, sharpening ease, and lead breakage resistance.

    • Verify that the pencil writes smoothly on paper without skipping

    • Test the eraser by attempting to erase pencil marks effectively

    • Check the durability of the pencil by dropping it from a certain height

    • Test how easily the pencil can be sharpened without breaking the lead

    • Verify the res...

  • Answered by AI
  • Q2. Linux commands for copying creating
  • Ans. 

    Linux commands for copying and creating files and directories.

    • To copy a file: cp source_file destination_file

    • To copy a directory: cp -r source_directory destination_directory

    • To create a new file: touch new_file

    • To create a new directory: mkdir new_directory

  • Answered by AI

Skills evaluated in this interview

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 13 Aug 2024

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

I applied via campus placement at Lovely Professional University (LPU) and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How to reverse the word
  • Ans. 

    To reverse a word, you can iterate through the characters of the word and build a new word by appending each character in reverse order.

    • Iterate through the characters of the word from the last character to the first character.

    • Append each character to a new string in reverse order.

    • Return the new string as the reversed word.

  • Answered by AI
  • Q2. How to delete a node
  • Ans. 

    To delete a node, first find the node to be deleted, then update the pointers of the previous and next nodes to skip the node to be deleted.

    • Find the node to be deleted by traversing the linked list

    • Update the 'next' pointer of the previous node to skip the node to be deleted

    • Update the 'previous' pointer of the next node to skip the node to be deleted

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Introduction of candidate profile
  • Q2. Generic Question for given role

Skills evaluated in this interview

QA Engineer Interview Questions Asked at Other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many mi ... read more
Q2. Suppose your manager gave you one task which has to be complete i ... read more
Q3. how to access amazon page directly directly with out using driver ... read more
Q4. 100 apples in 5 consecutive days, each day 6 more than the previo ... read more
Q5. 7)how do you drive your data in automation , how do you validate ... read more

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 13 Feb 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. OOPS, screen shot in selenium

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 3 Oct 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. Java question oops
  • Q2. Manual testing , selenium

OpenText Technologies interview questions for designations

 QA Analyst

 (1)

 QA Lead

 (1)

 Senior QA Analyst

 (2)

 Senior QA Consultant

 (1)

 Qa Automation Testing Engineer

 (1)

 Senior Quality Assurance Engineer

 (2)

 Software Engineer

 (12)

 Lead Engineer

 (2)

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 21 Mar 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Assignment 

Write a automated test framework and several test cases for web application.

Round 2 - Technical 

(1 Question)

  • Q1. Question about implemented assignment. Java questions Several small code exercises. DBs, networking.
Round 3 - HR 

(1 Question)

  • Q1. Just a talk with manager.

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 7 Jun 2022

I applied via Naukri.com and was interviewed in May 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Java design patterns
  • Q2. Cucumber with java singleton pattern
  • Ans. 

    Cucumber is a BDD testing tool and Singleton pattern is a design pattern. They can be used together in Java for efficient testing.

    • Cucumber is a tool used for Behavior Driven Development (BDD) testing

    • Singleton pattern is a design pattern that restricts the instantiation of a class to one object

    • Using Singleton pattern with Cucumber in Java can help in efficient testing by ensuring only one instance of a class is created

    • E...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Design patterns in java and oops concepts

Skills evaluated in this interview

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Sep 2021

I applied via Campus Placement and was interviewed in Aug 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Though it was an it company but the interviewer started asking electronics core subject which I wasn't prepared for.He asked me about Digital Signal Processing Concepts.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview fully depends on your luck and it'll be good unless you get an arrogant interviewer like I had.

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 1 Dec 2021

I applied via Recruitment Consultant and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic questions on java and selenium,

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, answer what you know

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Print missing number in given array
  • Ans. 

    Find and print the missing number in a given array of strings.

    • Convert the array of strings to an array of integers for easier manipulation.

    • Iterate through the array to find the missing number by comparing consecutive elements.

    • Print the missing number once found.

  • Answered by AI
  • Q2. Print string in reverse
  • Ans. 

    Reverse a string in an array of strings

    • Iterate through each string in the array

    • Use a loop to reverse each string character by character

    • Store the reversed strings in a new array

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How do you manage differences in team
  • Q2. How do you test faulty ATM
  • Ans. 

    To test a faulty ATM, simulate various scenarios like card reader failure, cash dispenser malfunction, network connectivity issues, etc.

    • Simulate card reader failure by inserting a damaged card or a card with a magnetic strip issue.

    • Test cash dispenser malfunction by requesting cash withdrawal and observing if the correct amount is dispensed.

    • Check for network connectivity issues by trying to access online banking service...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test was easy to clear

Round 2 - Coding Test 

Coding test was ok to clear

Round 3 - Technical 

(1 Question)

  • Q1. Technical was easy to medium
Round 4 - HR 

(1 Question)

  • Q1. Tell me about your self

OpenText Technologies Interview FAQs

How many rounds are there in OpenText Technologies QA Engineer interview?
OpenText Technologies interview process usually has 1-2 rounds. The most common rounds in the OpenText Technologies interview process are Technical, One-on-one Round and HR.
What are the top questions asked in OpenText Technologies QA Engineer interview?

Some of the top questions asked at the OpenText Technologies QA Engineer interview -

  1. Cucumber with java singleton patt...read more
  2. How to reverse the w...read more
  3. linux commands for copying creat...read more

Tell us how to improve this page.

OpenText Technologies QA Engineer Interview Process

based on 5 interviews

1 Interview rounds

  • Technical Round
View more
OpenText Technologies QA Engineer Salary
based on 122 salaries
₹6 L/yr - ₹15 L/yr
105% more than the average QA Engineer Salary in India
View more details

OpenText Technologies QA Engineer Reviews and Ratings

based on 15 reviews

3.6/5

Rating in categories

2.9

Skill development

3.8

Work-life balance

3.3

Salary

3.1

Job security

3.4

Company culture

3.1

Promotions

3.2

Work satisfaction

Explore 15 Reviews and Ratings
Software Engineer
964 salaries
unlock blur

₹6.2 L/yr - ₹26 L/yr

Senior Software Engineer
901 salaries
unlock blur

₹12 L/yr - ₹36 L/yr

Associate Software Engineer
353 salaries
unlock blur

₹4.6 L/yr - ₹16 L/yr

Lead Software Engineer
330 salaries
unlock blur

₹16.5 L/yr - ₹50 L/yr

Software Developer
216 salaries
unlock blur

₹5.5 L/yr - ₹20.1 L/yr

Explore more salaries
Compare OpenText Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview