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 Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

OpenText Technologies QA Engineer Interview Questions and Answers

Updated 28 Oct 2024

6 Interview questions

A QA Engineer was asked 9mo ago
Q. What are some test cases for a 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 th...

A QA Engineer was asked 9mo ago
Q. What Linux commands do you use for copying and creating files or directories?
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

QA Engineer Interview Questions Asked at Other Companies

Q1. Suppose your manager gave you a task to complete in one week, but ... read more
Q2. There are 80 pairs of socks in a dark room, 40 black and 40 white ... read more
Q3. 100 apples are eaten in 5 consecutive days, with each day having ... read more
Q4. how to access amazon page directly directly with out using driver ... read more
Q5. If a pen's weight equals 2 kg plus half of its own weight, what i ... read more
A QA Engineer was asked 11mo ago
Q. How do you 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

A QA Engineer was asked 11mo ago
Q. How do you reverse a 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.

A QA Engineer was asked
Q. What are some Java OOPs concepts?
Ans. 

Java OOPs concepts include encapsulation, inheritance, polymorphism, and abstraction, essential for object-oriented programming.

  • Encapsulation: Bundling data and methods. Example: A class 'Car' with attributes like 'speed' and methods like 'accelerate()'.

  • Inheritance: Mechanism to create a new class from an existing class. Example: 'ElectricCar' inherits from 'Car'.

  • Polymorphism: Ability to take many forms. Example: ...

A QA Engineer was asked
Q. 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 cre...

OpenText Technologies HR Interview Questions

22 questions and answers

Q. Tell me about the project.
Q. What kind of work were you doing in your current organization?
Q. Why do you want to join this company?

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
  • 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
Are these interview questions helpful?

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 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 & 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

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

Top trending discussions

View All
Interview Hub
3d (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about OpenText Technologies?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Coding question on java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared..... Requires coding skills

I applied via Naukri.com and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java and selenium

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was smooth and good

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.

Overall Interview Experience Rating

3.6/5

based on 5 interview experiences

Difficulty level

Easy 33%
Moderate 33%
Hard 33%

Duration

Less than 2 weeks 67%
2-4 weeks 33%
View more
Join OpenText Technologies The Information Company.

Interview Questions from Similar Companies

Google QA Engineer Interview Questions
4.3
 • 910 Interviews
Amdocs QA Engineer Interview Questions
3.7
 • 534 Interviews
Adobe QA Engineer Interview Questions
3.8
 • 249 Interviews
Chetu QA Engineer Interview Questions
3.4
 • 205 Interviews
AVASOFT QA Engineer Interview Questions
2.7
 • 176 Interviews
View all
OpenText Technologies QA Engineer Salary
based on 133 salaries
₹9.8 L/yr - ₹16.5 L/yr
110% more than the average QA Engineer Salary in India
View more details

OpenText Technologies QA Engineer Reviews and Ratings

based on 15 reviews

3.7/5

Rating in categories

3.0

Skill development

3.9

Work-life balance

3.4

Salary

3.1

Job security

3.4

Company culture

3.2

Promotions

3.3

Work satisfaction

Explore 15 Reviews and Ratings
Software Engineer
1.1k salaries
unlock blur

₹12.2 L/yr - ₹21 L/yr

Senior Software Engineer
1.1k salaries
unlock blur

₹22.1 L/yr - ₹40 L/yr

Associate Software Engineer
413 salaries
unlock blur

₹8 L/yr - ₹14.5 L/yr

Lead Software Engineer
399 salaries
unlock blur

₹29.7 L/yr - ₹53 L/yr

Software Developer
262 salaries
unlock blur

₹11.3 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