Upload Button Icon Add office photos

Filter interviews by

Hipolin Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

Guestimates, sql questions

Round 2 - Coding Test 

Sql questions geeks for geeks

Interview Preparation Tips

Interview preparation tips for other job seekers - Not very tough on skillset but grilled on business cases

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

Interview Questionnaire 

5 Questions

  • Q1. Round 1 was online MCQ test which has question from aptitude and logical reasoning.
  • Q2. Round 2 was technical round in which they have asked 2 question: 1. Triplet sum question. 2. Implement getmin () in stack in O(1) time and space.
  • Q3. Round 3 was also a technical round we have discussed about our projects and then they have asked two puzzle.
  • Q4. Round 4 was HR round and company CTO was taking this round he has asked some usual HR question and then he asked which is your favourite app.
  • Q5. I was not selected. They have not selected anyone from our college. There was three students in last round but no one was selected

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident especially in CTO round.

I appeared for an interview in Aug 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Timing was fine - It was in the afternoon
Interviewer was friendly and helpful

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

    • Handle edge cases like empty array or no duplicates found.

    • Example: For input [0, 3, 1, 2, 3], output should be [3].

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

- Timing was fine - Afternoon
- Interviewer was friendly

  • Q1. How would you design a caching library?
  • Ans. 

    Designing a caching library involves considering data storage, retrieval, expiration policies, and cache invalidation strategies.

    • Define the caching requirements such as data size, access patterns, and expiration policies.

    • Choose a suitable data structure for caching like LRU, LFU, or a simple key-value store.

    • Implement cache eviction policies to handle memory constraints and optimize performance.

    • Consider thread safety an...

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

- Timing was fine - Afternoon
- Interviewer was friendly

  • Q1. What is the number of edges in a 10x10 cube?
  • Ans. 

    A 10x10 cube has 600 edges.

    • A cube has 12 edges, so a 10x10 cube would have 12 edges on each of its 6 faces.

    • 12 edges x 6 faces = 72 edges for the entire cube.

    • However, each edge is shared by two faces, so we need to divide by 2 to get the total number of unique edges.

    • 72 edges / 2 = 36 unique edges on the outer surface of the cube.

    • Since the cube has 10x10x10 = 1000 unit cubes, each with 12 edges, we need to subtract the e...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Senior Software Engineer in GurgaonEligibility criteriaGood professional experienceixigo interview preparation:Topics to prepare for the interview - iOS Development, Software Architecture, Protocol Oriented programming, System Design, Data StructuresTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Be confident
Tip 2 : Be always ready for white board coding
Tip 3 : Brush up your basics

Application resume tips for other job seekers

Tip 1 : Resume should not be more than 1 page long
Tip 2 : Write down your technical skills, Frameworks

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. To find the kth minimum element from BST
  • Ans. 

    To find the kth minimum element from a Binary Search Tree (BST)

    • Perform an in-order traversal of the BST to get elements in sorted order

    • Return the kth element from the sorted list

    • Time complexity: O(n) where n is the number of nodes in the BST

  • Answered by AI
  • Q2. Basic OOPs question like inheritance encapsulation
Round 2 - Technical 

(2 Questions)

  • Q1. In a BST two numbers are swapped find swapped nos.
  • Ans. 

    To find swapped numbers in a BST, perform inorder traversal and keep track of previous node.

    • Perform inorder traversal of the BST

    • Keep track of the previous node while traversing

    • If at any point, the current node's value is less than the previous node's value, those are the swapped numbers

  • Answered by AI
  • Q2. What you did in college projects
Round 3 - One-on-one 

(2 Questions)

  • Q1. Puzzles: find the fastest 3 horses in 25 horse race with a race and 5 horses can be run at a time
  • Q2. Weakness and strength. how a friend will describe you

Interview Preparation Tips

Topics to prepare for Ixigo.com Software Engineer interview:
  • java
  • dsa
  • puzzle
  • tree
Interview preparation tips for other job seekers - DSA and system design are needed

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions were mainly on the Data Structure and System Design.

Interview Preparation Tips

Interview preparation tips for other job seekers - Pleade be ready to face multiple rounds, as the company can take a new round after telling you that you are selected by saying that it is just an interaction, but it will be a complete technical interview.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Linked list question to detect cycle
  • Q2. Basic questions from JS
Round 2 - Technical 

(2 Questions)

  • Q1. Some questions related to my projects
  • Q2. Some Questions related to my past experience
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Map reduce filter in javascript
  • Ans. 

    Map, reduce, and filter are higher-order functions in JavaScript used to manipulate arrays.

    • Map: Transforms each element in an array and returns a new array with the transformed elements.

    • Reduce: Reduces an array to a single value by applying a function to each element.

    • Filter: Creates a new array with elements that pass a certain condition.

  • Answered by AI
  • Q2. Exception handling

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Ppt Wireframing workflow and decision making

Round 2 - One-on-one 

(1 Question)

  • Q1. Hr round with manager
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Internshala and was interviewed before Jun 2022. There were 4 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 - HR 

(1 Question)

  • Q1. Simple question based on openings.
Round 3 - One-on-one 

(2 Questions)

  • Q1. About your experience & skills set and educational background.
  • Q2. What do you know about Quality Council of India.
  • Ans. 

    Quality Council of India is a government body established to promote and sustain quality in all spheres of economic and social life.

    • Established in 1997 by the Government of India

    • Operates under the Ministry of Commerce and Industry

    • Promotes quality standards and certifications across various sectors

    • Provides training and consultancy services to improve quality management practices

    • Works with organizations to enhance their

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. There would be technical round or Manager round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with your CV. And practiced about it.

Interview Questionnaire 

1 Question

  • Q1. What qualification and experience is required in welspun home furnishing (SPACES)?
  • Ans. 

    Qualification and experience required for Assistant Manager position in Welspun Home Furnishing (SPACES)

    • A bachelor's degree in business administration or a related field is preferred

    • Experience in retail management or home furnishing industry is required

    • Strong leadership and communication skills are necessary

    • Knowledge of sales and marketing strategies is essential

    • Ability to analyze data and make informed decisions is im

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I had an interview with Mr. Devinder Chaturvedi for U.P. location in 2019. and he asked me all Political question on Congress and BJP. after that he reject me due to not matching political thinking.
i am MBA and have very good experience in sales and Home furnishing Sales and very good knowledge of Northeast, North, central and south india.
and i was surprised, Mr. Devender selected to Mr. Rajeev.
Mr. Rajeev was my colleague and he was office boy in Swayam India.
but Mr. Rajeev have a very important qualification that he is Congress supporter and Mr. Devender likes this. because Mr. Devender know that Spaces is a very big brand and anybody can sale easily.
so i am asking this, only congress supporter are allow or this is wrong culture in professional life?
Many recruiter/HR/NSM reject me and also select me with proper reason. and i agree with all but Mr. Devender was very cheap manager.

Tell us how to improve this page.

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 140 Interviews
Monotype Interview Questions
3.8
 • 23 Interviews
Sunteck Realty Interview Questions
3.3
 • 23 Interviews
Ixigo.com Interview Questions
3.6
 • 21 Interviews
View all

Hipolin Reviews and Ratings

based on 3 reviews

4.9/5

Rating in categories

3.1

Skill development

1.2

Work-life balance

2.2

Salary

3.1

Job security

3.1

Company culture

3.1

Promotions

3.1

Work satisfaction

Explore 3 Reviews and Ratings
Sales Officer
4 salaries
unlock blur

₹2.2 L/yr - ₹3.5 L/yr

Senior Accountant
3 salaries
unlock blur

₹4.5 L/yr - ₹4.8 L/yr

Explore more salaries
Compare Hipolin with

HCL Infosystems

3.9
Compare

McNally Bharat Engineering

4.1
Compare

Schoolnet India

3.9
Compare

Novartis Healthcare

4.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview