Upload Button Icon Add office photos

Filter interviews by

Celigo Interview Questions and Answers

Updated 31 Aug 2023

Celigo Interview Experiences

Popular Designations

5 interviews found

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 Intern Interview Questions asked at other Companies

Q1. Given a string of containing lower case letters and upper case characters. Find the number of occurrences of each character. The question was further modified to include the special characters as well. I was asked to design the test cases f... read more
View answer (2)

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:
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 

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

SDE Interview Questions asked at other Companies

Q1. Return Subsets Sum to K Problem Statement Given an integer array 'ARR' of size 'N' and an integer 'K', return all the subsets of 'ARR' which sum to 'K'. Explanation: A subset of an array 'ARR' is a tuple that can be obtained from 'ARR' by r... read more
View answer (1)

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.
  • Q2. Differs from person to person
  • Q3. Tell me about an start-up idea based on your region.
  • 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.

Product Manager Interview Questions asked at other Companies

Q1. You see the number of people cancelling the order increasing. Cancel window 24 hours. What would you do?
View answer (26)

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

Junior Software Developer Interview Questions asked at other Companies

Q1. Given n coins for two players playing a game. Each player picks coins from the given n coins in such a way that he can pick 1 to 5 coins in one turn and the game continues for both the players. The player who picks the last coin looses the ... read more
View answer (3)

Celigo interview questions for popular designations

 SDE Intern

 (1)

 Product Manager

 (1)

 SDE

 (1)

 Junior Software Developer

 (1)

 Cloude Software Developer

 (1)

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

Interview questions from similar companies

I was interviewed 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 was interviewed in Oct 2016.

Interview Questionnaire 

5 Questions

  • Q1. What is inheritance?
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows for code reuse and promotes modularity.

    • The class that is being inherited from is called the superclass or base class.

    • The class that inherits from the superclass is called the subclass or derived class.

    • The subclass can access the public and protected members of the superclass.

    • Inhe...

  • Answered by AI
  • Q2. Regular expressions in PhP
  • Ans. 

    Regular expressions in PHP are powerful tools for pattern matching and manipulating strings.

    • Regular expressions are defined using the preg_match() function in PHP.

    • They are used to search, replace, and validate strings based on specific patterns.

    • Regex patterns consist of a combination of characters and special symbols.

    • Modifiers can be added to the pattern to control the matching behavior.

    • Common regex functions in PHP in...

  • Answered by AI
  • Q3. What is polymorphism? Explain using a real life example
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as the same type.

    • Polymorphism allows a single interface to be used for different types of objects.

    • It enables code reusability and flexibility in object-oriented programming.

    • For example, a parent class 'Animal' can have multiple child classes like 'Dog', 'Cat', and 'Bird'. They can all be treated as 'Anim...

  • Answered by AI
  • Q4. Discussion about projects.
  • Q5. Aggregate functions in dbms? And query questions related to that.

Interview Preparation Tips

Round: Test
Experience: 10 questions of aptitude containing English paragraph solving , Maths aptitude and also logical reasoning. Other 3 questions were of programming in any language comfortable.Two of the questions were partially done.In one of them only the logic was to be coded and in the other the error was to be corrected to give the correct output.
Duration: 1 hour 20 minutes
Total Questions: 13

Round: Technical Interview
Experience: They test your basic knowledge of programming, databases and how well you have worked with your projects.
There are actually three more rounds. 2 technical and one HR. I was not selected for them. Out of 40 students only 5 were selected after the final round.

Skills: Basic C/C++, DBMS, Multiple And Multi-level Inheritance, Polymorphism, PHP, Regular Expressions
College Name: Thapar University, Patiala

Skills evaluated in this interview

I was interviewed in Dec 2016.

Interview Questionnaire 

8 Questions

  • Q1. Given a 10 digit number, sort the individual digits of the number.
  • Ans. 

    Sort the individual digits of a 10 digit number.

    • Convert the number to a string to access individual digits

    • Use a sorting algorithm to sort the digits

    • Convert the sorted digits back to a number

  • Answered by AI
  • Q2. Write code for LCA in Binary Search Tree.
  • Ans. 

    The code for finding the Lowest Common Ancestor (LCA) in a Binary Search Tree (BST).

    • Start from the root node and compare it with the given two nodes.

    • If both nodes are smaller than the current node, move to the left subtree.

    • If both nodes are greater than the current node, move to the right subtree.

    • If one node is smaller and the other is greater, then the current node is the LCA.

    • Continue this process until the LCA is fou

  • Answered by AI
  • Q3. Discuss a DBMS consisting of college faculty, professors, courses and students.
  • Ans. 

    A DBMS for managing college faculty, professors, courses, and students.

    • The DBMS should have tables for faculty, professors, courses, and students.

    • Each table should have appropriate attributes to store relevant information.

    • Relationships can be established between tables using foreign keys.

    • Queries can be used to retrieve information about faculty, professors, courses, and students.

    • The DBMS can be used to track enrollment

  • Answered by AI
  • Q4. What extra curricular activities did you do in college?
  • Ans. 

    I was actively involved in coding competitions, hackathons, and programming clubs during college.

    • Participated in coding competitions such as ACM ICPC and Codeforces

    • Attended hackathons to work on real-world projects and improve problem-solving skills

    • Joined programming clubs to collaborate with peers and learn new technologies

  • Answered by AI
  • Q5. Do you seek for help if stuck in a problem?
  • Ans. 

    Yes, I believe in seeking help when stuck in a problem as it leads to faster resolution and learning.

    • I believe in collaborating with team members to brainstorm solutions

    • I am not afraid to ask for help from more experienced developers

    • I utilize online resources like Stack Overflow or documentation when needed

  • Answered by AI
  • Q6. What do you understand by teamwork?
  • Ans. 

    Teamwork is collaborating with others towards a common goal, utilizing each member's strengths and skills.

    • Collaborating with others towards a common goal

    • Utilizing each member's strengths and skills

    • Communicating effectively and openly

    • Respecting and valuing diverse perspectives

    • Sharing responsibilities and supporting each other

    • Celebrating successes as a team

  • Answered by AI
  • Q7. How do you tackle something that you can't find a solution to?
  • Ans. 

    When faced with an unsolvable problem, I break it down, research, seek help, experiment, and iterate until a solution is found.

    • Break down the problem into smaller, manageable parts

    • Research and gather information related to the problem

    • Seek help from colleagues, online communities, or experts

    • Experiment with different approaches or solutions

    • Iterate and refine the solution based on feedback and results

  • Answered by AI
  • Q8. Where do you want to see yourself after 5 years?
  • Ans. 

    In 5 years, I see myself as a senior software developer leading a team of developers on innovative projects.

    • Leading a team of developers on innovative projects

    • Senior software developer role

    • Continuing to learn and grow in the field

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The test had a time limit. Every 10 minutes you had to do atleast 4 questions. It was quite fast paced. The questions were from basic coding, aptitude and debugging.
Tips: Learn to be fast at coding. Study from geeksforgeeks.com. Practice a lot of aptitude questions. Have a decent knowledge of basic coding.
Duration: 1 hour
Total Questions: 20

Round: Technical Interview
Experience: The interviewer started off by asking basic sorting questions. Followed by data structures and algorithms. And DBMS related questions in the end.
Tips: Have a good presence of mind. Understand the question asked properly. Be confident and keep discussing. Don't get nervous and solve the questions incorrectly. Have good grip over topics like sorting, DS, Algorithms and DBMS.

Round: Managerial Interview
Experience: There was a discussion upon the company's work in fields like Big Data, IoT. They asked me in detail about the projects mentioned in my CV. Other skills mentioned in CV were also discussed.
Tips: Have a good understanding of the projects you have mentioned in your CV. Be polite and confident while answering. Keep a general awareness of the current technical scenario.

Round: HR Interview
Experience: The round was based around my over all personality. They checked how would I be an asset to their company. They analysed my core values and capabilities of working in a team.
Tips: Show that you are willing to work in a team. Be confident and polite. Express your feelings and passion towards your job and the company. Explain your college extra curricular activities well.

College Name: IIT Varanasi

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: 1 Psychometric Test
2. Analytical Aptitude
3 Logical Reasoning
4 Two coding Questions
5.Pattern Recognition
6.Essay writing

Tips: Do the coding Question first ,they are mot important ,if ur code doesn't run u are disqualified.
Practice on leetcode
Sectional Cutoff
Duration: 100 mins minutes
Total Questions: 103

Round: Test
Experience: Data base design of an ATM.E-R diagrams ,Class diagram and Normalization
Discussion on projects
A simple coding question
Heavy ball light ball puzzle
Cloud Computing
Public and Private Cloud
CRM ,SRM ,ERP
Asked me Floyd's Warshall Algo,told to implement it in a question
SQL queries





Round: Technical Interview
Experience: 1 asked me a puzzle man and bridge wid torch
2.asked me about TRIES
3.difference between primary key and unique key
4.asked to write query for nth highest salary
5.Asked me as sql injection
6. AES ,DES
7.Reverse a linked list


Round: Behavioural Interview
Experience: The interviewer was above 50.
1.Introduce yourself
2.why sap
3.situation based questions


Round: HR Interview
Experience: The lady was tough ...showed her intent in the PPT as well..
1.asked me about profile preference
2.about family
3.where would you see in next 2 years
4.why sap
5.nything about sap not mentioned in ppt(i was like null)
6.location preference


Skills:
College Name: NIT Srinagar

I applied via Referral

Interview Questionnaire 

3 Questions

  • Q1. Asked on Java, C, Data Structures, Algorithms, Puzzles, Paper Coding
  • Q2. Asked on C, Java, DBMS, Data Structures, Algorithms, Puzzles
  • Q3. This was a managerial round

Interview Preparation Tips

Round: Test
Experience: It had 5 sections. Personality, Design, Coding, Aptitude, Testing. Personality section had 10 minutes and 60 questions. Design section had 15 questions. Coding section had 2 questions. Aptitude section had 15 questions and they were from moderate to hard level. And Testing had 5 questions. The test was really easy but managing time was the game changer.
Tips: Try to spend time efficiently and make good number of attempts in every section. Only Aptitude and Coding sections need separate preparation.
Duration: 105 minutes
Total Questions: 103

Round: Technical Interview
Experience: Interview focuses on basics. The interviewer was supportive.
Tips: Stick do your basics and prepare for them really well. Be attentive.

Round: Technical Interview
Experience: There was no level difference between the first interview and the second, both were of the same level. The interviewer was highly supportive. He was more excited than me when I told the correct answer. He was giving me some hints in between, clinging onto the hints and making out the answers is important. He explained me few things in the interview which I didn't know and then asked me questions on it. Discussion on projects I did also went on for 20 minutes or so.
Tips: Adding on your views to the discussion would always help and show your communication skills also. Don't leave the interview ask a question-answer type of session. Your resume matters. Know about everything you have written in your resume in a depth such that you can build on at least a 10 minute discussion.

Round: Other Interview
Experience: Had a good discussion on the projects I was doing, on the courses I took, my interests and everything that was written in my resume.
Tips: Go with a clear and fresh mind. Show that you are interested in the company and how your interests align with the company.

Round: HR Interview
Experience: Had good and fruitful discussion about everything. My parents, behavior, interests, schooling, college, studies, extra circulars, co-circulars, projects and about the company-we had talked about all these things.
Tips: Just talk your heart out. Don't try to bluff and never ever try to impress. Get the discussion going. Add your views to whatever the hr says. Not for just this round but after every round think of some questions you want to ask the interviewer and have them at the back of your mind. When given the opportunity ask them. Don't ask just for the sake of asking. Everyone has some genuine questions to ask, just think over them and ask them later on.

Skills:
College Name: DA-IICT

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, SAN, Automation, Cloud Computing and Analytics.
What are the top questions asked in Celigo interview?

Some of the top questions asked at the Celigo interview -

  1. Project details, questions based on the resume and they will ask to write some ...read more
  2. We had a discussion on few dsa problems of leetcode sty...read more
  3. Leetcode Style DSA round and discussion on projec...read more

Tell us how to improve this page.

Celigo Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

SAP Interview Questions
4.2
 • 309 Interviews
Intellect Design Arena Interview Questions
4.0
 • 158 Interviews
Celebal Technologies Interview Questions
3.4
 • 118 Interviews
Innovaccer Interview Questions
3.4
 • 81 Interviews
Informatica Interview Questions
3.6
 • 27 Interviews
Boomi Interview Questions
3.3
 • 3 Interviews
Workato Interview Questions
4.6
 • 3 Interviews
Zapier Interview Questions
2.0
 • 1 Interview
Mulesoft Interview Questions
4.6
 • 1 Interview
View all

Celigo Reviews and Ratings

based on 28 reviews

3.5/5

Rating in categories

3.4

Skill development

3.4

Work-life balance

4.0

Salary

2.9

Job security

3.6

Company culture

3.5

Promotions

3.3

Work satisfaction

Explore 28 Reviews and Ratings
Software Engineer I - IA

Hyderabad / Secunderabad

0-3 Yrs

Not Disclosed

Software Engineer II _ Core

Hyderabad / Secunderabad

1-4 Yrs

Not Disclosed

Sr DevOps Engineer

Hyderabad / Secunderabad

3-10 Yrs

Not Disclosed

Explore more jobs
Software Engineer
29 salaries
unlock blur

â‚ą0 L/yr - â‚ą0 L/yr

Senior Software Engineer
28 salaries
unlock blur

â‚ą0 L/yr - â‚ą0 L/yr

Software Developer
16 salaries
unlock blur

â‚ą0 L/yr - â‚ą0 L/yr

QA Engineer
16 salaries
unlock blur

â‚ą0 L/yr - â‚ą0 L/yr

Software Engineer2
9 salaries
unlock blur

â‚ą0 L/yr - â‚ą0 L/yr

Explore more salaries
Compare Celigo with

Zapier

2.0
Compare

Mulesoft

4.6
Compare

Talend Data Integration Services

4.0
Compare

Boomi

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