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

Compare button icon Compare button icon Compare

Filter interviews by

Sopra Steria Interview Questions, Process, and Tips for Experienced

Updated 27 Feb 2025

Top Sopra Steria Interview Questions and Answers for Experienced

View all 38 questions

Sopra Steria Interview Experiences for Experienced

Popular Designations

58 interviews found

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

SAP Abap Consultant Interview Questions asked at other Companies

Q1. 1.what is ddic T-code 2. what is package 3.what are objects in se11 3.what is domain and data element 4.steps to create table 5.what are different types of views 5.what is lock objects 6.what is TMG and events in TMG 7.what is autorization ... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Java memory model in java

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How to fetch api using 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

  • Answered by AI

Senior React JS Developer Interview Questions asked at other Companies

Q1. What is singleton pattern. Where and how have you used it.
View answer (1)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Mainframe Assembler Instructions
  • Q2. Mainframe DB2 Questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Project overview, domain

Interview Preparation Tips

Interview preparation tips for other job seekers - Hiring at Sopra Steria is so cherry-picking kind of hiring. You will be hired only if you have relevant knowledge

Top Sopra Steria Senior Software Engineer Interview Questions and Answers

Q1. what is an API? how to deploy it
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

Sopra Steria interview questions for popular designations

 Module Lead

 (12)

 Software Engineer

 (12)

 Senior Software Engineer

 (12)

 Engineer Trainee

 (12)

 Technical Lead

 (7)

 Software Developer

 (7)

 Software Engineer Trainee

 (4)

 Process Associate

 (4)

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

(2 Questions)

  • Q1. How do you rate your work-life balance in your career, and what initiatives do you take to maintain it?
  • Q2. What motivated you to choose your hobby, and what is it?

Process Associate Interview Questions asked at other Companies

Q1. How will you explain a red colour (or any colour) to a person who is blind since his or her birth?
View answer (21)

Get interview-ready with Top Sopra Steria Interview Questions

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

(2 Questions)

  • Q1. Event loop in Node.js
  • Ans. 

    Event loop in Node.js manages asynchronous operations by executing callback functions when certain events occur.

    • Event loop is responsible for handling I/O operations and executing callbacks.

    • It allows Node.js to perform non-blocking operations efficiently.

    • Event loop continuously checks the event queue for new events to process.

    • Example: setTimeout function in Node.js uses event loop to schedule the callback function to b

  • Answered by AI
  • Q2. Process.nextTick vs SetIntermediate
  • Ans. 

    process.nextTick is used to defer the execution of a callback function until the next iteration of the event loop, while SetImmediate is used to execute a callback function immediately after the current event loop.

    • process.nextTick is more efficient for executing code asynchronously in the same phase of the event loop.

    • SetImmediate is better suited for executing code asynchronously in the next iteration of the event loop...

  • Answered by AI

Skills evaluated in this interview

Backend Developer Lead Interview Questions asked at other Companies

Q1. Explain about how will solve a service which is lagging
View answer (1)

Jobs at Sopra Steria

View all

Full Stack Developer Interview Questions & Answers

user image Meena Mogarala

posted on 25 Jul 2024

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

(2 Questions)

  • Q1. Dependecy injection
  • Q2. Components of dot net framework
  • Ans. 

    The components of the .NET framework include Common Language Runtime (CLR), Base Class Library (BCL), and Framework Class Library (FCL).

    • Common Language Runtime (CLR) - manages code execution and provides services such as memory management and exception handling

    • Base Class Library (BCL) - provides a set of reusable classes, interfaces, and value types

    • Framework Class Library (FCL) - a collection of reusable classes, inter...

  • Answered by AI

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
View answer (1)

Technical Lead Interview Questions & Answers

user image Shikhar Negi

posted on 19 Jul 2024

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

(2 Questions)

  • Q1. Java Persistence API
  • Q2. Functional Interface

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Mostly about resume and projects you hv worked before
Round 2 - Behavioral 

(1 Question)

  • Q1. Generic related to plm and process
Round 3 - HR 

(1 Question)

  • Q1. Salary, onsite etc

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)
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 Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It was for 1 hr and most questions were from the JAVA framework and UI screen design

Round 2 - HR 

(2 Questions)

  • Q1. General questions about your hobbies and why interested in this company and the reason for change
  • Q2. Tell me your major weakness

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to work.

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)

What people are saying about Sopra Steria

View All
a module lead software developer
1w
Referral
Can anyone please refer me in your respective companies for ReactJs or MERN stack role? Experience is 6+ years..
Got a question about Sopra Steria?
Ask anonymously on communities.

Sopra Steria Interview FAQs

How many rounds are there in Sopra Steria interview for experienced candidates?
Sopra Steria interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the Sopra Steria interview process for experienced candidates are Technical, HR and Resume Shortlist.
How to prepare for Sopra Steria interview for experienced candidates?
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 for experienced candidates?

Some of the top questions asked at the Sopra Steria interview for experienced candidates -

  1. What is the difference between writing rollback and omitting commit wor...read more
  2. What is the difference between BADI and user exi...read more
  3. What is search help ? What are its different typ...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.

Sopra Steria Interview Process for Experienced

based on 35 interviews

Interview experience

3.9
  
Good
View more
Join Sopra Steria The world is how we shape it

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.7k 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
IBM Interview Questions
4.0
 • 2.3k Interviews
View all

Sopra Steria Reviews and Ratings

based on 1.8k reviews

3.8/5

Rating in categories

3.5

Skill development

4.0

Work-life balance

3.4

Salary

4.0

Job security

3.8

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 1.8k Reviews and Ratings
BPS - Voice Process Associate

Noida

0-3 Yrs

Not Disclosed

BPS - Voice Process Associate

Noida

1-3 Yrs

Not Disclosed

SAP EWM Senior Functional Analyst

Bangalore / Bengaluru

6-8 Yrs

Not Disclosed

Explore more jobs
Module Lead
1.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
1.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
1.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
996 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Process Associate
512 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Sopra Steria with

Capgemini

3.7
Compare

Accenture

3.8
Compare

TCS

3.7
Compare

Wipro

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