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 Associate Software Engineer Interview Questions and Answers

Updated 2 Dec 2024

9 Interview questions

An Associate Software Engineer was asked 6mo ago
Q. In depth questions about OOPS concepts.
Ans. 

Object-Oriented Programming (OOP) principles include encapsulation, inheritance, polymorphism, and abstraction.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (class). Example: A 'Car' class with properties like 'speed' and methods like 'accelerate()'.

  • Inheritance: Mechanism to create a new class using properties and methods of an existing class. Example: 'ElectricCar' inherits fro...

An Associate Software Engineer was asked 7mo ago
Q. Find the largest number in an array.
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

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
Q2. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Accenture
Q3. Write a function to determine if a given string is a valid passwo ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
asked in CGI Group
Q5. Frog Jump Problem Statement A frog is positioned on the first ste ... read more
An Associate Software Engineer was asked 7mo ago
Q. Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use ...
Ans. 

The Two Sum problem asks to find two indices in an array that sum up to a target value.

  • Use a hash map to store the difference between the target and each element.

  • Iterate through the array and check if the current element exists in the hash map.

  • If found, return the indices of the two numbers.

  • Example: For nums = [2, 7, 11, 15] and target = 9, return [0, 1] since nums[0] + nums[1] = 9.

An Associate Software Engineer was asked 11mo ago
Q. What are the basic concepts of 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 metho...

🔥 Asked by recruiter 2 times
An Associate Software Engineer was asked 11mo ago
Q. 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 th...

An Associate Software Engineer was asked
Q. 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 multi...

An Associate Software Engineer was asked
Q. 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 dat...

Are these interview questions helpful?
An Associate Software Engineer was asked
Q. 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 application...

An Associate Software Engineer was asked
Q. 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 t...

OpenText Technologies Associate Software Engineer Interview Experiences

14 interviews found

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

    The Two Sum problem asks to find two indices in an array that sum up to a target value.

    • Use a hash map to store the difference between the target and each element.

    • Iterate through the array and check if the current element exists in the hash map.

    • If found, return the indices of the two numbers.

    • Example: For nums = [2, 7, 11, 15] and target = 9, return [0, 1] since nums[0] + nums[1] = 9.

  • Answered by AI

Skills evaluated in this interview

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

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
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

HackerRank - 2 Questions - LinkedList(Medium), HashMap(Medium)

Round 2 - Technical 

(1 Question)

  • Q1. Questions on OOPS
Round 3 - HR 

(1 Question)

  • Q1. Why OpenText? How do you see yourself in next 5 years

Associate Software Engineer Interview Questions & Answers

user image Vikas Reddy Gorantla

posted on 29 Feb 2024

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

Basic coding questions

Round 2 - Technical 

(1 Question)

  • Q1. Based on your resume
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
No response

I applied via Campus Placement and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

2 coding questions in codility platform

Round 3 - HR 

(2 Questions)

  • Q1. Prepare basic questions
  • Q2. Tell me about youself
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Sep 2023. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Asked on Java concepts
  • Q2. Basic DSA Questions
Round 2 - Technical 

(2 Questions)

  • Q1. DSA question based on Java as primary language is Java
  • Q2. Java OOPS Concepts
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial round - Resume Based
Round 4 - One-on-one 

(1 Question)

  • Q1. Director Round - General Discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed in May 2023. There were 3 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 tips
Round 2 - Coding Test 

It was a test of two medium questions

Round 3 - HR 

(2 Questions)

  • Q1. Tell me about your projects?
  • Q2. Tell me about yourself?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just practice more and more java as opentext is all about java
Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via freshersworld and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Hacker rank medium problems

Round 2 - Technical 

(2 Questions)

  • Q1. Oops questions in depth
  • Ans. 

    Object-Oriented Programming (OOP) principles include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data within one unit (class). Example: A 'Car' class with properties like 'speed' and methods like 'accelerate()'.

    • Inheritance: Mechanism to create a new class using properties and methods of an existing class. Example: 'ElectricCar' inherits from 'Ca...

  • Answered by AI
  • Q2. Medium level dsa questions were asked.

I applied via Campus Placement and was interviewed in Sep 2022. There were 3 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 

Data Structure and Algorithms, SQL, DBMS

Round 3 - Technical 

(2 Questions)

  • Q1. Datastructure and algo, java, oops
  • Q2. Sql, dbms, html, xml

Interview Preparation Tips

Interview preparation tips for other job seekers - go and start learning dsa, practice more and more questions.

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 Associate Software Engineer 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 Resume Shortlist.
How to prepare for OpenText Technologies Associate Software Engineer 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 Hibernate, J2Ee, Oracle, SQL and Spring Boot.
What are the top questions asked in OpenText Technologies Associate Software Engineer interview?

Some of the top questions asked at the OpenText Technologies Associate Software Engineer interview -

  1. Multithreading Concept in Java Programming Langu...read more
  2. Collections Framework In Java Programming Langu...read more
  3. Exception Handling in Java Programming Langu...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 11 interview experiences

Difficulty level

Easy 17%
Moderate 83%

Duration

Less than 2 weeks 57%
2-4 weeks 29%
More than 8 weeks 14%
View more
OpenText Technologies Associate Software Engineer Salary
based on 391 salaries
₹6.8 L/yr - ₹13 L/yr
77% more than the average Associate Software Engineer Salary in India
View more details

OpenText Technologies Associate Software Engineer Reviews and Ratings

based on 41 reviews

3.5/5

Rating in categories

3.2

Skill development

4.1

Work-life balance

3.4

Salary

3.2

Job security

3.6

Company culture

3.0

Promotions

3.2

Work satisfaction

Explore 41 Reviews and Ratings
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