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, Process, and Tips

Updated 1 Mar 2025

Top OpenText Technologies Interview Questions and Answers

View all 105 questions

OpenText Technologies Interview Experiences

Popular Designations

167 interviews found

Associate Software Engineer Interview Questions & Answers

user image Mohan Reddy Aeturi

posted on 24 May 2024

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

(1 Question)

  • Q1. Resume based questions and two coding question you can code those your convenient programming language.
Round 2 - HR 

(1 Question)

  • Q1. Backround of the candidate

Top OpenText Technologies Associate Software Engineer Interview Questions and Answers

Q1. Multithreading Concept in Java Programming Language
View answer (1)

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Day of the PM
  • Q2. Why do you want to hire

Senior Product Manager Interview Questions asked at other Companies

Q1. What are the growth hacks you would use to grow traffic?
View answer (1)
OpenText Technologies Interview Questions and Answers for Freshers
illustration image
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain OOPs Conepts
  • Ans. 

    OOPs concepts refer to the principles of Object-Oriented Programming, including 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 to present the same interface for different data types.

    • Abstraction: Hiding the complex implemen...

  • Answered by AI
  • Q2. Project walk thorugh

Lead Test Engineering Interview Questions asked at other Companies

Q1. Explain OOPs Conepts
View answer (1)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jul 2023.

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 Resume tips
Round 2 - One-on-one 

(3 Questions)

  • Q1. Find middle element on the linked list
  • Ans. 

    To find the middle element in a linked list, use the slow and fast pointer approach.

    • Initialize two pointers, slow and fast, both pointing to the head of the linked list.

    • Move the slow pointer by one step and the fast pointer by two steps until the fast pointer reaches the end of the list.

    • The element pointed to by the slow pointer at this point is the middle element of the linked list.

  • Answered by AI
  • Q2. Design principle of the OOPS concept
  • Ans. 

    OOPS concept is based on four main principles: Encapsulation, Inheritance, Polymorphism, and Abstraction.

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

    • Inheritance: Allowing a new class to inherit properties and behavior from an existing class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation details and show

  • Answered by AI
  • Q3. What design pattern used in the program
  • Ans. 

    The program uses the Observer design pattern.

    • The Observer pattern is used to define a one-to-many dependency between objects so that when one object changes state, all its dependents are notified and updated automatically.

    • It promotes loose coupling between objects, allowing for easier maintenance and scalability.

    • Examples of Observer pattern implementation can be seen in event handling systems, such as in GUI frameworks

  • Answered by AI

Interview Preparation Tips

Topics to prepare for OpenText Technologies Lead Software Engineer interview:
  • Core Java
Interview preparation tips for other job seekers - Interviewer was rude and shows lack of respect to candidate. Interviewer not joining the interview on time. when you are asked a question, you have to be apt and to the point. Otherwise you will be interrupted abruptly and you are not allowed to complete. This speaks about the work culture in Opentext. The only good thing is that the feedback is quick. The HR will certainly let you know about the result of the interview. Only giving two star for the HR

Skills evaluated in this interview

Lead Software Engineer Interview Questions asked at other Companies

Q1. Square Root with Decimal Precision Problem Statement You are provided with two integers, 'N' and 'D'. Your objective is to determine the square root of the number 'N' with a precision up to 'D' decimal places. This implies that the discrepa... read more
View answer (1)

OpenText Technologies interview questions for popular designations

 Senior Software Engineer

 (15)

 Associate Software Engineer

 (14)

 Intern

 (13)

 Software Engineer

 (12)

 QA Engineer

 (8)

 Software Developer Intern

 (6)

 Engineering Intern

 (5)

 Software Developer

 (4)

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

One easy and one medium question(Java)

Round 2 - Technical 

(1 Question)

  • Q1. Basic java and oops question

Software Engineer Intern Interview Questions asked at other Companies

Q1. Check if Two Trees are Mirror Given two arbitrary binary trees, your task is to determine whether these two trees are mirrors of each other. Explanation: Two trees are considered mirror of each other if: The roots of both the trees are the... read more
View answer (1)

Get interview-ready with Top OpenText Technologies Interview Questions

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Technical related to current profile
Round 2 - Technical 

(1 Question)

  • Q1. Techical related to the profile, experience etc
Round 3 - HR 

(1 Question)

  • Q1. Softskill related questions

Sourcing Manager Interview Questions asked at other Companies

Q1. Which category you have command? (Laundry, Oral Care etc)
View answer (1)

Jobs at OpenText Technologies

View all
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Apr 2023. 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 Resume tips
Round 2 - Technical 

(9 Questions)

  • Q1. Write a Program Nth term in a infinite series example: 2,4,8,2,4,8……..n…….infinite
  • Ans. 

    Program to find the Nth term in an infinite series

    • The series has a repeating pattern

    • Use modulo operator to find the index of the repeating pattern

    • Calculate the value of Nth term based on the pattern

  • Answered by AI
  • Q2. Write a Program identify Max length of a substring from a given string and also the substring should be palindrome
  • Ans. 

    Program to find the longest palindrome substring in a given string.

    • Iterate through the string and check for palindromes of different lengths

    • Store the longest palindrome found

    • Return the length and substring

  • Answered by AI
  • Q3. What is your comfort level on HTML, CSS and JavaScript
  • Ans. 

    I am highly proficient in HTML, CSS, and JavaScript.

    • Extensive experience in building responsive web applications using HTML, CSS, and JavaScript

    • Strong understanding of front-end frameworks like React, Angular, or Vue.js

    • Familiarity with CSS preprocessors like SASS or LESS

    • Knowledge of modern JavaScript ES6+ features and best practices

    • Experience in optimizing web performance and cross-browser compatibility

  • Answered by AI
  • Q4. What are reasons for your transitions in Career
  • Ans. 

    Transitions were driven by desire for growth, new challenges, and better alignment with personal values.

    • Desire for professional growth and development

    • Seeking new challenges and opportunities

    • Alignment with personal values and mission

    • Exploring different industries and technologies

    • Relocation for personal reasons

  • Answered by AI
  • Q5. Oracle EBS 12.1 and 12.2 Technical Architecture Differences
  • Ans. 

    Differences between Oracle EBS 12.1 and 12.2 Technical Architecture

    • 12.2 has a web-based interface while 12.1 has a client-server interface

    • 12.2 has a multi-node architecture while 12.1 has a single-node architecture

    • 12.2 has a more modular architecture with fewer dependencies

    • 12.2 has a more streamlined upgrade process compared to 12.1

  • Answered by AI
  • Q6. What is your current role and how do you handle your daily tasks
  • Ans. 

    I am currently working as a Senior Software Engineer and I handle my daily tasks by prioritizing them based on their importance and urgency.

    • I start my day by checking my emails and responding to any urgent requests

    • I then review my to-do list and prioritize my tasks for the day

    • I break down complex tasks into smaller, more manageable ones

    • I collaborate with my team members to ensure that we are all on the same page

    • I use p...

  • Answered by AI
  • Q7. Tell me in detail step by step process for registering XML Publisher Report
  • Ans. 

    The process for registering XML Publisher Report

    • Create a data model for the report

    • Create a template for the report using RTF or XSL-FO

    • Upload the template to the server

    • Create a report definition using the data model and template

    • Register the report definition with the XML Publisher server

  • Answered by AI
  • Q8. Java Exceptions hierarchy(IOException then Exception Block , what error we get here)
  • Q9. Write a Program to find a second max in the give list? and Time Complexity
  • Ans. 

    Program to find second max in a list and its time complexity

    • Sort the list in descending order and return the second element

    • Traverse the list and keep track of the maximum and second maximum elements

    • Time complexity: O(n)

  • Answered by AI

Interview Preparation Tips

Topics to prepare for OpenText Technologies Senior Software Engineer interview:
  • Java
  • Web Services
  • MVC
  • XML Publisher
  • Oracle Apps
  • SQL
  • Performance Tuining
Interview preparation tips for other job seekers - Learn Java Programming , SQL, Opps Concepts, Projects Questions and Prepare Puzzles

Skills evaluated in this interview

Top OpenText Technologies Senior Software Engineer Interview Questions and Answers

Q1. Write a Program Nth term in a infinite series example: 2,4,8,2,4,8……..n…….infinite
View answer (3)

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

SSE Interview Questions & Answers

user image Anonymous

posted on 2 Jun 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Simple DSA And java questions nothing out of the blue

SSE Interview Questions asked at other Companies

Q1. What is docker and what are the basic commands of docker
View answer (1)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2 questions asked , should have to solve 2 questions

Round 2 - HR 

(3 Questions)

  • Q1. Friendly questions about projects
  • Q2. Self intro,projects explanation,strengths and weakness
  • Q3. Coding platforms used to code
  • Ans. 

    I have experience coding on various platforms including GitHub, CodePen, and Visual Studio Code.

    • GitHub - a web-based platform for version control and collaboration

    • CodePen - an online code editor and community for front-end development

    • Visual Studio Code - a powerful code editor with built-in debugging and Git integration

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on communication

Apprenticeship Trainee Interview Questions asked at other Companies

Q1. What is the circuit breaker.circuit breaker protect by short circuit
View answer (8)

Software Engineer Interview Questions & Answers

user image Pradeep Naik

posted on 19 May 2024

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

Java advanced and DSA questions were asked..

Round 2 - Coding Test 

Interviewer tested me on designing a REST API.

Round 3 - Coding Test 

Application infrastructure knowledge and java basic understanding. Multi threading

Round 4 - HR 

(1 Question)

  • Q1. HR + Technical.

Top OpenText Technologies Software Engineer Interview Questions and Answers

Q1. how do you display different color in atable using css for odd even rows
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)
Contribute & help others!
anonymous
You can choose to be anonymous

OpenText Technologies Interview FAQs

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

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

  1. Write a Program Nth term in a infinite series example: 2,4,8,2,4,8……..n…...read more
  2. Write a Program identify Max length of a substring from a given string and also...read more
  3. how do you display different color in atable using css for odd even r...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.

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

JOBS

OpenText Technologies

No Jobs

INTERVIEWS

OpenText Technologies

No Interviews

SALARIES

Balkrishna Industries

INTERVIEWS

Balkrishna Industries

No Interviews

INTERVIEWS

Balkrishna Industries

No Interviews

JOBS

Bitcomm Technologies

No Jobs

Tell us how to improve this page.

OpenText Technologies Interview Process

based on 143 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Google Interview Questions
4.4
 • 823 Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
View all

OpenText Technologies Reviews and Ratings

based on 1k reviews

3.7/5

Rating in categories

3.3

Skill development

4.0

Work-life balance

3.5

Salary

3.3

Job security

3.7

Company culture

3.0

Promotions

3.4

Work satisfaction

Explore 1k Reviews and Ratings
Sr. SRE Manager

Bangalore / Bengaluru

7-8 Yrs

Not Disclosed

Lead Revenue Operations Analyst

Hyderabad / Secunderabad

3-6 Yrs

Not Disclosed

Director, Software Engineering

Bangalore / Bengaluru

20-22 Yrs

Not Disclosed

Explore more jobs
Software Engineer
968 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
903 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
362 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Software Engineer
330 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
221 salaries
unlock blur

₹0 L/yr - ₹0 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