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 Software Developer Intern Interview Questions and Answers for Freshers

Updated 30 Nov 2024

OpenText Technologies Software Developer Intern Interview Experiences for Freshers

6 interviews found

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

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

Round 1 - Coding Test 

Coding round was there. Two coding questions were asked to solve in 1 hour. The difficulty was easy to medium.Leetcode questions of arrays and strings.

Round 2 - Technical 

(2 Questions)

  • Q1. It was an online tech interview. There were two panelists. One asked me about my projects and gave me one coding question to solve which was based on matrices. And i was supposed to explain the approach an...
  • Q2. After solving the question. In the same interview zoom meet HR asked me something about me and my family and thats it.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do coding regularly
Be confident
Communicate well
And just relax before 2 hours of the interview....You are going to do awesome...
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java and python based questions

Software Developer Intern Interview Questions Asked at Other Companies for Fresher

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more

Software Developer Intern Interview Questions & Answers

user image Rajesh Choudary Mukkamala

posted on 17 Apr 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Coding based on dsa

Round 2 - Technical 

(3 Questions)

  • Q1. OOps question on inheritance
  • Q2. Trees ,DP and linkedlist qustion
  • Q3. Above mention quetions based on that

Interview Preparation Tips

Interview preparation tips for other job seekers - Foucus on dsa
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Two medium hackerrank questions

OpenText Technologies interview questions for designations

 Software Engineer Intern

 (3)

 Software Developer

 (4)

 Senior Software Developer

 (2)

 Software Trainee Intern

 (1)

 Engineering Intern

 (5)

 Software Engineer Intern Trainee

 (1)

 Intern

 (13)

 Software Engineer

 (13)

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

I applied via Campus Placement and was interviewed in Mar 2023. 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 

1 HOURS , 2 QUESTIONS

Round 3 - HR 

(3 Questions)

  • Q1. BASICS (5 TO 10 MINS)
  • Q2. INTRODUCTION (DETAILED)
  • Q3. PROJECTS ( 2 IN DETAILED)

I applied via Company Website and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

After resume shortlisting we had aptitude + coding test .it was an online test with only one coding question. The question was of easy to medium level mostly from array's.

Round 2 - Technical 

(1 Question)

  • Q1. Interview was medium level. Questions we asked from dbms, cn ,os ,coding. The coding questions were basic . normally they asked questions on pointer and then java and oops .
Round 3 - Coding Test 

(1 Question)

  • Q1. The questions were again from implementation of sql queries .some general questions on os. and then coding questions were asked and i had to code them all. the questions will be basic .no questions from tr...
Round 4 - HR 

(1 Question)

  • Q1. Some questions on me and my family was aked if you are till this round you are selected. they wont eliminate in this round.

Interview Preparation Tips

Interview preparation tips for other job seekers - practice coding well. and do basic questions on string arrays linkedlist . study cn,os,dbms necessarily.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Questions on java8
  • Q2. Questions on multithreading
  • Q3. Questions on exception handling

Interview Preparation Tips

Interview preparation tips for other job seekers - First round was a coding round where interviewer asked questions randomly and were asked to optimise our code. Next round was a technical round where everyone needs to be thorough with their technical skills

Interview Questionnaire 

1 Question

  • Q1. Basic oops,basic MFC

I appeared for an interview before Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

The test included MCQ questions from SQL, Linux Commands, C/C++ programming, Logical Reasoning, Aptitude
questions. The other section was the coding round, where 2 SQL queries and 2 coding questions were there.

  • Q1. 

    Pythagorean Triplets Detection

    Determine if an array contains a Pythagorean triplet by checking whether there are three integers x, y, and z such that x2 + y2 = z2 within the array.

    Input:

    The first lin...
  • Ans. 

    Detect if an array contains a Pythagorean triplet by checking if there are three integers x, y, and z such that x^2 + y^2 = z^2.

    • Iterate through all possible triplets of numbers in the array and check if they form a Pythagorean triplet.

    • Use a nested loop to generate all possible combinations of three numbers from the array.

    • Check if the sum of squares of any three numbers is equal to the square of another number.

    • Return 'y...

  • Answered by AI
  • Q2. 

    First Unique Character in a String Problem Statement

    Given a string STR consisting of lowercase English letters, identify the first non-repeating character in the string and return it. If no such characte...

  • Ans. 

    Identify the first non-repeating character in a string and return it, or '#' if none exists.

    • Iterate through the string to count the frequency of each character

    • Iterate through the string again to find the first character with frequency 1

    • Return the first non-repeating character or '#' if none exists

  • Answered by AI
Round 2 - Face to Face 

(5 Questions)

Round duration - 70 Minutes
Round difficulty - Medium

This was a standard DSA round where I was asked to solve 2 questions and also code it in a production ready manner . After DS and Algo , I was asked some questions from OOPS and Java followed by some Unix Commands and basic concepts from Operating Systems.

  • Q1. 

    Find Duplicates in an Array

    Given an array ARR of size 'N', where each integer is in the range from 0 to N - 1, identify all elements that appear more than once.

    Return the duplicate elements in any orde...

  • Ans. 

    Find duplicates in an array of integers within a specified range.

    • Iterate through the array and keep track of the count of each element using a hashmap.

    • Return elements with count greater than 1 as duplicates.

    • Time complexity can be optimized to O(N) using a set to store duplicates.

  • Answered by AI
  • Q2. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.

    • Use three pointers - prev, current, and next to reverse the linked list in O(N) time and O(1) space complexity.

    • Update the head of the reversed linked list as the last node encountered during the reversal process.

  • Answered by AI
  • Q3. What are Serialization and Deserialization in Java?
  • Ans. 

    Serialization is the process of converting an object into a byte stream, while deserialization is the reverse process.

    • Serialization is used to persist object state or transmit objects over a network.

    • Deserialization reconstructs the object from the byte stream.

    • Java provides Serializable interface for serialization and ObjectInputStream/ObjectOutputStream classes for deserialization.

    • Example: Serializing an object to a fi

  • Answered by AI
  • Q4. Can you explain the Singleton Class in Java?
  • Ans. 

    Singleton class in Java ensures that a class has only one instance and provides a global point of access to it.

    • Singleton class restricts the instantiation of a class to one object.

    • It provides a way to access its unique instance globally.

    • Commonly implemented using a private constructor and a static method to return the instance.

    • Example: Logger class in a multi-threaded application.

  • Answered by AI
  • Q5. Can you explain piping in Unix/Linux?
  • Ans. 

    Piping in Unix/Linux allows the output of one command to be used as the input for another command.

    • Piping is done using the | symbol

    • It helps in connecting multiple commands together to perform complex operations

    • Example: ls -l | grep .txt - This command lists all files in long format and then filters out only the .txt files

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

This was a typical HR round with some standard Behavioral questions .

  • Q1. What is something about you that is not included in your resume?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAAmdocs interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Company Website and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. If fresher is attending the interview then mostly they'll ask questions from resume What are generics, UML diagram for the proper medicine suggestions based on the patient allergies to a particular drug ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with the contents of resume,
First round: versant test
Second round: Technical Interview 1
Third round: Technical Interview 2

Feedback of best of the 2 technical interviews will be considered.

IF selected will receive a call from HR

OpenText Technologies Interview FAQs

How many rounds are there in OpenText Technologies Software Developer Intern interview for freshers?
OpenText Technologies interview process for freshers usually has 2-3 rounds. The most common rounds in the OpenText Technologies interview process for freshers are Coding Test, Technical and HR.
What are the top questions asked in OpenText Technologies Software Developer Intern interview for freshers?

Some of the top questions asked at the OpenText Technologies Software Developer Intern interview for freshers -

  1. It was an online tech interview. There were two panelists. One asked me about m...read more
  2. the questions were again from implementation of sql queries .some general quest...read more
  3. Interview was medium level. Questions we asked from dbms, cn ,os ,coding. The c...read more

Tell us how to improve this page.

OpenText Technologies Software Developer Intern Interview Process for Freshers

based on 5 interviews

2 Interview rounds

  • Coding Test Round
  • Technical Round
View more
OpenText Technologies Software Developer Intern Salary
based on 7 salaries
₹1.5 L/yr - ₹10 L/yr
7% less than the average Software Developer Intern Salary in India
View more details

OpenText Technologies Software Developer Intern Reviews and Ratings

based on 5 reviews

3.0/5

Rating in categories

3.0

Skill development

3.3

Work-life balance

2.9

Salary

1.4

Job security

2.5

Company culture

2.2

Promotions

2.8

Work satisfaction

Explore 5 Reviews and Ratings
Software Engineer
1k salaries
unlock blur

₹6.5 L/yr - ₹26 L/yr

Senior Software Engineer
922 salaries
unlock blur

₹12 L/yr - ₹40 L/yr

Lead Software Engineer
386 salaries
unlock blur

₹16 L/yr - ₹50 L/yr

Associate Software Engineer
373 salaries
unlock blur

₹6.6 L/yr - ₹17 L/yr

Software Developer
238 salaries
unlock blur

₹5.7 L/yr - ₹23 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
Did you find this page helpful?
Yes No
write
Share an Interview