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 Interview Questions and Answers for Experienced

Updated 13 Jul 2025
Popular Designations

59 Interview questions

An AI Engineer was asked 1w ago
Q. What is the SQL query to find the common elements from two tables and return results from the first table?
Ans. 

Use SQL JOIN to find common elements from two tables and return results from the first table.

  • Use INNER JOIN to find common records between two tables.

  • Example: SELECT a.* FROM TableA a INNER JOIN TableB b ON a.id = b.id;

  • This query returns all columns from TableA where there is a matching id in TableB.

  • Ensure that the join condition accurately reflects the common elements you want to compare.

View all AI Engineer interview questions
An AI Engineer was asked 1w ago
Q. What is the SQL query to find the second highest salary in a table?
Ans. 

To find the second highest salary, use SQL queries that leverage sorting and distinct values.

  • Use the 'DISTINCT' keyword to eliminate duplicate salaries.

  • Sort the salaries in descending order and limit the results.

  • A common query is: 'SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 1;'

  • Alternatively, use a subquery: 'SELECT MAX(salary) FROM employees WHERE salary < (SELECT MAX(salary) FROM...

View all AI Engineer interview questions
An AI Engineer was asked 1w ago
Q. What is the procedure for creating an API function that accepts JSON-structured data and updates the corresponding information in the database?
Ans. 

Creating an API function to update database info using JSON data involves defining endpoints, parsing data, and executing updates.

  • Define the API endpoint (e.g., POST /updateRecord).

  • Use a web framework (e.g., Flask, Express) to handle requests.

  • Parse the incoming JSON data using libraries (e.g., json in Python).

  • Validate the data to ensure it meets required formats and constraints.

  • Connect to the database using an ORM...

View all AI Engineer interview questions
A Senior Cloud Operations Engineer was asked 1mo ago
Q. How do you monitor sos reports?
Ans. 

Monitoring SOS reports involves tracking system performance, errors, and resource usage to ensure optimal cloud operations.

  • Utilize cloud monitoring tools like AWS CloudWatch or Azure Monitor to track metrics.

  • Set up alerts for critical errors or performance degradation.

  • Regularly review SOS reports for trends in system performance and incidents.

  • Implement logging solutions (e.g., ELK stack) to analyze logs for troubl...

View all Senior Cloud Operations Engineer interview questions
A Software Engineer was asked 2mo ago
Q. Write code using Java streams.
Ans. 

Java Streams provide a modern way to process sequences of elements, enabling functional-style operations on collections.

  • Stream Creation: Streams can be created from collections, arrays, or I/O channels. Example: List<String> names = Arrays.asList("Alice", "Bob"); Stream<String> stream = names.stream();

  • Intermediate Operations: These operations return a new stream and are lazy. Example: stream.filter(nam...

View all Software Engineer interview questions
A Software Engineer was asked 2mo ago
Q. What are the advantages of Java?
Ans. 

Java offers platform independence, strong community support, and robust security features, making it ideal for various applications.

  • Platform Independence: Java's 'Write Once, Run Anywhere' capability allows applications to run on any device with a Java Virtual Machine (JVM).

  • Strong Community Support: Java has a vast community, providing extensive libraries, frameworks, and resources for developers.

  • Robust Security F...

View all Software Engineer interview questions

OpenText Technologies HR Interview Questions

11 questions and answers

Q. What kind of work were you doing in your current organization?
Q. Why do you want to join this company?
Q. What are the most valuable design experiences you have had recently as an intera ... read more
A Software Engineer was asked 2mo ago
Q. What are the concepts of OOPS?
Ans. 

OOPs (Object-Oriented Programming) is a programming paradigm based on objects and classes, promoting code reusability and modularity.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

  • Inheritance: Mechanism to create a new class from an existing class, inheriting attributes and methods (e.g., a 'Dog' class inheriting from an 'Animal' class).

  • Polymorphism: Ability to pr...

View all Software Engineer interview questions
Are these interview questions helpful?
A Java Developer was asked 3mo ago
Q. What are the key differences between Java and Python?
Ans. 

Java is a statically typed, compiled language, while Python is dynamically typed and interpreted, leading to different use cases and performance.

  • Typing: Java is statically typed (e.g., int x = 5;), while Python is dynamically typed (e.g., x = 5).

  • Syntax: Java requires explicit class definitions and semicolons, whereas Python uses indentation and is more concise.

  • Performance: Java generally offers better performance ...

View all Java Developer interview questions
A Java Developer was asked 3mo ago
Q. What is exception handling?
Ans. 

Exception handling in Java manages runtime errors to maintain normal application flow.

  • Exceptions are events that disrupt the normal flow of execution in a program.

  • Java uses try-catch blocks to handle exceptions. Example: try { int result = 10 / 0; } catch (ArithmeticException e) { System.out.println(e.getMessage()); }

  • The 'finally' block can be used to execute code regardless of whether an exception occurred. Exam...

View all Java Developer interview questions
A Java Developer was asked 3mo ago
Q. What are the OOPS concepts in Java?
Ans. 

OOP concepts in Java include Encapsulation, Inheritance, Polymorphism, and Abstraction, which enhance code modularity and reusability.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (class). Example: private variables with public getters/setters.

  • Inheritance: Mechanism where one class inherits properties and behaviors from another. Example: class Dog extends Animal.

  • Polymorphism: Ab...

View all Java Developer interview questions

OpenText Technologies Interview Experiences for Experienced

58 interviews found

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

I appeared for an interview in Jan 2025.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Can you describe your experience and the best project you have worked on?
  • Ans. 

    I have extensive experience in UX design, with my best project being a mobile app redesign for a major e-commerce company.

    • Redesigned mobile app interface to improve user experience and increase conversions

    • Conducted user research and usability testing to inform design decisions

    • Collaborated with cross-functional teams to implement design changes

    • Resulted in a 20% increase in user engagement and a 15% increase in conversio...

  • Answered by AI
  • Q2. How do you evaluate the success of a project?
  • Ans. 

    I evaluate the success of a project by analyzing user feedback, metrics, and meeting project goals.

    • Collect and analyze user feedback through surveys, interviews, and usability testing

    • Track key metrics such as user engagement, conversion rates, and task completion

    • Compare project outcomes to initial goals and objectives

    • Iterate on design based on feedback and data to improve user experience

  • Answered by AI
  • Q3. Can you describe your approach to a design task and outline your process?
  • Ans. 

    My approach to a design task involves research, ideation, prototyping, testing, and iteration.

    • Conduct thorough research to understand user needs and goals

    • Generate ideas through brainstorming and sketching

    • Create prototypes to visualize concepts and gather feedback

    • Test prototypes with users to identify usability issues

    • Iterate on designs based on feedback and data

  • Answered by AI
  • Q4. What are the most valuable design experiences you have had recently as an interaction designer?
  • Ans. 

    One of the most valuable design experiences I had recently was leading a redesign project for a mobile app.

    • Led a redesign project for a mobile app, involving user research, wireframing, prototyping, and usability testing

    • Collaborated closely with cross-functional teams to gather feedback and iterate on designs

    • Implemented user-centered design principles to improve overall user experience and increase user engagement

  • Answered by AI
Round 2 - Assignment 

Design a test with a clearly outlined problem; you need to sketch your ideas and thoughts within one hour.

Round 3 - One-on-one 

(3 Questions)

  • Q1. Can you explain the design you created in the previous round?
  • Ans. 

    I designed a user-friendly mobile app for tracking daily water intake.

    • Focused on intuitive interface for easy input of water consumption

    • Incorporated visual reminders and progress tracking for motivation

    • Implemented a feature to set personalized water intake goals

    • Utilized color-coded visual cues for quick reference

    • Conducted user testing to gather feedback for improvements

  • Answered by AI
  • Q2. What are the various scenarios that may be presented to evaluate your thoughts and design skills?
  • Ans. 

    Various scenarios to evaluate UX design skills

    • User research and persona creation

    • Wireframing and prototyping

    • Usability testing and feedback analysis

    • Accessibility considerations

    • Collaboration with cross-functional teams

  • Answered by AI
  • Q3. What are the error cases that should be considered in the design?
  • Ans. 

    Consider error cases in design to ensure user experience is not negatively impacted.

    • Input validation errors (e.g. incorrect format, missing required fields)

    • Network errors (e.g. slow or no internet connection)

    • System errors (e.g. server downtime, database errors)

    • User errors (e.g. accidental deletion, incorrect actions)

    • Security errors (e.g. unauthorized access, data breaches)

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

(2 Questions)

  • Q1. What specific behaviours and qualities do you possess that demonstrate your fit for the company, and how can you elaborate on these in a broader context?
  • Ans. 

    I possess strong communication skills, a user-centered approach, and a proven track record of delivering successful UX designs.

    • Strong communication skills demonstrated through effective collaboration with cross-functional teams

    • User-centered approach evident in my portfolio showcasing intuitive and user-friendly designs

    • Proven track record of delivering successful UX designs, as evidenced by positive user feedback and in...

  • Answered by AI
  • Q2. What strategies should a designer understand?
  • Ans. 

    A designer should understand various strategies to effectively solve design problems.

    • User research and testing

    • Information architecture

    • Wireframing and prototyping

    • Visual design principles

    • Collaboration with stakeholders

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

(2 Questions)

  • Q1. What is your understanding of OpenText products ?
  • Ans. 

    OpenText products are a suite of enterprise software solutions for content management, digital experience, and business process automation.

    • OpenText Content Suite for managing enterprise content

    • OpenText Experience Suite for creating personalized digital experiences

    • OpenText Process Suite for automating business processes

    • OpenText Documentum for managing documents and records

    • OpenText Media Management for digital asset mana...

  • Answered by AI
  • Q2. What is your experience with workflows, and can you provide specific examples?
  • Ans. 

    I have extensive experience with designing and optimizing workflows to improve user experience.

    • Designed workflows for e-commerce platforms to streamline the checkout process and increase conversion rates

    • Optimized workflows for mobile applications to enhance user engagement and retention

    • Conducted user research to identify pain points in existing workflows and proposed solutions for improvement

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Ensure you possess a thorough understanding of the design projects you have worked on in your previous organization, as the panel will closely examine your thought process and design approach. Each round of questions will differ, so it is essential to remain humble and honest, and to clearly explain every aspect of your contributions during the design test and in real.

AI Engineer Interview Questions & Answers

user image Anonymous

posted on 13 Jul 2025

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

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. You were asked to find the target number that is the sum of two numbers and return their index values.
  • Q2. What is the SQL query to find the common elements from two tables and return results from the first table?
  • Ans. 

    Use SQL JOIN to find common elements from two tables and return results from the first table.

    • Use INNER JOIN to find common records between two tables.

    • Example: SELECT a.* FROM TableA a INNER JOIN TableB b ON a.id = b.id;

    • This query returns all columns from TableA where there is a matching id in TableB.

    • Ensure that the join condition accurately reflects the common elements you want to compare.

  • Answered by AI
  • Q3. What is the SQL query to find the second highest salary in a table?
  • Ans. 

    To find the second highest salary, use SQL queries that leverage sorting and distinct values.

    • Use the 'DISTINCT' keyword to eliminate duplicate salaries.

    • Sort the salaries in descending order and limit the results.

    • A common query is: 'SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 1;'

    • Alternatively, use a subquery: 'SELECT MAX(salary) FROM employees WHERE salary < (SELECT MAX(salary) FROM empl...

  • Answered by AI
  • Q4. What is the procedure for creating an API function that accepts JSON-structured data and updates the corresponding information in the database?
  • Ans. 

    Creating an API function to update database info using JSON data involves defining endpoints, parsing data, and executing updates.

    • Define the API endpoint (e.g., POST /updateRecord).

    • Use a web framework (e.g., Flask, Express) to handle requests.

    • Parse the incoming JSON data using libraries (e.g., json in Python).

    • Validate the data to ensure it meets required formats and constraints.

    • Connect to the database using an ORM (e.g...

  • Answered by AI

Lead Engineer Interview Questions & Answers

user image Anonymous

posted on 15 Oct 2024

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic question on testing
  • Q2. Basic questions on java
Round 2 - Coding Test 

It was medium, I was able to solve

Round 3 - Coding Test 

It was a difficult one from leetcode and modified on the basis on the go, I was able to solve with some hints

Round 4 - Coding Test 

It was a difficult one and from leetcode and modified during the begining. I was partially able to solve. But the the Interviewer was expecting some exact answer, which might not interest him.

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Round 1 - Written Test 1. Design document versioning system. 2. Write a sql query which gives employee count per organization.
  • Q2. Round 2 - In person interview 1. Coding questions - Reverse linked list, detect cycle in linked list, find distinct in array. 2. Questions around delegates.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics right. It should be easy to get done with interview.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. How is the work and what were you doing in your current organisation
  • Ans. 

    I manage cloud infrastructure, optimize deployments, and ensure system reliability in a dynamic environment.

    • Oversee cloud infrastructure management, including AWS and Azure services.

    • Implement CI/CD pipelines to streamline application deployment, reducing deployment time by 30%.

    • Monitor system performance and troubleshoot issues, achieving 99.9% uptime.

    • Collaborate with development teams to optimize cloud resource usage, ...

  • Answered by AI
  • Q2. How to monitor sos report
  • Ans. 

    Monitoring SOS reports involves tracking system performance, errors, and resource usage to ensure optimal cloud operations.

    • Utilize cloud monitoring tools like AWS CloudWatch or Azure Monitor to track metrics.

    • Set up alerts for critical errors or performance degradation.

    • Regularly review SOS reports for trends in system performance and incidents.

    • Implement logging solutions (e.g., ELK stack) to analyze logs for troubleshoo...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Architecture discussion
Round 2 - Technical 

(1 Question)

  • Q1. Mostly focused on my previous project and architecture
Round 3 - Technical 

(1 Question)

  • Q1. Mostly Focus on primary skills and architecture of previous projects and my contribution
Round 4 - Technical 

(1 Question)

  • Q1. Ready Ness to learn new tech stack and existing primary skills
Round 5 - HR 

(1 Question)

  • Q1. General package discussion for the role(special)

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly Focus on primary skills , architectural mindset, ready for IC too
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. Basic OOps in java
  • Ans. 

    Object-Oriented Programming (OOP) in Java focuses on concepts like classes, objects, inheritance, encapsulation, and polymorphism.

    • 1. Classes and Objects: A class is a blueprint for creating objects. Example: 'class Dog { }' creates a Dog object.

    • 2. Inheritance: Allows a new class to inherit properties and methods from an existing class. Example: 'class Puppy extends Dog { }'.

    • 3. Encapsulation: Bundles data and methods th...

  • Answered by AI
  • Q2. Basic string and array related questions
Round 2 - Technical 

(3 Questions)

  • Q1. Project discussion
  • Q2. Oops concepts in java
  • Ans. 

    Oops concepts in Java refer to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability of a method to do different things based on the object it is acting upon.

    • Abstraction: Hiding the imp...

  • Answered by AI
  • Q3. Basic sorting questions and string based questions.

Skills evaluated in this interview

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Tell me about your self.
  • Q2. Why do you join in this company.
  • Q3. Difference between java and python.
  • Q4. What is an exception handling.
  • Q5. What is Oops concepts in java

Skills evaluated in this interview

Lead Engineer Interview Questions & Answers

user image Anonymous

posted on 27 Aug 2024

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

(2 Questions)

  • Q1. Coding ,1 medium question were asked
  • Q2. C# concepts basic ques
  • Ans. 

    C# is a versatile programming language with features like OOP, LINQ, and async programming, widely used for various applications.

    • Object-Oriented Programming (OOP): C# supports encapsulation, inheritance, and polymorphism. Example: class and object creation.

    • LINQ (Language Integrated Query): Allows querying collections in a concise way. Example: var results = from item in collection where item > 10 select item;

    • Asynchr...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design pattern ques

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare medium coding questions and language concepts
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Given input string- This is opentext.
OP- sihT si txtetnepo.

Round 2 - Technical 

(1 Question)

  • Q1. What is page object model.
  • Ans. 

    Page Object Model is a design pattern used in test automation to create an object repository for web elements on a page.

    • It helps in separating the test scripts from the web elements, making the code more maintainable and reusable.

    • Each web page is represented as a class, and the web elements on the page are defined as variables within the class.

    • Methods are created within the class to perform actions on the web elements,...

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w (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.

OpenText Technologies Interview FAQs

How many rounds are there in OpenText Technologies interview for experienced candidates?
OpenText Technologies interview process for experienced candidates usually has 3-4 rounds. The most common rounds in the OpenText Technologies interview process for experienced candidates are Technical, Coding Test and One-on-one Round.
How to prepare for OpenText Technologies interview for experienced candidates?
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 Javascript, Java, Information Management, Oracle and Troubleshooting.
What are the top questions asked in OpenText Technologies interview for experienced candidates?

Some of the top questions asked at the OpenText Technologies interview for experienced candidates -

  1. how do you display different color in atable using css for odd even r...read more
  2. Can you describe your approach to a design task and outline your proce...read more
  3. write a program to display words separated by sp...read more
What are the most common questions asked in OpenText Technologies HR round for experienced candidates?

The most common HR questions asked in OpenText Technologies interview are for experienced candidates -

  1. Tell me about yourse...read more
  2. Where do you see yourself in 5 yea...read more
  3. What are your strengths and weakness...read more
How long is the OpenText Technologies interview process?

The duration of OpenText Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.6/5

based on 40 interview experiences

Difficulty level

Easy 16%
Moderate 72%
Hard 12%

Duration

Less than 2 weeks 67%
2-4 weeks 25%
6-8 weeks 4%
More than 8 weeks 4%
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 Reviews and Ratings

based on 1.1k reviews

3.6/5

Rating in categories

3.3

Skill development

3.9

Work-life balance

3.5

Salary

3.2

Job security

3.6

Company culture

2.9

Promotions

3.3

Work satisfaction

Explore 1.1k Reviews and Ratings
Sr. Software Engineer

Bangalore / Bengaluru

5-10 Yrs

₹ 13.7-31 LPA

Sr. Software Engineer

Bangalore / Bengaluru

7-12 Yrs

₹ 7.9-38 LPA

Manager, Cloud Applications Consulting

Bangalore / Bengaluru

12-17 Yrs

Not Disclosed

Explore more jobs
Software Engineer
1.1k salaries
unlock blur

₹12.1 L/yr - ₹21 L/yr

Senior Software Engineer
1.1k salaries
unlock blur

₹22.1 L/yr - ₹40 L/yr

Associate Software Engineer
416 salaries
unlock blur

₹8 L/yr - ₹13.5 L/yr

Lead Software Engineer
372 salaries
unlock blur

₹29.5 L/yr - ₹52 L/yr

Software Developer
237 salaries
unlock blur

₹12.2 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.3
Compare
write
Share an Interview