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

Updated 23 Aug 2024

OpenText Technologies Engineering Intern Interview Experiences for Freshers

5 interviews found

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 Feb 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Frequency of words in sentences.
  • Ans. 

    Analyzing the frequency of words in sentences.

    • Split the sentence into words using spaces as delimiter

    • Create a dictionary to store word frequencies

    • Iterate through the words and update the frequency count in the dictionary

    • Return the dictionary with word frequencies

  • Answered by AI
  • Q2. Then Hr, about me, my projects overview

Interview Preparation Tips

Interview preparation tips for other job seekers - It’s an information based company so, DSA will not be that difficult

Skills evaluated in this interview

Engineering Intern Interview Questions & Answers

user image Divyanshu Vig

posted on 13 Feb 2024

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

Normal coding round with 2 basic code questions

Round 2 - HR 

(2 Questions)

  • Q1. About myself and explaination
  • Q2. Basic personality of someone
  • Ans. 

    The basic personality of someone refers to their fundamental traits, behaviors, and characteristics.

    • Personality is a combination of traits, such as introversion or extroversion, openness, conscientiousness, agreeableness, and neuroticism.

    • It can also include behaviors, such as being organized, punctual, or assertive.

    • Characteristics like being optimistic, empathetic, or ambitious are also part of someone's personality.

    • Pe...

  • Answered by AI

Engineering Intern Interview Questions Asked at Other Companies for Fresher

asked in Tata Steel
Q1. What the final product of blast furnace? What is the composition ... read more
asked in Tesla
Q2. What type of reaction occurs on the surface of most metals when e ... read more
asked in Tesla
Q3. How would you measure 10^-6m surface defects in the surface of ba ... read more
Q4. A and B invest in a business in the ratio 3 : 2. If 5% of the tot ... read more
asked in Micro Labs
Q5. Print the second largest element? Reverse the string and print th ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

2 leetcode medium questions

Round 3 - HR 

(1 Question)

  • Q1. Basic hr questions like why do you want to join opentext , introduce yourself, a brief about your projects and skills

Interview Preparation Tips

Interview preparation tips for other job seekers - read your resume carefully and be confident and solve both the question in coding round otherwise you will not get shortlisted
Round 1 - Coding Test 
Round 2 - One-on-one 

(1 Question)

  • Q1. Inheritance, Polymorphism, OOPS Concepts, Coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on OOPS Concepts and Coding Problems

OpenText Technologies interview questions for designations

 Software Engineering Manager

 (1)

 Engineering Manager

 (1)

 Intern

 (13)

 Software Developer Intern

 (6)

 Software Engineer Intern

 (3)

 Lead Test Engineering

 (1)

 Senior Engineering Lead

 (1)

 Software Trainee Intern

 (1)

I applied via Campus Placement

Round 1 - Coding Test 

Coding

Round 2 - HR 

(3 Questions)

  • Q1. Where do you see yourself in 5 years?
  • Q2. What are your strengths and weaknesses?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - coding round should do well and perform good in interview with nice presence

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Computer networking, oops, programming

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

OpenText Technologies Interview FAQs

How many rounds are there in OpenText Technologies Engineering Intern interview for freshers?
OpenText Technologies interview process for freshers usually has 2 rounds. The most common rounds in the OpenText Technologies interview process for freshers are Coding Test, HR and Resume Shortlist.
How to prepare for OpenText Technologies Engineering Intern interview for freshers?
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 Agile Development, B.Tech, C, C++ and Java.
What are the top questions asked in OpenText Technologies Engineering Intern interview for freshers?

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

  1. Frequency of words in sentenc...read more
  2. basic personality of some...read more
  3. Inheritance, Polymorphism, OOPS Concepts, Coding questi...read more

Tell us how to improve this page.

OpenText Technologies Engineering Intern Interview Process for Freshers

based on 3 interviews

1 Interview rounds

  • Coding Test Round
View more

Interview Questions from Similar Companies

Google Interview Questions
4.4
 • 843 Interviews
Amdocs Interview Questions
3.7
 • 518 Interviews
Adobe Interview Questions
3.9
 • 235 Interviews
Salesforce Interview Questions
4.0
 • 230 Interviews
24/7 Customer Interview Questions
3.5
 • 176 Interviews
Chetu Interview Questions
3.3
 • 176 Interviews
AVASOFT Interview Questions
2.9
 • 166 Interviews
Dassault Systemes Interview Questions
4.0
 • 164 Interviews
Oracle Cerner Interview Questions
3.7
 • 158 Interviews
View all
OpenText Technologies Engineering Intern Salary
based on 16 salaries
₹1 L/yr - ₹8.8 L/yr
20% more than the average Engineering Intern Salary in India
View more details

OpenText Technologies Engineering Intern Reviews and Ratings

based on 17 reviews

4.1/5

Rating in categories

4.1

Skill development

4.4

Work-life balance

4.0

Salary

3.5

Job security

4.1

Company culture

3.4

Promotions

4.0

Work satisfaction

Explore 17 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