Upload Button Icon Add office photos

Filter interviews by

Celeb-AI Associate Software Engineer Interview Questions, Process, and Tips

Updated 21 Nov 2024

Top Celeb-AI Associate Software Engineer Interview Questions and Answers

  • Q1. 1. What does #include do. 2. What is preprocessor. 3. What does using namespace std do. Can we create our own namespace. 4. Who calls main function. Can we pass arguments ...read more
  • Q2. 1. Give your introduction. 2. What is OOP, what are pillars of OOP. 3. Define inheritance. Types of inheritance. 4. What is operator overloading. Overloading of ! operato ...read more
  • Q3. Give an DSA question asked to solved in O(1) space complexity

Celeb-AI Associate Software Engineer Interview Experiences

9 interviews found

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

So the Aptitude was hard, 25 questions were there.
10 of python / c++ (there is a choice b/w both).
But the aptitude questions were very hard.
Out of 50 candidates only 5 got selected.

And trust me they got rejected in further rounds.

Round 2 - Technical 

(1 Question)

  • Q1. Dynamic Programming

Interview Preparation Tips

Topics to prepare for Celeb-AI Associate Software Engineer interview:
  • Aptitude
  • Logical Reasoning
  • C++
  • Data Structures
  • Python
  • Dynamic Programming
Interview preparation tips for other job seekers - Well to be honest this is a startup company, they say they are 50 in number, but trust me.
I don't think there are more than 20 employees.
Once you visit their office you will know.
Although the staff was nice and everything.
But they only wanted the creamiest candidate. Meaning who is more than perfect in DSA and languages. I can understand that its a good thing, but for freshers you are giving only 4LPA and that too with a 2 year bond.
In short they want a 10LPA candidate working for them in 4lpa and i can see by visiting their office that they are really exploiting the people working there. The working ones can't leave cus they have no other option.
So kindly stay away. But if you have no other chance or choice and if you are very good at DSA in C++ etc then you can think to join.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

There are 30 question 10 questions c++ or python and In c++ string question and 20 question combination of quantative and logical (water image,total triangle,coding and decoding)

Round 2 - Coding Test 

In 2 round 4 coding questions and method overloading and overriding
,string panagram, dynamic memory allocation related operation and all is 4 questions is mandatory to code and 2 string based question ,1 dynamic memory allocation operation.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please pointer concept is most important and string related operation
C++ programming language is mandatory in celeb ai company

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
asked in Gainsight
Q2. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q5. Ninja and Alternating Largest Problem Statement Ninja is given a ... read more
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic time and work and profit loss question

Round 2 - Coding Test 

Trees, Arrays question

Round 3 - Technical 

(2 Questions)

  • Q1. Decorator in python
  • Ans. 

    Decorator in Python is a design pattern that allows behavior to be added to individual objects, either statically or dynamically.

    • Decorators are functions that modify the behavior of other functions.

    • They are commonly used to add functionality to existing functions without modifying their code.

    • Decorators are denoted by the @ symbol followed by the decorator function name.

    • They can be used for logging, authentication, cach

  • Answered by AI
  • Q2. Give an DSA question asked to solved in O(1) space complexity
  • Ans. 

    Find the maximum element in an array without using extra space

    • Iterate through the array and keep track of the maximum element found so far

    • Update the maximum element if a larger element is encountered

    • Return the maximum element at the end

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Fresherworld and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Not done yet , I want take test

Round 2 - Technical 

(2 Questions)

  • Q1. Introduction of yours , basic programs
  • Q2. About Arrays , reversing of arrays
Round 3 - HR 

(1 Question)

  • Q1. About company policies

Celeb-AI interview questions for designations

 Associate Software Developer

 (1)

 Software Engineer

 (2)

 Software Developer

 (2)

 Softwaretest Engineer

 (1)

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

30 question for aptitude test and some also a MCQ of python or c++

Round 2 - Technical 

(1 Question)

  • Q1. One oops question and ask about oops and c++

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare for array, string, linked list and oops
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Walk-in and was interviewed in Aug 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

24 Question 15 general aptitude (MCQ), 5 DSA questions (MCQ) and 4 Coding Questions must be written on paper.

Round 3 - Technical 

(1 Question)

  • Q1. Started with introduction followed by DSA round main focused on C++. The interviewer gave paper and pen to write some coding questions around 5-6. some theory questions based on namespace, header files, an...
Round 4 - Technical 

(1 Question)

  • Q1. Starts with an introduction followed by some coding questions and oops concept.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
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 

Basic Array and string problem

Round 3 - Technical 

(1 Question)

  • Q1. Remove the duplicates from the string
  • Ans. 

    Use a hash set to remove duplicates from a string

    • Create a hash set to store unique characters

    • Iterate through the string and add each character to the hash set

    • If a character is already in the hash set, skip it

    • Convert the hash set back to a string to get the result

  • Answered by AI

I applied via Job Portal and was interviewed in Oct 2022. 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 - Aptitude Test 

There were 25 questions in total to be solved in 25-30 mints. 10 Questions were from C++ OOPS. And 15 from aptitude.

Round 3 - Technical 

(1 Question)

  • Q1. 1. Give your introduction. 2. What is OOP, what are pillars of OOP. 3. Define inheritance. Types of inheritance. 4. What is operator overloading. Overloading of ! operator. 5. What is Linked List. 6. WAP ...
  • Ans. 

    Interview questions for Associate Software Engineer position

    • Introduce yourself briefly and highlight your skills and experience

    • OOP stands for Object-Oriented Programming and its pillars are encapsulation, inheritance, and polymorphism

    • Inheritance is a mechanism in OOP where a new class is created by inheriting properties and methods of an existing class. Types of inheritance are single, multiple, multilevel, and hierarc...

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. 1. What does #include do. 2. What is preprocessor. 3. What does using namespace std do. Can we create our own namespace. 4. Who calls main function. Can we pass arguments in main function. 5. Write our ow...
  • Ans. 

    Technical interview questions for Associate Software Engineer position.

    • iostream header file is used for input/output operations in C++.

    • Preprocessor directives are executed before the compilation of the program.

    • using namespace std allows us to use standard C++ library functions without specifying the namespace each time.

    • Main function is called by the operating system. Arguments can be passed to main function.

    • char* strcp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be clear with all basic concepts and practice code for inheritance, operator overloading, bitwise.

I appeared for an interview in Jun 2022.

Round 1 - Aptitude Test 

25 questions were there, out of which 15 were from c/c++ basic programing questions and 10 aptitude questions.

Round 2 - Technical 

(1 Question)

  • Q1. Started with introduction and then 1. Sorry an array of 0s, 1s, 2s and follow-up questions 2. Some questions from oops like main pillars of oops, and write code for multiple inheritance 3. Write a code t...
Round 3 - Technical 

(1 Question)

  • Q1. Started with introduction 1. Write a program to delete a node from linked list. 2. Write a program to overload the function using class
Round 4 - Technical 

(1 Question)

  • Q1. Started with introduction 1. Write a program to overload the function without class 2. Implement circular queue with all it's methods

Interview Preparation Tips

Interview preparation tips for other job seekers - Recruitment process is very smooth and interviewer was helpful.

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: Written test was easy. It comprised aptitude and general english questions

Round: Technical Interview
Experience: Questions were about project, Simple programming concepts, etc
Code to basic programming concepts.
Tips: Do not say Algorithms as an area of interest.

General Tips: Be confident in your answers. Show that you have positive attitude always. Do not lose your confidence if you are not selected for the company. try the other with full hope. All the best!
College Name: IIT-ROORKEE

Celeb-AI Interview FAQs

How many rounds are there in Celeb-AI Associate Software Engineer interview?
Celeb-AI interview process usually has 3 rounds. The most common rounds in the Celeb-AI interview process are Technical, Aptitude Test and Resume Shortlist.
What are the top questions asked in Celeb-AI Associate Software Engineer interview?

Some of the top questions asked at the Celeb-AI Associate Software Engineer interview -

  1. 1. What does #include do. 2. What is preprocessor. 3. What does usin...read more
  2. 1. Give your introduction. 2. What is OOP, what are pillars of OOP. 3. Define ...read more
  3. Give an DSA question asked to solved in O(1) space complex...read more
How long is the Celeb-AI Associate Software Engineer interview process?

The duration of Celeb-AI Associate Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Celeb-AI Associate Software Engineer Interview Process

based on 8 interviews

4 Interview rounds

  • Aptitude Test Round
  • Technical Round - 1
  • Technical Round - 2
  • Technical Round - 3
View more
Celeb-AI Associate Software Engineer Salary
based on 8 salaries
₹3 L/yr - ₹5 L/yr
27% less than the average Associate Software Engineer Salary in India
View more details

Celeb-AI Associate Software Engineer Reviews and Ratings

based on 11 reviews

4.3/5

Rating in categories

4.1

Skill development

3.8

Work-life balance

4.1

Salary

4.3

Job security

4.4

Company culture

4.3

Promotions

4.2

Work satisfaction

Explore 11 Reviews and Ratings
Compare Celeb-AI with

Wipro

3.7
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

HCLTech

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