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 Internship Trainee Interview Questions and Answers

Updated 5 Jun 2024

OpenText Technologies Internship Trainee Interview Experiences

2 interviews found

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

It was on dsa and ask mostly on easy to medium

Round 2 - Technical 

(2 Questions)

  • Q1. Opps based questions
  • Q2. DSA problems on medium
Round 3 - HR 

(1 Question)

  • Q1. Basic hr questions

Internship Trainee Interview Questions & Answers

user image Poorna Sasank

posted on 28 May 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Coding Test 

DSA easy and med level

Round 2 - HR 

(2 Questions)

  • Q1. Communication skill
  • Q2. Projects and explanation

Interview Preparation Tips

Interview preparation tips for other job seekers - Good communication skills , needed and be confident .

Internship Trainee Interview Questions Asked at Other Companies

asked in ESAB
Q1. Tell about your UG project? How will you design a table for 1 ton ... read more
Q2. what you know abiu the technology that you are apply
Q3. What are the difgerent wavelengths at which optical fibre communi ... read more
Q4. What are timers im Microprocessor amd how can you trigger them?
Q5. How can you solve the issue if there is a network failure in the ... read more

Interview questions from similar companies

Interview Preparation Tips

General Tips: Just be confident. You may not be able to answer all the questions correctly. If you don't know the answer, be honest and confidently answer the questions that you know.
College Name: NIT SURATHKAL

Software Engineer Interview Questions & Answers

Adobe user image Devendra Bendkhale

posted on 4 Dec 2015

Interview Questionnaire 

8 Questions

  • Q1. WRITE A GENERIC SWAP FUNCTION
  • Ans. 

    A generic swap function swaps two values of any data type.

    • The function should take two parameters of any data type.

    • Use a temporary variable to store the value of one parameter.

    • Assign the value of the second parameter to the first parameter.

    • Assign the value of the temporary variable to the second parameter.

  • Answered by AI
  • Q2. SEARCH AN ELEMENT IN ROTATED SORTED LINKLIST .
  • Ans. 

    Search for an element in a rotated sorted linked list.

    • Find the pivot point where the list is rotated.

    • Divide the list into two sublists based on the pivot point.

    • Perform binary search on the appropriate sublist.

    • Handle edge cases such as empty list and list with only one element.

  • Answered by AI
  • Q3. SEARCH AN ELEMENT IN ROTATED SORTED ARRAY. WRITED A CODE FOR IT
  • Ans. 

    Search an element in a rotated sorted array

    • Find the pivot point where the array is rotated

    • Divide the array into two sub-arrays based on pivot point

    • Perform binary search on the appropriate sub-array

    • Repeat until element is found or sub-array size is 1

  • Answered by AI
  • Q4. In an Array of size 95 contain numbers in range 1 to 100. each number is at max once in the array. find the 5 missing numbers in array between 1-100
  • Ans. 

    Find 5 missing numbers in an array of size 95 containing numbers in range 1 to 100.

    • Create a boolean array of size 100 and mark the present numbers

    • Iterate through the boolean array and find the missing numbers

    • Alternatively, use a HashSet to store the present numbers and find the missing ones

  • Answered by AI
  • Q5. Given sudoku as id array of size . in a given empty cell find the possible numbers that could be possible. Asked me to write code for it
  • Ans. 

    Given a Sudoku board, find possible numbers for an empty cell.

    • Iterate through empty cells and check possible numbers using row, column, and box constraints.

    • Use a set to keep track of possible numbers for each empty cell.

    • Return the set of possible numbers for the given empty cell.

  • Answered by AI
  • Q6. Given 4 unsigned integers find their integer average (eg. (2,2,2,3) => (2+2+2+3)/4 = 2) consider integer division ) without typecasting
  • Ans. 

    Find integer average of 4 unsigned integers without typecasting

    • Add all the integers and divide by 4

    • Use bit shifting to divide by 4

    • Handle overflow by using long long data type

    • Use unsigned int data type for input

  • Answered by AI
  • Q7. Write a code to identify wheter given processor is of 32 bit architecture or 64 bit architecture
  • Ans. 

    Code to identify 32 bit or 64 bit architecture of a processor

    • Check if the operating system is 32 bit or 64 bit

    • If OS is 32 bit, processor is 32 bit

    • If OS is 64 bit, check if processor supports 64 bit architecture

    • Use CPUID instruction to check if processor supports 64 bit architecture

  • Answered by AI
  • Q8. Convert a binary number into base 64 integer
  • Ans. 

    Convert binary number to base 64 integer

    • Divide the binary number into groups of 6 bits

    • Convert each group of 6 bits to decimal

    • Map the decimal value to the corresponding base 64 character

    • Concatenate the base 64 characters to form the final integer

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: SIMPLE CODING QUESTIONS SPEED MATTERS.
Duration: 60 minutes
Total Questions: 3

Skills: Analytics And Coding
College Name: IIT Guwahati

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Solving puzzles(25 horses,ant and sweets,height of a building..) try as many as possible before appearing for interview
  • Q2. If experienced , then project details of previous companies a must prepare question
  • Q3. Writing test cases for random scenarios
  • Q4. Programming in whatsoever language you r comfortable with, basic coding problems of DS,Algos. eg. Zigzag tree traversal algo,random linked list copy
  • Q5. Some people asked me questions related to the work i will do if hired in the project
  • Q6. Be genuine in ur CV, and be prepared with everything you write there.

Interview Preparation Tips

College Name: Na

I applied via Referral

Interview Preparation Tips

Round: Test
Experience: I appeared for Amdocs through Campus Recruitment Process. Section 1,2,3 was not tough, if you have practiced RD Sharma then don't worry about these sections as it was the easiest part of the written test. After that there were two coding questions in which you can choose any language(C/C++/Java) to write your code. The code were easy, I mean it wasn't like Codechef problems. If you have ever made the programming assignments by yourself then you would definitely be able to crack this section. Even if you didn't make it then you can practice coding questions like finding H.C.F, L.C.M, Removing redundant number from array, finding whether the string is palindrome or not, finding whether the number is Armstrong number or not,etc,. Now comes the technical section that was little bit tough for those who haven't studied about UNIX ever. It was consisting of C, DBMS and Unix. C questions can easily be attempt by completing "Test your C Skills by Yashwant Kanedtkar", In DBMS most of the questions were query based, some PL/SQL questions were also there, in Unix most of the questions were from VI editor commands and some linux commands like sed, uniq, fdisk and very few questions were from shell scripting like, what will be the output of echo*. Overall the test was easy, since it is easy for everyone so you need to do lots of practice because out of more than 200 students only 39 cleared the written test in our campus.
Duration: 2:30 minutes
Total Questions: 82

Skills: Implementation Of Code Using OOPS, Coding Skills, Database Management, Ability To Think, Ability To Cope Up With Stress, Ability To Deal Diplomatically, 1)communication
College Name: NIT Sikkim

Interview Preparation Tips

Round: Test
Experience: The selections process started with a presentation by the company where they introduced you to the environment of the company. It was followed by a written subjective test which basically tested your programming skills. Questions were based on arrays, classes and OOP concepts. Last part of the paper was an essay asking about the city you live. Total 3 questions were asked which had to answered in 25 minutes time. Total no. of students appeared for the test was around 30.

Round: Technical Interview
Experience: After the test only 5 students were shortlisted for interview. Interview for each candidate began with a technical round where they asked us to pick one programming language we are comfortable with. I picked C++. They asked me very basic concepts example Function overloading, Operator overloading, 2-D array concepts other OOP concepts.

Round: HR Interview
Experience: It went very smooth for me. They asked me what I know about the company. Though i couldn't remembered much I told them two points and then smiled. Then they asked me to tell me about myself and our NITK campus. I answered that aptly. Then they started asking serious questions i.e. if I want to go for higher studies, why am I not joining ARMY (I told them my father is in armed forces). Then they asked me if I want to work in Chennai or Bangalore, I told them Bangalore and also the reason behind it. After that, it was a casual interaction and I became quite sure about my selection.

General Tips: I think one thing which matters the most is your self-confidence. Hard-work and dedication are very important of-course but it is your confidence that separates you from other individuals. Also for most of the interviews they do not ask very big concepts, they will assess you on basic concepts, how much you know about the subject. So, be it any language, have your basic concept clear first and while giving interviews speak confidently.
This was my first campus interview I got selected and I cleared it. So yes, I was in a little shock and surprise to clear the interview.
Also one thing I forgot to mention was that the pointer cut-off for this company was 7.5 while I had only 7.11. Still I got selected. It does not matters much how much pointer you have. What matters at last is how much thorough you are with the subject. Well till morning I was not even sure if I am sitting for this company and by I got placed.
Skill Tips: Though there are huge resources of materials lying online and market, don’t run in all directions. Choose one book and an online source and start preparing it.
In my case I studied Sumita Arora for C++ and it proved to be quite beneficial for me. Also solve aptitude questions for programming available online like indiabix.com. It provides a lot of help in understanding and applying your concepts and also for time limit.
For aptitude question the best book available is "Quantitative aptitude by Arun Sharma".
For C++ language focus mainly on OOPS concepts, its features and basic building blocks like arrays, pointers etc.

Skills:
College Name: NIT Surathkal

I applied via Recruitment Consultant and was interviewed in May 2019. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is your day to day work?
  • Q2. What new you have to offer the organization?
  • Q3. The most recent issues that you faced in the organization?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be true to yourself and the interviewer, he/she doesn't want you to be full of all technical skills. He/she wants you to be atleast good at the things mentioned in your resume. Showcase that you're ready to switch to any language even if it is uncomfortable for you

I applied via Naukri.com and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic oop
  • Q2. Previous projects and walktrough of one of the project, if any
  • Q3. Basic English test on a computer

Interview Preparation Tips

Interview preparation tips for other job seekers - The first step of the interview is the basic communication skills, which is taken on computer, try to listen carefully, most of the questions are only about what you have comprehend from the automated voice when played over.

OOP is very basic, they may ask some real life examples.

If you have worked previously, they may ask you about one of your projects. What technologies have you used ans why.

Interview Questionnaire 

5 Questions

  • Q1. Technical round was basically a White board interview .I have been asked to write few C# codes in order to explain OOPs concept .
  • Q2. What's MVC Life cycle . Explain how does AJAX call happen . How can you pass one data set or single data from one view to a partial view .
  • Ans. 

    MVC life cycle, AJAX call and passing data from view to partial view.

    • MVC life cycle includes request routing, controller instantiation, action execution, and rendering of the view.

    • AJAX call is initiated by sending an HTTP request to the server and receiving a response in the form of JSON or XML data.

    • To pass data from one view to a partial view, we can use ViewBag, ViewData, or TempData.

    • ViewBag is a dynamic object that ...

  • Answered by AI
  • Q3. What's Abstract class , what's the use of it . What's interface , how it appears to a important part of Service layer.
  • Ans. 

    Abstract class is a class that cannot be instantiated, while interface is a contract that defines methods.

    • Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have instance variables, while interface cannot.

    • Abstract class is used for code reusability and polymorphism, while interface is used for achieving abstraction and loose coupling.

    • In serv...

  • Answered by AI
  • Q4. Usual HR didn't discussion.
  • Q5. It was not question answer round . A formal interaction with high level people of the organization , through which they can try to see you interpersonal skills.

Interview Preparation Tips

Round: Resume Shortlist
Experience: Asp.net MVC , C# , JavaScript, jQuery, Html

Skills evaluated in this interview

OpenText Technologies Interview FAQs

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

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

  1. DSA problems on med...read more
  2. Opps based questi...read more
  3. Communication sk...read more

Tell us how to improve this page.

OpenText Technologies Internship Trainee Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

OpenText Technologies Internship Trainee Reviews and Ratings

based on 3 reviews

4.2/5

Rating in categories

4.2

Skill development

4.5

Work-life balance

4.5

Salary

2.5

Job security

4.5

Company culture

4.2

Promotions

4.5

Work satisfaction

Explore 3 Reviews and Ratings
Software Engineer
994 salaries
unlock blur

₹6.3 L/yr - ₹26 L/yr

Senior Software Engineer
912 salaries
unlock blur

₹12 L/yr - ₹36 L/yr

Lead Software Engineer
385 salaries
unlock blur

₹16 L/yr - ₹50 L/yr

Associate Software Engineer
367 salaries
unlock blur

₹6.8 L/yr - ₹12 L/yr

Software Developer
233 salaries
unlock blur

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