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

Updated 3 Jun 2025
Popular Designations

129 Interview questions

A Software Engineer was asked 1mo 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
A Software Engineer was asked 1mo 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 1mo 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
A Tools Developer was asked 1mo ago
Q. How can you remove duplicates from an array using collections?
Ans. 

Use collections to efficiently remove duplicates from an array of strings.

  • Utilize a Set to store unique elements. Example: Set<String> uniqueStrings = new HashSet<>(Arrays.asList(array));

  • Convert the Set back to an array if needed. Example: String[] resultArray = uniqueStrings.toArray(new String[0]);

  • This method is efficient as Sets do not allow duplicate entries.

View all Tools Developer interview questions
A Tools Developer was asked 1mo ago
Q. Can you give examples of OOPS concepts you've used in your projects?
Ans. 

OOP concepts like encapsulation, inheritance, and polymorphism enhance code organization and reusability in software development.

  • Encapsulation: I used encapsulation to bundle data and methods in classes, ensuring that internal states are hidden from outside interference.

  • Inheritance: In a project, I created a base class 'Animal' and derived classes like 'Dog' and 'Cat' to reuse common properties and methods.

  • Polymor...

View all Tools Developer interview questions
A Tools Developer was asked 1mo ago
Q. Why and where do we use the default keyword?
Ans. 

The default keyword is used in C++ for defining default constructors and in switch statements for handling unmatched cases.

  • In C++, the default keyword can define a default constructor: `ClassName() = default;`.

  • In switch statements, the default case handles any unmatched cases: `switch(x) { case 1: ...; default: ...; }`.

  • Using default constructors simplifies class definitions when no custom initialization is needed.

  • ...

View all Tools Developer interview questions
A Tools Developer was asked 1mo ago
Q. Can you think of any use case where we can use composition instead of inheritance?
Ans. 

Composition allows for flexible code reuse and better separation of concerns compared to inheritance in object-oriented design.

  • Flexibility: Composition allows you to change behavior at runtime by swapping out components, unlike inheritance which is static.

  • Separation of Concerns: By composing objects, you can keep different functionalities separate, making the codebase easier to manage.

  • Example: A Car class can use ...

View all Tools Developer interview questions
Are these interview questions helpful?
A Java Developer was asked 2mo 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
A Java Developer was asked 2mo 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 2mo 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

OpenText Technologies Interview Experiences

176 interviews found

I applied via Campus Placement and was interviewed in Oct 2021. There were 4 interview rounds.

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 - Coding Test 

Coding round where questions based on arrays and strings were asked

Round 3 - Technical 

(4 Questions)

  • Q1. OOPS in Java Programming Language
  • Ans. 

    OOPS in Java is a programming paradigm that emphasizes on objects and their interactions.

    • OOPS stands for Object-Oriented Programming System

    • Java is an OOPS language that supports encapsulation, inheritance, and polymorphism

    • Encapsulation is the process of hiding data and methods within a class

    • Inheritance allows a subclass to inherit properties and methods from a superclass

    • Polymorphism allows objects to take on multiple f...

  • Answered by AI
  • Q2. Multithreading Concept in Java Programming Language
  • Ans. 

    Multithreading in Java allows multiple threads to execute concurrently within a single program.

    • Multithreading improves performance by allowing multiple tasks to run simultaneously.

    • Java provides built-in support for multithreading through the Thread class and Runnable interface.

    • Synchronization is important to prevent race conditions and ensure thread safety.

    • Examples of multithreading in Java include GUI applications, se...

  • Answered by AI
  • Q3. Collections Framework In Java Programming Language
  • Ans. 

    Collections Framework is a set of classes and interfaces that provide reusable data structures in Java.

    • It provides interfaces like List, Set, Queue, etc. for storing collections of objects.

    • It also provides classes like HashMap, TreeMap, etc. for storing key-value pairs.

    • It simplifies the process of storing and manipulating data in Java programs.

    • It improves the performance of Java programs by providing efficient data str...

  • Answered by AI
  • Q4. Exception Handling in Java Programming Language
  • Ans. 

    Exception handling is a mechanism to handle runtime errors in Java programs.

    • Exceptions are objects that are thrown at runtime when an error occurs

    • try-catch block is used to handle exceptions

    • finally block is used to execute code regardless of whether an exception is thrown or not

    • Java provides built-in exceptions like ArithmeticException, NullPointerException, etc.

    • Custom exceptions can also be created by extending the Ex...

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Discussed about my java projects
  • Q2. Discussion about the role I am going to join

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in Programming language you did and do implelment basic data structures

Skills evaluated in this interview

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

Senior UX Designer Interview Questions asked at other Companies

Q1. Can you describe your approach to a design task and outline your process?
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Sep 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. Write a program in .NET that outputs the characters appearing more than two times consecutively in a given string.
  • Ans. 

    Program in .NET to output characters appearing more than two times consecutively in a given string.

    • Iterate through the string and check if the current character is the same as the previous one.

    • Keep track of the count of consecutive characters and output those that appear more than two times.

    • Use a StringBuilder to efficiently build the output string.

  • Answered by AI
  • Q2. If there are five microservices, labeled as microservice one, microservice two, microservice three, microservice four, and microservice five. Microservice three breaks. Requests from microservice two to ...
  • Ans. 

    Implement strategies to resolve backlog of requests from microservice two due to microservice three breaking.

    • Identify the root cause of the issue in microservice three and fix it.

    • Implement circuit breaker pattern to handle failures and prevent cascading failures.

    • Implement retries with exponential backoff for failed requests from microservice two to microservice three.

    • Scale up microservice three to handle increased load...

  • Answered by AI
  • Q3. What is an abstract class, and why is it necessary to use an abstract class when interfaces already exist?
  • Ans. 

    Abstract class is a class that cannot be instantiated and may contain abstract methods, while interfaces only define method signatures.

    • Abstract classes can have both abstract and non-abstract methods, providing a partial implementation for subclasses.

    • Interfaces can only have method signatures, requiring implementing classes to define the actual implementation.

    • Abstract classes can have constructors, member variables, an...

  • Answered by AI
  • Q4. What design patterns have you utilized in your projects?
  • Ans. 

    I have utilized design patterns such as Singleton, Factory, and Observer in my projects.

    • Singleton pattern for ensuring a class has only one instance

    • Factory pattern for creating objects without specifying the exact class

    • Observer pattern for defining a one-to-many dependency between objects

  • Answered by AI
  • Q5. Can you illustrate the architecture of your application?
  • Ans. 

    The application architecture follows a microservices design pattern with a front-end client communicating with multiple back-end services.

    • Front-end client communicates with back-end services via APIs

    • Back-end services are independent and handle specific functionalities

    • Data is stored in a distributed database for scalability

    • Use of containerization for deployment and scaling

    • Message queues for asynchronous communication be...

  • Answered by AI
Round 2 - Technical 

(10 Questions)

  • Q1. Given a list of strings that may contain duplicates, return a list of the duplicate strings using the most efficient approach.
  • Ans. 

    Use a hash set to efficiently find duplicate strings in a list.

    • Create a hash set to store unique strings.

    • Iterate through the list of strings, adding each string to the hash set.

    • If a string is already in the hash set, add it to the list of duplicates.

    • Return the list of duplicate strings.

  • Answered by AI
  • Q2. Could you explain what your application does and the types of technology it utilizes?
  • Ans. 

    Our application is a cloud-based project management tool that helps teams collaborate and track progress.

    • Utilizes React for front-end development

    • Uses Node.js for back-end development

    • Integrates with third-party APIs for additional functionality

  • Answered by AI
  • Q3. When should we use MS SQL and NoSQL databases?
  • Ans. 

    MS SQL for structured data, NoSQL for unstructured data or high scalability

    • Use MS SQL for structured data with complex relationships and transactions

    • Use NoSQL for unstructured data or high scalability requirements

    • Consider using a combination of both for different parts of the application

    • Example: Use MS SQL for financial transactions and NoSQL for user profiles

  • Answered by AI
  • Q4. Which NoSQL database would you choose as an alternative to Elasticsearch, and what are your reasons for that choice?
  • Ans. 

    MongoDB is a popular choice as an alternative to Elasticsearch due to its flexibility and scalability.

    • MongoDB is a document-oriented NoSQL database that allows for flexible schema design, making it a good fit for a wide range of use cases.

    • MongoDB also offers powerful indexing and querying capabilities, similar to Elasticsearch.

    • MongoDB's horizontal scalability and sharding capabilities make it suitable for handling larg...

  • Answered by AI
  • Q5. What are the differences between MongoDB and PostgreSQL?
  • Ans. 

    MongoDB is a NoSQL database while PostgreSQL is a relational database management system.

    • MongoDB is schema-less, allowing for flexible data models, while PostgreSQL enforces a predefined schema.

    • MongoDB uses a document-based data model with JSON-like documents, while PostgreSQL uses tables with rows and columns.

    • MongoDB is better suited for applications with large amounts of unstructured data, while PostgreSQL is better f...

  • Answered by AI
  • Q6. What are the differences between conventional URLs and attribute URLs in .NET Core Web API?
  • Ans. 

    Conventional URLs use query parameters while attribute URLs use route parameters in .NET Core Web API.

    • Conventional URLs use query parameters to pass data in the URL, while attribute URLs use route parameters in the route template.

    • Conventional URLs are more flexible as they allow for optional parameters, while attribute URLs are more rigid in their structure.

    • Attribute URLs are more readable and provide a cleaner way to ...

  • Answered by AI
  • Q7. What is the working mechanism of OAuth authorization?
  • Ans. 

    OAuth authorization is a protocol that allows a user to grant limited access to their resources without sharing their credentials.

    • OAuth allows a user to grant access to their resources to a third-party application without sharing their credentials.

    • It involves the exchange of tokens between the user, the third-party application, and the resource server.

    • OAuth uses authorization codes, access tokens, and refresh tokens to...

  • Answered by AI
  • Q8. What steps do you take to ensure that an application remains maintainable?
  • Ans. 

    To ensure maintainability, I follow coding best practices, use version control, write clean and modular code, document thoroughly, and conduct regular code reviews.

    • Follow coding best practices such as SOLID principles and design patterns

    • Use version control system like Git to track changes and collaborate with team members

    • Write clean and modular code to make it easier to understand and update

    • Thoroughly document code, in...

  • Answered by AI
  • Q9. Which design patterns have you utilized in your work?
  • Ans. 

    I have utilized design patterns such as Singleton, Factory, and Observer in my work.

    • Singleton pattern for ensuring a class has only one instance

    • Factory pattern for creating objects without specifying the exact class

    • Observer pattern for defining a one-to-many dependency between objects

  • Answered by AI
  • Q10. How does Repository Pattern help in maintaining your codebase
  • Ans. 

    Repository Pattern helps in separating data access logic from business logic, improving code maintainability.

    • Encapsulates the logic required to access data from the data source, providing a clean separation between data access and business logic.

    • Promotes code reusability by allowing different parts of the application to use the same data access logic without duplicating code.

    • Facilitates unit testing by enabling the moc...

  • Answered by AI

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (3)

Intern Interview Questions & Answers

user image Anonymous

posted on 25 Oct 2024

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

Two questions to solved (difficulty was easy to medium)
1) Based bit manipulaqtion
2) Based on recussion

Round 2 - Technical 

(6 Questions)

  • Q1. Asked to solved a string problem
  • Q2. Questions based on oops
  • Q3. Questions based on excepton hadling
  • Q4. Self introduction
  • Q5. About projects in resume
  • Q6. Would you be willing to work in banglore?
  • Ans. 

    Yes, I am willing to work in Bangalore.

    • I am open to relocating for the right opportunity.

    • I have heard great things about the tech industry in Bangalore.

    • I am excited about the prospect of working in a diverse and vibrant city like Bangalore.

  • Answered by AI

Intern Interview Questions asked at other Companies

Q1. There is a housing society “The wasteful society”. You collect all the household garbage and sell it to 5 different businesses: a. Compost Manufacturer, b. Plastic Recycler, c. Paper Recycler, d. Metal Recycler, e. Miscellaneous. Determine ... read more
View answer (8)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Basic DSA from the hacker rank website

Round 2 - Technical 

(1 Question)

  • Q1. Basic to medium questions on javascript, nodejs, MySQL joints, html5 tags
Round 3 - Technical 

(1 Question)

  • Q1. Real life problems, Use cases

Interview Preparation Tips

Interview preparation tips for other job seekers - I have applied for Full stack developer role. Be strong at real time implementations and use cases

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Opps, overloading and overriding, factory n singleton patteren
  • Q2. Collections HashMap internal working

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (3)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. More of your day to day activities as an engineering manager
  • Q2. Status reporting, Matrices EM should maintain,Risks and Mitigations , Conflict Resolution,
Round 2 - Technical 

(2 Questions)

  • Q1. System Architecture
  • Q2. Basic Java collections like streams, collections , garbage collection , spring boot basic working
Round 3 - One-on-one 

(2 Questions)

  • Q1. Team management
  • Q2. Project execution

Engineering Manager Interview Questions asked at other Companies

Q1. System Design - how would design a trading system, what db, cloud you would consider and why? how would ensure data is real time not near real time? How would you set up devOps for this ?
View answer (1)

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.

Lead Engineer Interview Questions asked at other Companies

Q1. What is the resistance value of the tripping and closing coil of a VCB?
View answer (8)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Approached by Company and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Java internals, Multithreading
  • Q2. SQL, Project Related, Problem Solving

Software Engineer2 Interview Questions asked at other Companies

Q1. - Given a water -tight orientable 2-manifold, how to find if a point is inside or outside its volume? - Given a bunch of points with their coordinates, how to merge closeby points together? - How to determine if the normals of the two trian... read more
View answer (1)
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.

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (3)
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

Senior Cloud Operations Engineer Interview Questions asked at other Companies

Q1. How can you manage multiple nodes and clusters in a cloud environment?
View answer (1)

Top trending discussions

View All
Interview Tips & Stories
2w (edited)
timepasstiwari
·
A Digital Markter
Nailed the interview, still rejected
Just had the BEST interview ever – super positive and encouraging! But got rejected. Interviewer said I was the most prepared, knew it was a full-time role (unlike others), and loved my answers. One of my questions was even called "the best ever asked!" He showed me around, said I was exactly what they wanted, and would get back by Friday. I was so hyped! Then today, I got the rejection email. No reason given, just "went with someone else." Feels bad when your best isn't enough. Anyone else been there? How'd you cope?
Got a question about OpenText Technologies?
Ask anonymously on communities.

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 Javascript, Java, 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
What are the most common questions asked in OpenText Technologies HR round?

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

  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.8/5

based on 152 interview experiences

Difficulty level

Easy 20%
Moderate 67%
Hard 12%

Duration

Less than 2 weeks 66%
2-4 weeks 19%
4-6 weeks 8%
6-8 weeks 5%
More than 8 weeks 3%
View more

Interview Questions from Similar Companies

Google Interview Questions
4.4
 • 889 Interviews
Amdocs Interview Questions
3.7
 • 528 Interviews
Adobe Interview Questions
3.9
 • 247 Interviews
Salesforce Interview Questions
4.0
 • 233 Interviews
Chetu Interview Questions
3.3
 • 190 Interviews
24/7 Customer Interview Questions
3.5
 • 179 Interviews
Dassault Systemes Interview Questions
3.9
 • 175 Interviews
AVASOFT Interview Questions
2.9
 • 173 Interviews
Oracle Cerner Interview Questions
3.7
 • 160 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
Lead Software Engineer- Security Champion

Bangalore / Bengaluru

8-13 Yrs

₹ 16.25-46.2 LPA

Sr. Quality Assurance Engineer

Bangalore / Bengaluru

10-12 Yrs

Not Disclosed

Quality Assurance and Automation Engineer

Bangalore / Bengaluru

3-8 Yrs

Not Disclosed

Explore more jobs
Software Engineer
1.1k salaries
unlock blur

₹7.5 L/yr - ₹24 L/yr

Senior Software Engineer
1k salaries
unlock blur

₹12.7 L/yr - ₹39.5 L/yr

Lead Software Engineer
405 salaries
unlock blur

₹16.1 L/yr - ₹50 L/yr

Associate Software Engineer
391 salaries
unlock blur

₹6.8 L/yr - ₹13 L/yr

Software Developer
254 salaries
unlock blur

₹7.3 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
write
Share an Interview