Premium Employer

i

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

Sopra Steria Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Sopra Steria Interview Questions and Answers

Updated 19 Jun 2025
Popular Designations

57 Interview questions

A Project Manager was asked 1mo ago
Q. What is your educational background?
Ans. 

I hold a degree in Project Management, complemented by certifications in Agile and PMP methodologies.

  • Bachelor's degree in Business Administration with a focus on Project Management.

  • Certified Project Management Professional (PMP) from PMI.

  • Completed Agile Certified Practitioner (PMI-ACP) training.

  • Participated in various workshops on risk management and team leadership.

  • Gained practical experience through internships ...

View all Project Manager interview questions
A Senior React JS Developer was asked 3mo ago
Q. How do you fetch an API using the Context API?
Ans. 

Use context api to fetch api data in React

  • Create a context to store the api data

  • Use useContext hook to access the context in components

  • Use useEffect hook to fetch data from api and update the context

  • Pass the context provider to wrap the components that need the api data

View all Senior React JS Developer interview questions
A SAP Abap Consultant was asked 9mo ago
Q. What are the basics of the data dictionary?
Ans. 

The Data Dictionary in SAP ABAP is a central repository for metadata, defining data structures and relationships in the database.

  • Contains definitions of database objects like tables, views, and data elements.

  • Tables are defined with fields, data types, and keys; e.g., MARA for material master data.

  • Data elements define the type and length of fields; e.g., CHAR, NUMC.

  • Domains specify the technical attributes of data e...

View all SAP Abap Consultant interview questions
An Infra Lead was asked 9mo ago
Q. Intermittent one way audio
Ans. 

Intermittent one way audio can be caused by network issues, device settings, or software glitches.

  • Check network connectivity and bandwidth to ensure stable connection

  • Verify device settings such as microphone and speaker configurations

  • Update software and drivers to address any potential glitches

  • Consider firewall or security settings that may be blocking audio transmission

View all Infra Lead interview questions
A Full Stack Developer was asked 10mo ago
Q. How would you implement caching in Spring Boot?
Ans. 

Spring Boot provides support for caching through annotations like @Cacheable, @CacheEvict, @CachePut.

  • Use @EnableCaching annotation to enable caching in Spring Boot application

  • Use @Cacheable annotation to cache the result of a method

  • Use @CacheEvict annotation to remove entries from the cache

  • Use @CachePut annotation to update the cache without interfering with the method execution

View all Full Stack Developer interview questions
An Automation Test Engineer was asked 10mo ago
Q. Explain the code logic of a hashmap.
Ans. 

Hashmaps store key-value pairs for efficient data retrieval using hashing techniques.

  • Hashmaps use a hash function to compute an index for storing values.

  • Example: In Java, use 'HashMap<String, Integer>' to map names to ages.

  • Collision handling can be done via chaining or open addressing.

  • Time complexity for insertions, deletions, and lookups is O(1) on average.

View all Automation Test Engineer interview questions
A SAP Abap Consultant was asked 10mo ago
Q. What is the difference between writing rollback and omitting commit work?
Ans. 

Rollback cancels the changes made in a transaction, while omitting commit work does not save the changes.

  • Rollback cancels all the changes made in a transaction and reverts the data to its original state.

  • Omitting commit work does not save the changes made in a transaction, but the changes are still visible until the session is closed.

  • Rollback is used when there is an error or issue in the transaction that needs to ...

View all SAP Abap Consultant interview questions
Are these interview questions helpful?
A SAP Abap Consultant was asked 10mo ago
Q. What is a rollback work process?
Ans. 

Rollback work is a process in SAP ABAP where changes made in a transaction are undone and the system is restored to its previous state.

  • Rollback work is used to revert changes made in a transaction if an error occurs or if the user decides to cancel the changes.

  • It ensures data consistency and integrity by undoing incomplete or incorrect transactions.

  • Rollback work can be triggered manually by the user or automatical...

View all SAP Abap Consultant interview questions
A SAP Abap Consultant was asked 10mo ago
Q. What is the difference between BADI and user exit?
Ans. 

BADI is an enhancement technique in SAP ABAP that allows for multiple implementations, while user exits are single-point enhancements.

  • BADI allows for multiple implementations to be active at the same time, while user exits only allow for one at a time.

  • BADI is object-oriented and can be used in multiple applications, while user exits are specific to a particular program or transaction.

  • BADI is implemented using clas...

View all SAP Abap Consultant interview questions
A Scrum Master and Project Lead was asked 10mo ago
Q. Can you detail the role of a Scrum Master?
Ans. 

Scrum Master is responsible for facilitating the Scrum process, coaching the team, and removing any obstacles that may hinder progress.

  • Facilitates Scrum events such as daily stand-ups, sprint planning, and retrospectives

  • Coaches the team on Agile principles and practices

  • Helps the team self-organize and make decisions

  • Removes impediments that are blocking the team's progress

  • Acts as a buffer between the team and exter...

View all Scrum Master and Project Lead interview questions

Sopra Steria Interview Experiences

139 interviews found

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

I applied via LinkedIn and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Manual Testing Questions
  • Q2. Situation based questions
Round 2 - Behavioral 

(2 Questions)

  • Q1. Client related discussion
  • Q2. Some questions from technical round
Round 3 - HR 

(2 Questions)

  • Q1. Package discussion
  • Q2. Explaining about company
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. Can we write commit work in enhancement ?
  • Ans. 

    No, commit work cannot be written in enhancement.

    • Commit work statement cannot be written in enhancement as it can lead to inconsistencies in the database.

    • Enhancements are meant to enhance the standard functionality without modifying it directly.

    • Using commit work in enhancement can cause issues during system upgrades or patches.

    • Instead of using commit work in enhancement, it is recommended to use implicit enhancements o...

  • Answered by AI
  • Q2. What is search help ? What are its different types?
  • Ans. 

    Search help is a tool used in SAP ABAP to help users find values for input fields. There are different types like elementary search help and collective search help.

    • Search help is a tool in SAP ABAP used to assist users in finding values for input fields.

    • Elementary search help is used for a single field, while collective search help is used for multiple fields.

    • Search helps can be defined using tables, views, or function...

  • Answered by AI
  • Q3. What is the difference between BADI and user exit ?
  • Ans. 

    BADI is an enhancement technique in SAP ABAP that allows for multiple implementations, while user exits are single-point enhancements.

    • BADI allows for multiple implementations to be active at the same time, while user exits only allow for one at a time.

    • BADI is object-oriented and can be used in multiple applications, while user exits are specific to a particular program or transaction.

    • BADI is implemented using classes a...

  • Answered by AI
  • Q4. What is rollback work?
  • Ans. 

    Rollback work is a process in SAP ABAP where changes made in a transaction are undone and the system is restored to its previous state.

    • Rollback work is used to revert changes made in a transaction if an error occurs or if the user decides to cancel the changes.

    • It ensures data consistency and integrity by undoing incomplete or incorrect transactions.

    • Rollback work can be triggered manually by the user or automatically by...

  • Answered by AI
  • Q5. What is the difference between writing rollback and omitting commit work ?
  • Ans. 

    Rollback cancels the changes made in a transaction, while omitting commit work does not save the changes.

    • Rollback cancels all the changes made in a transaction and reverts the data to its original state.

    • Omitting commit work does not save the changes made in a transaction, but the changes are still visible until the session is closed.

    • Rollback is used when there is an error or issue in the transaction that needs to be un...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Sopra Steria SAP Abap Consultant interview:
  • Enhancements
  • Badis

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. About SQL and DBMS
  • Q2. About DSA, Improvizing program
Round 2 - Aptitude Test 

Tracing the Flowchart

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Good and moderate.
This good experience to attend interview and if we have good knowledge will trackit

Round 2 - HR 

(2 Questions)

  • Q1. Personal questions for location and salary discussion and shift
  • Q2. Reallocate is possible if it's required
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Tell me about your self
  • Q2. How you spend your last weekend
  • Ans. 

    I spent my last weekend exploring nature, reading a captivating book, and enjoying quality time with family and friends.

    • Went hiking at a local trail, enjoying the fresh air and beautiful scenery.

    • Read 'The Night Circus' by Erin Morgenstern, which was both enchanting and thought-provoking.

    • Cooked a family dinner, trying out a new recipe for homemade pasta.

    • Spent Sunday afternoon playing board games with friends, fostering ...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Hashmap code logic
  • Ans. 

    Hashmaps store key-value pairs for efficient data retrieval using hashing techniques.

    • Hashmaps use a hash function to compute an index for storing values.

    • Example: In Java, use 'HashMap<String, Integer>' to map names to ages.

    • Collision handling can be done via chaining or open addressing.

    • Time complexity for insertions, deletions, and lookups is O(1) on average.

  • Answered by AI
  • Q2. Propertiy file , xpath ,excel file code
Round 2 - Behavioral 

(2 Questions)

  • Q1. Resume based question
  • Q2. Ci cd jenkin question

Interview Preparation Tips

Interview preparation tips for other job seekers - Best of luck
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant

Round 1 - Technical 

(1 Question)

  • Q1. Ask for basic dot net questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Question based on fundmentals of CS

Round 2 - Technical 

(2 Questions)

  • Q1. Dsa related problem ,SQL and your project.
  • Q2. Majorly focouses on Dsa and SQL
Round 3 - HR 

(1 Question)

  • Q1. Ask question about your shifts and timings and will you able to relocate or not

Graduate Trainee Interview Questions & Answers

user image 66_ 115_meenakshi

posted on 9 Jul 2024

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

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

Round 1 - Aptitude Test 

It was an critical thinking round in aptitude so much concentration but said it's really easy anyone can crack it just Little bit attention is needed.

Round 2 - Technical 

(2 Questions)

  • Q1. What is joints ? Dml and ddl commands ?
  • Ans. 

    Joints are connections between bones in the body. DML commands are used to manipulate data in a database, while DDL commands are used to define the structure of a database.

    • Joints are where two or more bones meet and allow for movement.

    • DML (Data Manipulation Language) commands like INSERT, UPDATE, and DELETE are used to manage data in a database.

    • DDL (Data Definition Language) commands like CREATE, ALTER, and DROP are us...

  • Answered by AI
  • Q2. All from cv like frontend and backend code for object creation in .net developer?
Round 3 - HR 

(2 Questions)

  • Q1. Is the bond you like it ?
  • Ans. 

    Bonds are essential financial instruments that provide stability and income, appealing to conservative investors.

    • Bonds are fixed-income securities that pay interest over time.

    • They are less volatile than stocks, making them a safer investment.

    • For example, government bonds are backed by the government, reducing risk.

    • Corporate bonds can offer higher yields but come with increased risk.

    • Bonds can diversify an investment por...

  • Answered by AI
  • Q2. Other verification process ?
  • Ans. 

    Other verification processes may include background checks, reference checks, skills assessments, and psychometric tests.

    • Background checks: Verify employment history, criminal record, and education credentials.

    • Reference checks: Contacting previous employers or colleagues for feedback on the candidate.

    • Skills assessments: Testing the candidate's abilities in specific areas relevant to the job.

    • Psychometric tests: Assessin...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It is really good company to starting for and I personally learned sooo many things and in learning process too.

Skills evaluated in this interview

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. What are streams in Java? 2 stream based questions
  • Q2. Project based questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic questions based on code snippets, find error in the code etc. understand the structural flow of code.

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about you internshop
  • Q2. On which Technology you worked on
  • Ans. 

    I have worked on developing web applications using Java Spring framework.

    • Developed RESTful APIs using Spring Boot

    • Implemented security features using Spring Security

    • Utilized Hibernate for database interactions

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was medium level interview process and be patient and confident.

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Sopra Steria?
Ask anonymously on communities.

Sopra Steria Interview FAQs

How many rounds are there in Sopra Steria interview?
Sopra Steria interview process usually has 2-3 rounds. The most common rounds in the Sopra Steria interview process are Technical, HR and Aptitude Test.
How to prepare for Sopra Steria 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 Sopra Steria. The most common topics and skills that interviewers at Sopra Steria expect are Java, SQL, Javascript, SAP ABAP and Python.
What are the top questions asked in Sopra Steria interview?

Some of the top questions asked at the Sopra Steria interview -

  1. What type of ticketing tool was used in your previous organizati...read more
  2. What are DHCP and DNS what are their us...read more
  3. Do you know about Office 365 and Active directo...read more
What are the most common questions asked in Sopra Steria HR round?

The most common HR questions asked in Sopra Steria interview are -

  1. What are your strengths and weakness...read more
  2. What are your salary expectatio...read more
  3. Tell me about yourse...read more
How long is the Sopra Steria interview process?

The duration of Sopra Steria interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 126 interview experiences

Difficulty level

Easy 16%
Moderate 75%
Hard 9%

Duration

Less than 2 weeks 65%
2-4 weeks 25%
4-6 weeks 6%
More than 8 weeks 5%
View more
Join Sopra Steria The world is how we shape it

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.6k Interviews
Wipro Interview Questions
3.7
 • 6k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
DXC Technology Interview Questions
3.7
 • 836 Interviews
NTT Data Interview Questions
3.8
 • 656 Interviews
EPAM Systems Interview Questions
3.7
 • 569 Interviews
View all

Sopra Steria Reviews and Ratings

based on 1.9k reviews

3.8/5

Rating in categories

3.5

Skill development

4.0

Work-life balance

3.4

Salary

3.9

Job security

3.8

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 1.9k Reviews and Ratings
Business Analyst Technical Lead

Bangalore / Bengaluru

6-9 Yrs

Not Disclosed

SQL Developer Module Lead

Chennai

4-6 Yrs

Not Disclosed

Splunk Administrator

Bangalore / Bengaluru

6-8 Yrs

Not Disclosed

Explore more jobs
Module Lead
1.8k salaries
unlock blur

₹8 L/yr - ₹23 L/yr

Senior Software Engineer
1.7k salaries
unlock blur

₹5 L/yr - ₹20 L/yr

Technical Lead
1.1k salaries
unlock blur

₹9 L/yr - ₹27 L/yr

Software Engineer
1.1k salaries
unlock blur

₹3.4 L/yr - ₹11 L/yr

Process Associate
459 salaries
unlock blur

₹1.5 L/yr - ₹5.1 L/yr

Explore more salaries
Compare Sopra Steria with

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare
write
Share an Interview