Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Capgemini Team. If you also belong to the team, you can get access from here

Capgemini Verified Tick

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Capgemini Change Release Manager Interview Questions and Answers

Updated 19 Jan 2022

Capgemini Change Release Manager Interview Experiences

1 interview found

I applied via LinkedIn and was interviewed before Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Having well versed knowledge of theory and practical is a must.
  • Q2. Good to have dominant experience on working for small, medium and large scale projects and under pressure

Interview Preparation Tips

Interview preparation tips for other job seekers - express what you know, don't add any additional flavors which you are not sure. Be confident to clear any interview. All the very best

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response
Round 1 - HR 

(2 Questions)

  • Q1. What is your experience and current compensation (CTC)?
  • Q2. What are your communication skills?
Round 2 - Technical 

(2 Questions)

  • Q1. What is the accounts payable cycle?
  • Q2. Miro processing
Round 3 - One-on-one 

(2 Questions)

  • Q1. What are the implications of invoice deductions related to disputes?
  • Q2. What is the process of evolving reconciliation?

Interview Preparation Tips

Interview preparation tips for other job seekers - I would like to advance to the next level.
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(10 Questions)

  • Q1. "Hello world" java program to print the count of letter 'l'
  • Ans. 

    A Java program to count the occurrences of the letter 'l' in the string 'Hello world'.

    • Create a Java program with a main method.

    • Initialize a String variable with the value 'Hello world'.

    • Use a loop to iterate through each character in the string and count the occurrences of the letter 'l'.

    • Print the count of 'l' at the end.

  • Answered by AI
  • Q2. "Hello world" java program to print output as "olleH dlrow"
  • Ans. 

    Reverse the characters of each word in a given string

    • Split the input string into an array of words

    • Reverse each word in the array

    • Join the reversed words back into a single string

  • Answered by AI
  • Q3. What is the diff between comparator and comparable
  • Ans. 

    Comparator is an interface used to sort objects, while Comparable is an interface used to compare objects for natural ordering.

    • Comparator is used to define custom sorting logic for objects, while Comparable is used for natural ordering based on the class's implementation of compareTo() method.

    • Comparator can be used to sort objects of different classes, while Comparable is implemented within the class itself.

    • Example: So...

  • Answered by AI
  • Q4. What is lamda expression
  • Ans. 

    Lambda expression is a concise way to represent an anonymous function in programming languages.

    • Lambda expressions are used to create small, inline functions without a formal definition.

    • They are commonly used in functional programming languages like Python, Java, and C#.

    • Lambda expressions can be used to simplify code and make it more readable.

    • Example: (x, y) -> x + y is a lambda expression that takes two parameters a

  • Answered by AI
  • Q5. What is contructor chaining
  • Ans. 

    Constructor chaining is the process of calling one constructor from another constructor in a class.

    • Allows reusing code and avoiding duplication

    • Can be achieved using 'this' keyword in the constructor

    • Helps in initializing objects with different parameters

  • Answered by AI
  • Q6. Appium & Selenium architecture
  • Q7. How to handle notifications in mobile automation
  • Ans. 

    Handle notifications in mobile automation by using automation tools to interact with notifications, verify content, dismiss or respond to them.

    • Use automation tools like Appium or Espresso to interact with notifications

    • Verify the content of notifications by extracting text or images

    • Dismiss notifications to continue with test execution

    • Respond to notifications if required for test scenarios

    • Handle different types of notifi...

  • Answered by AI
  • Q8. How to handle if element xpath is different in ios and android apps
  • Ans. 

    Use platform-specific locators or conditional statements to handle different element xpaths in iOS and Android apps.

    • Use platform-specific locators like accessibility id for iOS and resource id for Android

    • Implement conditional statements to switch between different xpaths based on the platform

    • Utilize Appium's platformName capability to identify the platform and adjust the element xpath accordingly

  • Answered by AI
  • Q9. Different TestNG annotations and order
  • Ans. 

    TestNG annotations include @Test, @BeforeMethod, @AfterMethod, @BeforeClass, @AfterClass, @BeforeSuite, @AfterSuite

    • @Test - denotes a test method

    • @BeforeMethod - runs before each test method

    • @AfterMethod - runs after each test method

    • @BeforeClass - runs before the first test method in the current class

    • @AfterClass - runs after the last test method in the current class

    • @BeforeSuite - runs before all tests in the suite

    • @AfterSu

  • Answered by AI
  • Q10. What is pom.xml and how to mention dependencies
  • Ans. 

    pom.xml is a configuration file used in Maven projects to define project settings and dependencies.

    • pom.xml stands for Project Object Model XML

    • It is used in Maven projects to manage project configuration, build settings, and dependencies

    • Dependencies are mentioned inside the <dependencies> tag in pom.xml

    • Each dependency is specified with <groupId>, <artifactId>, and <version>

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview went well, its been more than a week.. no call back for feedback.

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What are the key aspects of incident management, and what procedures are typically followed?
  • Q2. What is the SLA timeline followed, and what steps are taken during a Severity 1 issue, which is classified as the highest criticality level?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-
Round 1 - HR 

(1 Question)

  • Q1. How did you enjoyed your college life? Who is your role model? What is costumer service? How long will you work here
Round 2 - HR 

(1 Question)

  • Q1. What Is your goal
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was good 2 Questions asked

Round 2 - Technical 

(3 Questions)

  • Q1. Find the count of rows in table using xpath.
  • Ans. 

    Use XPath to find the count of rows in a table.

    • Use the XPath expression 'count(//table//tr)' to find the count of rows in a table.

    • Make sure to adjust the XPath expression based on the structure of the table in the HTML document.

    • You can use browser developer tools to inspect the table and determine the appropriate XPath expression.

  • Answered by AI
  • Q2. On clicking the checkbox the value of checkbox should also be displayed
  • Q3. There is an id in particular row example 123456, find the id and there are multiple pages you have to iterate through each page and print the value if available if not that print message the id not availab...
  • Ans. 

    Iterate through multiple pages to find and print a specific id value

    • Create a loop to iterate through each page

    • Search for the id value on each page

    • If the id is found, print the value, if not, print a message that the id is not available

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Did not seem like the Interviewer wanted to hire anyone. He asked a Question gave me a paper and pen and he put his head down claiming he had an headache. When I tried to talk to him to clarify my queries, he would taunt like we have hired people and they don't even know to write an xpath. Also he commented I hope you must have come through these scenarios hope you must have seen a table. No respect for the candidate. After asking the Questions he expected me to answer without thinking I should just type. Commented multiple times that this is so simple.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - No interview 

(2 Questions)

  • Q1. No question anything
  • Q2. Not yet , came with bad feel
Round 2 - No interview 

(1 Question)

  • Q1. No question anything

Interview Preparation Tips

Interview preparation tips for other job seekers - Before you go for interview in Cognizant company, pls make sure whether the interview is scheduled or not, because I got experience very badly, I traveled from Belgaum to Bengalore because of this interview. But they told in interview day very easily that "the interview scheduled is cancel hogaya, Tu aage week me aayiye madam jii". This not fair for this company. We women travel alone and got permission from everyone in family to attend the interview. I request to the company team that please update the information before one day. It will not gonna distract someone's dream.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(3 Questions)

  • Q1. Tell me about your self
  • Q2. What's your hobby
  • Q3. Strength and weekness
Round 2 - Aptitude Test 

Good test and need to practice before going to there

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

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a dedicated and experienced BPO Executive with a strong background in customer service and team management.

    • Over 5 years of experience in the BPO industry

    • Proven track record of exceeding targets and KPIs

    • Skilled in managing a team and resolving customer issues efficiently

  • Answered by AI
  • Q2. What is accounting
  • Ans. 

    Accounting is the process of recording, summarizing, analyzing, and reporting financial transactions of a business.

    • Involves recording financial transactions

    • Summarizing financial data in financial statements

    • Analyzing financial information to make business decisions

    • Reporting financial results to stakeholders

    • Examples: preparing balance sheets, income statements, cash flow statements

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. How many type of changes exist in ITIL, define them all with example
  • Ans. 

    There are seven types of changes in ITIL: Standard, Emergency, Normal, Major, Minor, Service Request, and RFC.

    • Standard Change: Pre-authorized change with low risk and impact, like adding a new user to a system.

    • Emergency Change: Change required to resolve a major incident or implement a security patch immediately.

    • Normal Change: Planned change that goes through the full change management process, like upgrading software.

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - ChatGpt has all your answers

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Capgemini Change Release Manager Salary
based on 39 salaries
₹4.5 L/yr - ₹19.3 L/yr
9% less than the average Change Release Manager Salary in India
View more details

Capgemini Change Release Manager Reviews and Ratings

based on 2 reviews

3.9/5

Rating in categories

3.7

Skill development

4.0

Work-life balance

2.9

Salary

4.0

Job security

4.0

Company culture

2.9

Promotions

3.0

Work satisfaction

Explore 2 Reviews and Ratings
Consultant
55.1k salaries
unlock blur

₹5.1 L/yr - ₹17.5 L/yr

Associate Consultant
50.9k salaries
unlock blur

₹3 L/yr - ₹11.8 L/yr

Senior Consultant
46.1k salaries
unlock blur

₹7.5 L/yr - ₹25 L/yr

Senior Analyst
20.8k salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Senior Software Engineer
20.1k salaries
unlock blur

₹3.5 L/yr - ₹12.5 L/yr

Explore more salaries
Compare Capgemini with

Wipro

3.7
Compare

Accenture

3.8
Compare

Cognizant

3.8
Compare

TCS

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