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
3.8

based on 39.8k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Capgemini Senior Sdet Engineer Interview Questions and Answers

Updated 9 Jan 2025

Capgemini Senior Sdet Engineer Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Write a code to split a string to one by one letter in each line?
  • Q2. Write Xpath of an element from amazon.in page manually, without copying.

Interview Preparation Tips

Topics to prepare for Capgemini Senior Sdet Engineer interview:
  • Selenium
  • Java
Interview preparation tips for other job seekers - Get proper understanding of the current tool version of the tools you are using. Basic Java programming

Interview questions from similar companies

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

(2 Questions)

  • Q1. Overloading and overriding
  • Q2. Smoke and sanity

Senior Sdet Engineer Interview Questions & Answers

TCS user image Mallikarjun lingampet

posted on 15 Nov 2024

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

Duplicate characters in string

Round 2 - Behavioral 

(1 Question)

  • Q1. Tell about project in your organisation
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Dr. B.R. Ambedkar National Institute of Technology (NIT), Jalandhar and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 question in 3 hours

Round 2 - Technical 

(2 Questions)

  • Q1. Count -/1 in a given array
  • Ans. 

    Count the occurrences of '-/1' in a given array of strings.

    • Iterate through the array and count the number of times '-/1' appears in each string.

    • Use a loop to go through each element of the array and check for the substring '-/1'.

    • Keep a counter to track the total occurrences of '-/1' in the array.

  • Answered by AI
  • Q2. What is data structure
  • Ans. 

    Data structure is a way of organizing and storing data in a computer so that it can be accessed and manipulated efficiently.

    • Data structures define the way data is organized and stored in memory.

    • Examples include arrays, linked lists, stacks, queues, trees, and graphs.

    • Choosing the right data structure is crucial for efficient data manipulation and retrieval.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - please study hard

Skills evaluated in this interview

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

It was a basic coding rount

Round 2 - Technical 

(2 Questions)

  • Q1. What is kafka service
  • Ans. 

    Kafka is a distributed streaming platform used for building real-time data pipelines and streaming applications.

    • Kafka is designed to handle high-throughput, fault-tolerant, and scalable real-time data streams.

    • It allows for the publishing and subscribing to streams of records, similar to a message queue.

    • Kafka is often used for log aggregation, stream processing, event sourcing, and real-time analytics.

    • It provides featur...

  • Answered by AI
  • Q2. What is cassandra and what is it used for.
  • Ans. 

    Cassandra is a distributed NoSQL database management system designed for handling large amounts of data across multiple servers.

    • Cassandra is used for storing and managing large amounts of structured data across multiple commodity servers.

    • It provides high availability and fault tolerance with no single point of failure.

    • Cassandra is commonly used for real-time analytics, IoT data, messaging platforms, and more.

    • It uses a ...

  • Answered by AI

Skills evaluated in this interview

Sdet Engineer Interview Questions & Answers

Accenture user image AKANKSHA JAISWAL

posted on 28 Nov 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Apt and coding test was in first

Round 2 - Coding Test 

2 coding questions was ask

Round 3 - One-on-one 

(2 Questions)

  • Q1. It was on your resume question
  • Q2. Hr questions was asked in interview
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Manual Testing Concepts
  • Q2. What are Oops Concepts
  • Ans. 

    Oops Concepts are fundamental principles of object-oriented programming such as Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability of a function to behave differently based on the object it is acting upon.

    • Abstraction: Hiding t...

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

I applied via LinkedIn and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is Hard assert
  • Ans. 

    Hard assert is a type of assertion in test automation that stops the test execution immediately when a failure occurs.

    • Hard assert is used to validate the expected outcome of a test case

    • If the assertion fails, the test execution is halted and marked as failed

    • It is commonly used in automated test scripts to ensure the correctness of the application under test

  • Answered by AI
  • Q2. What is soft assert
  • Ans. 

    Soft assert is a way to continue the execution of a test case even after an assertion failure.

    • Soft assert does not stop the execution of the test case when an assertion fails.

    • It is useful when you want to log the failure but continue with the remaining test steps.

    • Soft assert is commonly used in test automation frameworks like TestNG in Java.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. What are the methods of select
  • Ans. 

    Methods of selecting elements in automation testing include using locators, XPath, CSS selectors, and various other strategies.

    • Using locators such as ID, class name, name, tag name, link text, and partial link text

    • Using XPath to navigate through elements in the HTML structure

    • Using CSS selectors to target elements based on their styles

    • Using various strategies like text matching, attribute values, and sibling/child relat...

  • Answered by AI
  • Q2. Background keyword of cucumber
  • Ans. 

    Cucumber is a keyword used in BDD (Behavior Driven Development) testing framework to define test scenarios in a human-readable format.

    • Cucumber is used to write test scenarios in Gherkin language

    • It helps in bridging the communication gap between technical and non-technical team members

    • Cucumber allows for easy collaboration and understanding of test cases

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is overriding
  • Ans. 

    Overriding is a concept in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its superclass.

    • Inheritance allows a subclass to inherit methods from its superclass.

    • Overriding allows a subclass to provide a specific implementation of a method that is already defined in its superclass.

    • The method in the subclass must have the same name, return type, and pa...

  • Answered by AI
  • Q2. Basic java programs
Round 3 - HR 

(2 Questions)

  • Q1. What are your strengths
  • Ans. 

    My strengths include attention to detail, problem-solving skills, and strong communication abilities.

    • Attention to detail - I have a keen eye for spotting errors and ensuring accuracy in my work.

    • Problem-solving skills - I am able to analyze complex problems and come up with effective solutions.

    • Strong communication abilities - I can effectively communicate with team members and stakeholders to ensure clarity and collabor

  • Answered by AI
  • Q2. Explain agile process and environment
  • Ans. 

    Agile process is a software development methodology that promotes adaptive planning, evolutionary development, early delivery, and continuous improvement.

    • Agile process involves breaking down the project into small increments called sprints

    • It emphasizes collaboration between cross-functional teams

    • Feedback is gathered regularly from stakeholders to make necessary adjustments

    • Scrum, Kanban, and XP are common frameworks use

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic question related to java, collection
  • Q2. Question related to selenium, dropdown, screenshot, handling cookies

Capgemini Interview FAQs

How many rounds are there in Capgemini Senior Sdet Engineer interview?
Capgemini interview process usually has 1 rounds. The most common rounds in the Capgemini interview process are Technical.
What are the top questions asked in Capgemini Senior Sdet Engineer interview?

Some of the top questions asked at the Capgemini Senior Sdet Engineer interview -

  1. Write a code to split a string to one by one letter in each li...read more
  2. Write Xpath of an element from amazon.in page manually, without copyi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Capgemini Senior Sdet Engineer Salary
based on 4 salaries
₹23 L/yr - ₹30 L/yr
8% more than the average Senior Sdet Engineer Salary in India
View more details

Capgemini Senior Sdet Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

1.0

Skill development

3.0

Work-life balance

3.0

Salary

4.0

Job security

3.0

Company culture

1.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Consultant
55.2k salaries
unlock blur

₹5.2 L/yr - ₹18 L/yr

Associate Consultant
52k salaries
unlock blur

₹2.9 L/yr - ₹11.8 L/yr

Senior Consultant
46k salaries
unlock blur

₹7.5 L/yr - ₹25 L/yr

Senior Analyst
20.6k salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Senior Software Engineer
19.9k salaries
unlock blur

₹3.5 L/yr - ₹12.1 L/yr

Explore more salaries
Compare Capgemini with

Wipro

3.7
Compare

Accenture

3.9
Compare

Cognizant

3.8
Compare

TCS

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