Upload Button Icon Add office photos

CES

Compare button icon Compare button icon Compare

Filter interviews by

CES Software Engineer Interview Questions and Answers

Updated 25 Aug 2023

CES Software Engineer Interview Experiences

1 interview found

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

I applied via campus placement at National Institute of Technology, Agartala and was interviewed in Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions and 2 coding questions

Round 2 - Technical 

(1 Question)

  • Q1. Insertion sort in linked list
  • Ans. 

    Insertion sort is a simple sorting algorithm that builds the final sorted list one item at a time.

    • Start with the second element and compare it with the elements before it, moving elements to the right until finding the correct position.

    • Repeat this process for each element in the list.

    • Time complexity of O(n^2) in worst case scenario.

    • Example: 5 -> 2 -> 4 -> 3 -> 1, after insertion sort: 1 -> 2 -> 3 -> 4 -> 5

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Mutable immutable data structures in python, friend functions, call by value, call by reference, building tree from inorder and preorder traversal/inorder and postorder/preorder and postorder

Interview Preparation Tips

Topics to prepare for CES Software Engineer interview:
  • Python
  • C++
  • OOPS
  • Dynamic programming
  • Graph

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Data structure was more and it was difficult round

Round 2 - Technical 

(1 Question)

  • Q1. It will depend on interviewer
Round 3 - Behavioral 

(1 Question)

  • Q1. It will be depending on Manager who is taking interview
Round 4 - HR 

(1 Question)

  • Q1. It will be very smooth

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a very good company overall I had very good learning and experience
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

JUST BASIC CODING WITH MCQ AND MEETLE PLATFORM

Round 2 - Technical 

(1 Question)

  • Q1. JUST BASICS LIKE SQL,PYTHON MAINLY OOPS AND BASIC CODE LIKE PALINDROME
Round 3 - HR 

(1 Question)

  • Q1. LIKE MINDTEASING QUESTIONS SITUATION BASED

Interview Preparation Tips

Interview preparation tips for other job seekers - JUST BE CONFIDENT THAT U WILL GET JOB AND ANSWER WITH CONFIDENCE
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. All the questions on OOPS, Shell script, linux, c, C++, database
Round 2 - Technical 

(1 Question)

  • Q1. Advanced questions on above areas
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Great learning and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Coding question, reasoning, english, math, very easy

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java, Spring Boot, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring Boot, and Angular

    • Strong problem-solving skills

    • Experience working in Agile development environment

    • Passionate about learning new technologies

  • Answered by AI
  • Q2. Technical experties and final year project

Interview Preparation Tips

Topics to prepare for CitiusTech Software Engineer interview:
  • Java
  • React.Js
  • SQL Server

Software Engineer Interview Questions & Answers

Globant user image Priyanka Vitthal chakkar

posted on 5 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is the inheritance?
  • Ans. 

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

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

    • Derived class can override or extend the functionality of the base class

  • Answered by AI
  • Q2. What are the types of joins in mysql
  • Ans. 

    Types of joins in MySQL include inner join, left join, right join, and full join.

    • Inner join: Returns rows when there is a match in both tables.

    • Left join: Returns all rows from the left table and the matched rows from the right table.

    • Right join: Returns all rows from the right table and the matched rows from the left table.

    • Full join: Returns rows when there is a match in one of the tables.

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. How to handle multiple api's
  • Ans. 

    Use a centralized API gateway to manage and route requests to multiple APIs efficiently.

    • Implement a centralized API gateway to handle incoming requests and route them to the appropriate API based on the endpoint.

    • Utilize API management tools like Apigee, Kong, or AWS API Gateway to manage and monitor multiple APIs.

    • Consider implementing a caching layer to improve performance and reduce the number of requests to external

  • Answered by AI
  • Q2. What does strstr function do?
  • Ans. 

    strstr function searches for a substring within a string and returns a pointer to the first occurrence of the substring.

    • Used in C programming language

    • Syntax: char *strstr(const char *haystack, const char *needle)

    • Example: char *str = strstr("hello world", "world")

  • Answered by AI

Skills evaluated in this interview

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

I applied via Cuvette and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions followed by two coding questions.

Round 2 - Coding Test 

Two coding questions followed by a discussion on projects.

Round 3 - Coding Test 

Three coding questions and inquiries related to Data Structures and Algorithms (DSA), Object-Oriented Programming (OOP), and project-related topics.

Round 4 - Coding Test 

Solely 2 coding question

Interview Preparation Tips

Topics to prepare for Bounteous x Accolite Software Engineer interview:
  • DSA
  • OOPS
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude questions on time and distance

Round 2 - Coding Test 

Java coding question

Round 3 - Technical 

(1 Question)

  • Q1. Questions on OOPS and collections
Round 4 - HR 

(1 Question)

  • Q1. Project level questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Difference between composition and aggregation
  • Ans. 

    Composition is a strong relationship where the child object does not exist independently of the parent object, while aggregation is a weak relationship where the child object can exist independently of the parent object.

    • Composition is a 'has-a' relationship, where the child object is part of the parent object.

    • Aggregation is a 'has-a' relationship, where the child object is not part of the parent object and can exist in...

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

(1 Question)

  • Q1. Reverse a linked list

CES Interview FAQs

How many rounds are there in CES Software Engineer interview?
CES interview process usually has 4 rounds. The most common rounds in the CES interview process are Resume Shortlist, Aptitude Test and Technical.
How to prepare for CES Software Engineer 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 CES. The most common topics and skills that interviewers at CES expect are .Net, ASP.Net MVC, Azure, Business Analysis and C#.
What are the top questions asked in CES Software Engineer interview?

Some of the top questions asked at the CES Software Engineer interview -

  1. Insertion sort in linked l...read more
  2. Mutable immutable data structures in python, friend functions, call by value, c...read more

Tell us how to improve this page.

CES Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
CES Software Engineer Salary
based on 33 salaries
₹4.7 L/yr - ₹20.5 L/yr
39% more than the average Software Engineer Salary in India
View more details

CES Software Engineer Reviews and Ratings

based on 5 reviews

2.1/5

Rating in categories

1.5

Skill development

1.5

Work-life balance

2.9

Salary

1.5

Job security

1.5

Company culture

1.5

Promotions

1.5

Work satisfaction

Explore 5 Reviews and Ratings
Process Associate
67 salaries
unlock blur

₹1.5 L/yr - ₹3.8 L/yr

Team Lead
56 salaries
unlock blur

₹6.7 L/yr - ₹25.8 L/yr

Senior Process Associate
50 salaries
unlock blur

₹2.1 L/yr - ₹6 L/yr

Fraud Analyst
46 salaries
unlock blur

₹1.6 L/yr - ₹4.1 L/yr

Business Analyst
45 salaries
unlock blur

₹3.2 L/yr - ₹10.4 L/yr

Explore more salaries
Compare CES with

Samsung

3.9
Compare

LG Electronics

4.0
Compare

Sony

4.2
Compare

Panasonic Avionics Corporation

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