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

I was interviewed in May 2017.

Interview Questionnaire 

17 Questions

  • Q1. What is angular js
  • Ans. 

    AngularJS is a JavaScript framework for building dynamic web applications.

    • AngularJS is a client-side MVC framework.

    • It allows developers to build single-page applications.

    • It extends HTML with new attributes and tags.

    • AngularJS uses two-way data binding to automatically synchronize data between the model and the view.

    • It provides dependency injection and modularization features.

    • Some popular examples of websites built with

  • Answered by AI
  • Q2. What is directive
  • Ans. 

    A directive is a programming construct that provides instructions to a compiler or interpreter.

    • Directives are used to control the behavior of a program or to provide additional information to the compiler or interpreter.

    • They are typically written as special comments or statements in the code.

    • Examples of directives include #include in C/C++ to include header files, #pragma to control compiler-specific behavior, and #def

  • Answered by AI
  • Q3. What is factory
  • Ans. 

    A factory is a design pattern that provides an interface for creating objects of a certain class.

    • A factory encapsulates the object creation logic and hides it from the client.

    • It allows the client to create objects without knowing the specific class or implementation details.

    • Factories can be used to create different types of objects based on certain conditions or parameters.

    • They promote loose coupling and flexibility in...

  • Answered by AI
  • Q4. What is services
  • Ans. 

    Services are software components that perform specific tasks or provide functionality to other software applications.

    • Services are self-contained and independent modules that can be accessed by other software components.

    • They can be used to handle business logic, data processing, communication with external systems, etc.

    • Examples of services include web services, microservices, RESTful APIs, and cloud services.

    • Services ca...

  • Answered by AI
  • Q5. What is the difference between factory and service
  • Ans. 

    A factory is responsible for creating and managing objects, while a service is responsible for providing specific functionality or performing tasks.

    • A factory is used to create and initialize objects, often based on certain parameters or configurations.

    • A service is a component that provides specific functionality or performs tasks for other components or systems.

    • Factories are commonly used in object-oriented programming...

  • Answered by AI
  • Q6. Write a program to sort
  • Ans. 

    A program to sort an array of strings.

    • Use a sorting algorithm like bubble sort, insertion sort, or quicksort.

    • Compare strings using a comparison function.

    • Implement the sorting algorithm in a function that takes the array as input and modifies it in place.

  • Answered by AI
  • Q7. Write a program to display words separated by space
  • Ans. 

    This program displays words separated by spaces.

    • Use an array of strings to store the words.

    • Iterate through the array and print each word followed by a space.

    • Exclude the space after the last word.

  • Answered by AI
  • Q8. What is provider
  • Ans. 

    A provider is a software component or service that supplies data, functionality, or resources to other software applications.

    • A provider is responsible for delivering data, services, or resources to other software components or applications.

    • Providers can be APIs, libraries, frameworks, or any other software component that offers functionality to other software.

    • Examples of providers include database management systems, c

  • Answered by AI
  • Q9. What is$watch and $ digest
  • Ans. 

    The $watch and $digest are two important concepts in AngularJS for data binding and updating the view.

    • $watch is a function in AngularJS that allows you to watch for changes in a specific variable or expression.

    • $digest is a function in AngularJS that triggers a process called the digest cycle, which updates the bindings and synchronizes the model and view.

    • The $watch function takes two parameters: the variable or express...

  • Answered by AI
  • Q10. What is ng-repeat
  • Ans. 

    ng-repeat is a directive in AngularJS used to repeat HTML elements for each item in an array.

    • ng-repeat is used to create a loop in AngularJS

    • It is commonly used to display a list of items from an array

    • The directive is placed on an HTML element and uses the 'item in array' syntax

    • It can also be used with filters and sorting

    • Example:

    • {{ item }}
  • Answered by AI
  • Q11. How to get value from ng-getValue=""
  • Ans. 

    ng-getValue is not a standard attribute in Angular. It may be a custom directive or a typo.

    • Check if ng-getValue is a custom directive or attribute in your Angular application

    • Verify if it is being used correctly in the HTML template

    • If it is a typo, correct it to the appropriate attribute or directive

  • Answered by AI
  • Q12. How do you develop CSS without using bootstrap
  • Ans. 

    Developing CSS without using bootstrap involves writing custom CSS code to style web pages.

    • Write CSS code to define styles for HTML elements

    • Use CSS selectors to target specific elements

    • Apply CSS properties to modify the appearance of elements

    • Create media queries for responsive design

    • Implement CSS animations and transitions

    • Optimize CSS code for performance

  • Answered by AI
  • Q13. What is CDN
  • Ans. 

    CDN stands for Content Delivery Network. It is a distributed network of servers that deliver web content to users based on their geographic location.

    • CDN improves website performance by reducing latency and increasing page load speed.

    • CDN caches content in multiple locations, allowing users to access it from a server closest to them.

    • CDN can handle high traffic loads and distribute it across multiple servers.

    • Popular CDN p...

  • Answered by AI
  • Q14. How do you display different color in atable using css for odd even rows
  • Ans. 

    To display different colors in a table using CSS for odd and even rows, you can use the :nth-child() selector.

    • Use the :nth-child(odd) selector to target odd rows and apply a specific color using the background-color property.

    • Use the :nth-child(even) selector to target even rows and apply a different color using the background-color property.

    • For example, you can use CSS code like this: tr:nth-child(odd) { background-c...

  • Answered by AI
  • Q15. How do you develop CSS for different devices
  • Ans. 

    To develop CSS for different devices, use media queries, responsive design principles, and testing on various devices.

    • Use media queries to apply different CSS styles based on the device's screen size

    • Follow responsive design principles to ensure the layout adapts to different devices

    • Test the CSS on various devices to ensure compatibility and responsiveness

  • Answered by AI
  • Q16. What is $ rootscope
  • Ans. 

    The $rootscope is a service in AngularJS that provides a global scope for sharing data between controllers.

    • It is a part of the AngularJS framework.

    • It is used to share data between controllers.

    • It is a singleton object accessible throughout the application.

    • It can be used to broadcast and listen to events.

  • Answered by AI
  • Q17. What is jquery
  • Ans. 

    jQuery is a fast, small, and feature-rich JavaScript library that simplifies HTML document traversal and manipulation, event handling, and animation.

    • jQuery is a JavaScript library.

    • It simplifies HTML document traversal and manipulation.

    • It provides easy event handling and animation.

    • jQuery is fast, small, and feature-rich.

  • Answered by AI

Interview Preparation Tips

Skills: angular JS, Java Programming, css, Javascript

Skills evaluated in this interview

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)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed 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

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)
OpenText Technologies Interview Questions and Answers for Freshers
illustration image
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed 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.

Top OpenText Technologies Senior UX Designer Interview Questions and Answers

Q1. Can you describe your approach to a design task and outline your process?
View answer (1)

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)

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. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

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
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 (42)

Get interview-ready with Top OpenText Technologies Interview Questions

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

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)

Jobs at OpenText Technologies

View all
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 tripping & closing coil of 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
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Linux env setup
  • Ans. 

    Setting up a Linux environment involves installing the operating system, configuring network settings, and installing necessary software.

    • Install Linux distribution (e.g. Ubuntu, CentOS)

    • Configure network settings (IP address, DNS, etc.)

    • Install necessary software (e.g. development tools, testing frameworks)

    • Set up user accounts and permissions

  • Answered by AI
  • Q2. What are the Linux commands
  • Ans. 

    Linux commands are used to interact with the Linux operating system through the command line interface.

    • ls - list directory contents

    • cd - change directory

    • pwd - print working directory

    • mkdir - make a new directory

    • rm - remove files or directories

    • cp - copy files or directories

    • mv - move files or directories

    • grep - search for patterns in files

    • chmod - change file permissions

    • sudo - execute a command as the superuser

  • Answered by AI

Skills evaluated in this interview

Senior Test Engineer Interview Questions asked at other Companies

Q1. From Selenium -> Which Automation framework I have implemented in my project . Explain each framework components. How to handle dynamic web element. how to handle hidden element. how to upload file in selenium, where hashmap is used in s... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Find the largest no. in arrary
  • Ans. 

    Find the largest number in an array of strings.

    • Convert each string in the array to a number using parseInt()

    • Use Math.max() to find the largest number in the array

  • Answered by AI
  • Q2. Two sum problem directly from leet code

Skills evaluated in this interview

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

INTERVIEWS

Indus Valley Partners

No Interviews

INTERVIEWS

MathCo

No Interviews

INTERVIEWS

OpenText Technologies

No Interviews

INTERVIEWS

OpenText Technologies

No Interviews

INTERVIEWS

Indus Valley Partners

No Interviews

INTERVIEWS

Indus Valley Partners

No Interviews

INTERVIEWS

Bitcomm Technologies

No Interviews

INTERVIEWS

Indus Valley Partners

No Interviews

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 Lock Unlock

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
903 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
362 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Lead Software Engineer
330 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Software Developer
221 salaries
unlock blur Lock Unlock

₹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