Upload Button Icon Add office photos

Celigo

Compare button icon Compare button icon Compare

Filter interviews by

Celigo Interview Questions and Answers

Updated 6 May 2025
Popular Designations

Celigo Interview Experiences

7 interviews found

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

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Need to reach from point a to point b in minimum step, constraint is in one step we can go 1 step behind or 2 step ahead.
  • Q2. All components of social media application.
  • Ans. 

    A social media application consists of various components that facilitate user interaction, content sharing, and community building.

    • User Profiles: Each user has a profile containing personal information, profile picture, and posts, e.g., Facebook profiles.

    • News Feed: A dynamic stream of updates from friends and followed accounts, showcasing posts, images, and videos, e.g., Twitter feed.

    • Messaging System: Enables direct c...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. FACTORAL OF A NUMBER
  • Ans. 

    Factorial of a number is the product of all positive integers up to that number, denoted as n!.

    • Factorial is defined as n! = n × (n-1) × (n-2) × ... × 1.

    • Example: 5! = 5 × 4 × 3 × 2 × 1 = 120.

    • Factorial of 0 is defined as 1: 0! = 1.

    • Factorials grow very quickly; for example, 10! = 3,628,800.

    • Factorials are used in permutations and combinations.

  • Answered by AI
  • Q2. Valid parentheses
  • Q3. Remove the nth node from. Back in a ll
  • Ans. 

    Remove the nth node from the end of a linked list efficiently.

    • Use two pointers: 'fast' and 'slow'.

    • Move 'fast' n steps ahead in the list.

    • Then move both 'fast' and 'slow' until 'fast' reaches the end.

    • At this point, 'slow' will be just before the nth node from the end.

    • Remove the nth node by adjusting the pointers.

  • Answered by AI
  • Q4. Lowest common acestor
  • Ans. 

    Lowest Common Ancestor (LCA) is the deepest node that is an ancestor to two given nodes in a binary tree.

    • LCA can be found using recursion by traversing the tree from the root.

    • If both nodes are found in the left and right subtrees of a node, that node is the LCA.

    • Example: In a tree with nodes 3, 5, and 1, the LCA of 5 and 1 is 3.

    • For a binary search tree, LCA can be found by comparing values with the root.

    • Example: In a BS...

  • Answered by AI

SDE Intern Interview Questions & Answers

user image Anonymous

posted on 27 Jul 2023

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 Jun 2023. There were 4 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 

2 coding question bitmasking and dfs

Round 3 - One-on-one 

(2 Questions)

  • Q1. Rain water trapping leetcode question
  • Q2. Hashing basis easy question from leetcode
Round 4 - One-on-one 

(1 Question)

  • Q1. Job schedule leetcode easy question

SDE Interview Questions & Answers

user image Anonymous

posted on 31 Aug 2023

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 Mar 2023. There were 6 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 - Coding Test 

It was a 90 min online coding test on hackerrank platform and the questions were from DSA.

Round 3 - Technical 

(1 Question)

  • Q1. We had a discussion on few dsa problems of leetcode style.
Round 4 - Technical 

(1 Question)

  • Q1. Leetcode style DSA interview
Round 5 - Technical 

(1 Question)

  • Q1. Leetcode Style DSA round and discussion on projects.
Round 6 - HR 

(1 Question)

  • Q1. Pure HR based questinos

I applied via LinkedIn and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Divide your life into three categories and explain the challenges.
  • Ans. 

    Life can be categorized into personal, professional, and social spheres, each presenting unique challenges and growth opportunities.

    • Personal Growth: Balancing self-care and personal development can be challenging, such as finding time for hobbies amidst daily responsibilities.

    • Professional Development: Navigating career advancement can be tough, like overcoming imposter syndrome when seeking promotions or new roles.

    • Soci...

  • Answered by AI
  • Q2. Differs from person to person
  • Q3. Tell me about an start-up idea based on your region.
  • Ans. 

    A mobile app connecting local farmers with consumers for fresh produce delivery, promoting sustainability and community support.

    • Direct farm-to-table delivery model, reducing food miles and carbon footprint.

    • Subscription service for weekly fresh produce boxes, customizable based on dietary preferences.

    • Partnerships with local farmers to ensure fair pricing and support for small-scale agriculture.

    • Incorporation of education...

  • Answered by AI
  • Q4. Explained them an idea I had.

Interview Preparation Tips

Interview preparation tips for other job seekers - Management is not interested in hiring....at least that's what HR said. They will kind of do time pass and waste time. I gave around 6 rounds os interviews from Director to PM with 1 year of experience plus an assignment.

I applied via Recruitment Consultant and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Project details, questions based on the resume and they will ask to write some java programs

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm and try to answer which you know about.it is not mandatory to answer each and every question if even if you don't know.All the best

Interview Preparation Tips

Round: Test
Experience: 1)There are two unsorted lists containing integers. Provide a solution to find the largest common integer in both lists (findCommonLargest(List list1, List list2)). You can use additional data structures if needed but utility methods from java collections are not allowed. There are many solutions possible for this problem; please provide the most efficient solution you can come up with and provide its running time in Big O notation

2) In a university, students can enroll in different courses.

A student may enroll for more than one course.

Both students and courses can be identified by IDs given to them. Design a data structure to store students, courses, and the student-course relationships. You can use arrays, lists, stacks, trees, graphs, etc. or come up with your own data structures.

Give the running times, in Big O notation, for the following operations for your data structure and justify the answers:

a) Return all students in a list.

b) Return all courses in a list.

c) Return all courses in a list for a given student.

d) Return all students in a list for a given course.

Round: Technical Interview
Experience: 1) Write a code to print the BFS of a binary tree, with can marker '->' after every level.

2) Given a binary tree and a number, print the all the nodes in the level that contains the node with the given number, expect the number and it's sibling.

3) Delete a node in a binary search tree.

Round: Technical Interview
Experience: 1) Write a code to reverse a link list.

2) Design a data structure to solve the scramble/jumble word problem that comes in the newspaper.

I/p: list of letters

O/p: all the valid dictionary words

eg: ogd

O/p : god, dog.

Round: HR Interview
Experience: What is the thing that you most like about your current company?

-> What is the thing that you least like about your current company?

-> Tell me about your current work exp?

-> Where do you see yourself after 5 years?

College Name: NA
Are these interview questions helpful?

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Celigo?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Approached by Company and was interviewed before May 2021. 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 - Aptitude Test 

Mathematical thinking Analytical Thinking

Round 3 - HR 

(1 Question)

  • Q1. Career intro, Mathematics

Interview Preparation Tips

Topics to prepare for Vyapar Sales Executive interview:
  • Aptitude
  • Basic mathematics
  • Accounting
Interview preparation tips for other job seekers - Organisation is good learnings will be there

I appeared for an interview in Oct 2016.

Interview Questionnaire 

2 Questions

  • Q1. Questions related to Java Programming OOPS
  • Q2. Questions related to Internships

Interview Preparation Tips

Round: Test
Duration: 1 hour 30 minutes
Total Questions: 90

Round: Group Discussion
Duration: 25 minutes

Skills: Programming Skills In Any Language Like C, Object Oriented Programming (OOP) Basics, Data Structures And Algorithms, Operating Systems
College Name: NIT Raipur

I appeared for an interview in Dec 2016.

Interview Questionnaire 

7 Questions

  • Q1. Questions on linked list
  • Q2. Implement LRU
  • Ans. 

    LRU (Least Recently Used) is a caching algorithm that removes the least recently used item when the cache is full.

    • LRU uses a combination of a doubly linked list and a hash map.

    • The doubly linked list keeps track of the order of recently used items.

    • The hash map allows for efficient lookup of items in the cache.

    • When a new item is accessed, it is moved to the front of the list.

    • If the cache is full, the item at the end of t...

  • Answered by AI
  • Q3. Questions on C, c++
  • Q4. Questions on DBMS
  • Q5. Questions on Operating Systems
  • Q6. Tell all things that happen inside a system when we press 'k' on the notepad.
  • Ans. 

    Pressing 'k' on Notepad triggers a series of events including key press event, character insertion, and potential text manipulation.

    • When 'k' is pressed, a key press event is triggered

    • The key press event is captured by the Notepad application

    • The character 'k' is inserted at the current cursor position

    • If any text is selected, it may be replaced by the character 'k'

    • The cursor position is updated to the next position

    • If aut...

  • Answered by AI
  • Q7. Basic HR questions

Interview Preparation Tips

Round: Technical Interview
Tips: Prepare Data Structure and Algorithms well

Round: Technical Interview
Tips: Have decent knowledge of technical subjects.

Skills: Programming, Data Structures, Algorithm, Operating System Basics, Knowledge About Database Managements Systems
College Name: IIT Roorkee

Skills evaluated in this interview

Celigo Interview FAQs

How many rounds are there in Celigo interview?
Celigo interview process usually has 5 rounds. The most common rounds in the Celigo interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Celigo interview?
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 Celigo. The most common topics and skills that interviewers at Celigo expect are Product Management, Automation, Cloud Computing, SAN and Javascript.
What are the top questions asked in Celigo interview?

Some of the top questions asked at the Celigo interview -

  1. All components of social media applicati...read more
  2. Remove the nth node from. Back in a...read more
  3. Lowest common aces...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.8/5

based on 4 interview experiences

Difficulty level

Easy 33%
Moderate 67%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Innovaccer Interview Questions
3.5
 • 86 Interviews
Cohesity Interview Questions
3.9
 • 82 Interviews
NoBrokerHOOD Interview Questions
3.1
 • 62 Interviews
Vyapar Interview Questions
3.5
 • 60 Interviews
Fleetx.io Interview Questions
3.6
 • 29 Interviews
View all

Celigo Reviews and Ratings

based on 33 reviews

3.4/5

Rating in categories

3.0

Skill development

3.5

Work-life balance

3.8

Salary

2.7

Job security

3.3

Company culture

3.2

Promotions

3.1

Work satisfaction

Explore 33 Reviews and Ratings
Technical Support Engineer I

Hyderabad / Secunderabad

0-2 Yrs

Not Disclosed

Senior IT Systems Engineer

Hyderabad / Secunderabad

3-5 Yrs

Not Disclosed

Sales Compensation Junior Analyst

Hyderabad / Secunderabad

3-5 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
35 salaries
unlock blur

₹16.2 L/yr - ₹39 L/yr

Software Engineer
33 salaries
unlock blur

₹8.2 L/yr - ₹23.5 L/yr

Senior Software Engineer 1
21 salaries
unlock blur

₹19.5 L/yr - ₹29.7 L/yr

Software Engineer2
18 salaries
unlock blur

₹12 L/yr - ₹25 L/yr

Consultant
17 salaries
unlock blur

₹21 L/yr - ₹30 L/yr

Explore more salaries
Compare Celigo with

Intellect Design Arena

3.9
Compare

Cohesity

3.9
Compare

Celebal Technologies

3.1
Compare

NoBrokerHood

3.0
Compare
write
Share an Interview