Upload Button Icon Add office photos

CES

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

CES Associate Consultant Interview Questions and Answers

Updated 31 Dec 2024

CES Associate Consultant Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself?
  • Ans. 

    I am a dedicated and hardworking individual with a background in consulting and a passion for problem-solving.

    • Background in consulting

    • Strong work ethic

    • Passion for problem-solving

  • Answered by AI
  • Q2. Tell me about your strength and weakness.
  • Ans. 

    My strength lies in my strong analytical skills and attention to detail, while my weakness is that I can be overly critical of my own work.

    • Strength: Strong analytical skills

    • Strength: Attention to detail

    • Weakness: Overly critical of my own work

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

(2 Questions)

  • Q1. How do you align your skills with the job role you are interview for?
  • Ans. 

    I align my skills with the job role by highlighting relevant experience, showcasing transferable skills, and demonstrating a strong understanding of the job requirements.

    • Highlighting relevant experience in similar roles or industries

    • Showcasing transferable skills that are applicable to the job

    • Demonstrating a strong understanding of the job requirements and how my skills can contribute to the role

    • Providing specific exam...

  • Answered by AI
  • Q2. Tell me a situation where you helped a colleague in a project and what impact it brought on the result?
  • Ans. 

    I supported a colleague by taking on additional tasks in a project, leading to improved efficiency and timely completion.

    • Offered to assist with data analysis for a colleague who was overwhelmed with other tasks

    • Took on extra responsibilities such as creating visualizations and compiling reports

    • Resulted in the project being completed ahead of schedule and with high quality outcomes

  • Answered by AI

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Shell scripting
  • Q2. CICD pipeline question
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Code realted to shell script,c++ and then cicd pipeline

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

Coding related to Arrays and String

Round 2 - Technical 

(1 Question)

  • Q1. Explain your project?

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay calm, answer confidently
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response
Round 1 - Coding Test 

30 question of c code snippet 5 question of aptitude and 2 coding question

Round 2 - Technical 

(2 Questions)

  • Q1. Storage class in c
  • Ans. 

    Storage classes in C define the scope and lifetime of variables.

    • There are 4 storage classes in C: auto, register, static, and extern.

    • Auto variables are stored in memory and have local scope.

    • Register variables are stored in CPU registers for faster access.

    • Static variables retain their value between function calls.

    • Extern variables are declared outside of any function and can be accessed by other files.

  • Answered by AI
  • Q2. Mutex and semaphore

Interview Preparation Tips

Interview preparation tips for other job seekers - not selected

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Apr 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 Resume tips
Round 2 - Coding Test 

C, DS understanding and

Round 3 - Coding Test 

C and C++ and domain knowledge

Round 4 - Aptitude Test 

General aptitude test

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 Oct 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 Resume tips
Round 2 - Coding Test 

Online coding test and aptitude

Round 3 - Technical 

(1 Question)

  • Q1. Dsa and memory management basics
Round 4 - Technical 

(1 Question)

  • Q1. Puzzles and Dsa

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Dsa , OOPS AND sql
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - Aptitude Test 

General Aptitude - Time Series, Probability & statistics

Round 3 - Technical 

(1 Question)

  • Q1. General Interview questions on Operator Overriding , Method Overloading

Interview Preparation Tips

Interview preparation tips for other job seekers - Perform well
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Questions were mainly focused on cloud and testing field
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Sep 2023. There were 2 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 Resume tips
Round 2 - Technical 

(6 Questions)

  • Q1. Normalization in SQL, What is Cursor in SQL
  • Ans. 

    Normalization in SQL is the process of organizing data in a database to reduce redundancy and improve data integrity. A cursor in SQL is a database object used to retrieve and manipulate data row by row.

    • Normalization in SQL involves breaking down a large table into smaller tables and defining relationships between them to reduce redundancy.

    • Cursors in SQL are used to fetch and process individual rows returned by a query...

  • Answered by AI
  • Q2. .Net Core and API based questions
  • Q3. Abstract and interface difference
  • Ans. 

    Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods.

    • Abstract classes can have constructors, fields, and non-abstract methods along with abstract methods

    • Interfaces can only have abstract methods and constants

    • A class can implement multiple interfaces but can only inherit from one abstract class

  • Answered by AI
  • Q4. Const and read only difference in C#
  • Ans. 

    Const keyword is used to declare constants at compile time, while read-only keyword is used to create immutable fields that can only be assigned a value at runtime.

    • Const values are determined at compile time and cannot be changed, while read-only values can only be assigned a value once at runtime.

    • Const fields are implicitly static, while read-only fields are not.

    • Example: const int x = 5; read-only int y = 10;

  • Answered by AI
  • Q5. Azure basic fundamental questions
  • Q6. Sample query to join tables using SQL
  • Ans. 

    Sample query to join tables using SQL

    • Use the JOIN keyword to combine rows from two or more tables based on a related column between them

    • Specify the columns to be selected from each table

    • Use the ON keyword to specify the join condition

  • Answered by AI

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

CES Interview FAQs

How many rounds are there in CES Associate Consultant interview?
CES interview process usually has 2 rounds. The most common rounds in the CES interview process are HR and One-on-one Round.

Recently Viewed

INTERVIEWS

CES

No Interviews

INTERVIEWS

CES

No Interviews

INTERVIEWS

Cimpress

No Interviews

INTERVIEWS

ResMed

No Interviews

INTERVIEWS

Cimpress

20 top interview questions

LIST OF COMPANIES

OMICS International

Overview

INTERVIEWS

CES

No Interviews

INTERVIEWS

CES

No Interviews

INTERVIEWS

CES

No Interviews

INTERVIEWS

CES

No Interviews

Tell us how to improve this page.

CES Associate Consultant Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Samsung Interview Questions
3.9
 • 545 Interviews
CitiusTech Interview Questions
3.4
 • 269 Interviews
Tiger Analytics Interview Questions
3.7
 • 221 Interviews
Altimetrik Interview Questions
3.8
 • 213 Interviews
LG Electronics Interview Questions
4.0
 • 194 Interviews
Incedo Interview Questions
3.1
 • 180 Interviews
Xoriant Interview Questions
4.1
 • 179 Interviews
Philips Interview Questions
3.9
 • 157 Interviews
ThoughtWorks Interview Questions
3.9
 • 145 Interviews
View all
CES Associate Consultant Salary
based on 8 salaries
₹4 L/yr - ₹8.5 L/yr
49% less than the average Associate Consultant Salary in India
View more details

CES Associate Consultant Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Process Associate
67 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
56 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Process Associate
50 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Fraud Analyst
46 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
45 salaries
unlock blur

₹0 L/yr - ₹0 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