OpenText interview experience Real time questions & tips from candidates to crack your interview

Software Developer

OpenText
upvote
share-icon
2 rounds | 3 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 5 months
Topics: Testing, Aptitude, Reasoning, Communication, Verbal Skills, Coding.
Tip
Tip

Tip 1 : Practice in front of mirror
Tip 2 : Communication should be good
Tip 3 : Practice many questions of aptitude, Reasoining and coding

Application process
Where: Campus
Eligibility: No criteria
Resume Tip
Resume tip

Tip 1 : Highlight skills on resume
Tip 2 : Mention at least one internship experience

Interview rounds

01
Round
Medium
Online Coding Test
Duration60 minutes
Interview date2 Jun 2014
Coding problem2

- In Morning 
- Environment was good
- No significant activity
- Interview was average

1. Data Structures Question

Design a data-structure SpecialStack that supports all the stack operations like push(), pop(), isEmpty(), isFull() and an additional operation getMin() which should return minimum element from the SpecialStack. Your task is to complete all the functions, using stack data-Structure.

->> Input:
Stack: 18 19 29 15 16

->> Output: 15
Explanation:
The minimum element of the stack is 15.

Problem approach

Answer:

You just have to complete 5 functions, push() which takes the stack and an integer x as input and pushes it into the stack; pop() which takes the stack as input and pops out the topmost element from the stack; isEmpty() which takes the stack as input and returns true/false depending upon whether the stack is empty or not; isFull() which takes the stack and the size of the stack as input and returns true/false depending upon whether the stack is full or not (depending upon the
given size); getMin() which takes the stack as input and returns the minimum element of the stack.

Tips : Hands on Opertaing system concepts like PUSH, POP

2. Design a stack that supports getMin() in O(1) time and O(1) extra space

Moderate
15m average time
85% success
0/80
Asked in companies
RazorpayFlipkartAdobe

Create a stack data structure that allows operations such as push (adding an element), pop (removing the top element), top (retrieving the top element), and also provides a way to retrieve the minimum element in constant time.


Implement the following public functions :

1. push(data) :
This function should take one argument of type integer. It pushes the element into the stack and returns nothing.

2. pop() :
It pops the element from the top of the stack and returns nothing.

3. top() :
It returns the element being kept at the top of the stack.

4.  getMin() :
It returns the smallest element present in the stack.
Operations Performed on the Stack:
Query-1(Denoted by an integer 1): Pushes integer data to the stack. (push function)

Query-2(Denoted by an integer 2): Pops the data kept at the top of the stack. (pop function)

Query-3(Denoted by an integer 3): Fetches and returns the data being kept at the top of the stack. (top function)

Query-4(Denoted by an integer 4): Returns the smallest element present in the stack. (getMin() function)
Problem approach

step 1- In the first test case for
query 
step 2- push(2) Insert 2 into the stack.
The stack will be {2}
step 3- push(3) Insert 3 into the stack.
The stack will be {2 3}
step 4- pop() Remove top element from stack 
Poped element will be 3 the
stack will be {2}
step 5 -getMin() Return the minimum element
min element will be 2 
step 6- push(1) Insert 1 into the stack.
The stack will be {2 1}
step 7- getMin() Return the minimum element
min element will be 1

Try solving now
02
Round
Easy
HR Round
Duration20 minutes
Interview date8 Jan 2014
Coding problem1

- Morning time
- Environment was good.
- No
- Interview was good

1. Basic HR Questions

1- Introduce yourself

2- Why you wants to join Open Text? 

3- Do you have any other offers? 

4- What are your expectations? 

5- What is your strength and weakness? 

6 - What was your hard phase of life?


 

Problem approach

Tip 1 : Don't be excited and emotional during any questions
Tip 2 : Be calm and give appropriate answer
Tip 3 : Don't tell very lengthy stories

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is the purpose of the < title > tag in HTML?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
4 rounds | 8 problems
Interviewed by Amazon
5532 views
0 comments
0 upvotes
Analytics Consultant
3 rounds | 10 problems
Interviewed by ZS Associates
572 views
0 comments
0 upvotes
company logo
SDE - Intern
1 rounds | 3 problems
Interviewed by Amazon
2063 views
0 comments
0 upvotes
company logo
SDE - 2
4 rounds | 6 problems
Interviewed by Expedia Group
1538 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Software Developer
5 rounds | 14 problems
Interviewed by Microsoft
3478 views
1 comments
0 upvotes
company logo
Software Developer
6 rounds | 12 problems
Interviewed by SAP Labs
2277 views
0 comments
0 upvotes
company logo
Software Developer
3 rounds | 8 problems
Interviewed by Tata Consultancy Services (TCS)
0 views
0 comments
0 upvotes