Upload Button Icon Add office photos
Engaged Employer

i

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

SAP 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

SAP Software Developer Interview Questions, Process, and Tips

Updated 22 Jan 2025

Top SAP Software Developer Interview Questions and Answers

  • Q1. Duplicate Integer in Array Given an array ARR of size N , containing each number between 1 and N-1 at least once, identify the single integer that appears twice. Input: ...read more
  • Q2. Given a 10 digit number, sort the individual digits of the number.
  • Q3. Multilevel Inheritance Implementation Create a series of classes to demonstrate multilevel inheritance. Explanation: Create three classes to illustrate multilevel inheri ...read more
View all 122 questions

SAP Software Developer Interview Experiences

46 interviews found

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

(1 Question)

  • Q1. Basic Questions on domain and coding questions
Round 2 - Coding Test 

Leet Code questions on strings and arrays were asked

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

Moderate. questions were from leetcode

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

Software Developer Interview Questions & Answers

user image Balaskandan Giri

posted on 27 Mar 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(1 Question)

  • Q1. Linked list and graph question

Software Developer Interview Questions & Answers

user image Vijayendra Upadhyay

posted on 1 Mar 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Why we hire you?
  • Q2. Having experience in same domain.

Interview Preparation Tips

Interview preparation tips for other job seekers - Always keep your self claim.

SAP interview questions for designations

 Associate Software Developer

 (7)

 Software Developer Intern

 (4)

 Senior Software Developer

 (2)

 Developer

 (11)

 Software Engineer

 (6)

 Developer Associate

 (15)

 Senior Developer

 (7)

 Java Developer

 (3)

Interview experience
5
Excellent
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 tips
Round 2 - Coding Test 

2 uestions- easy medium

Round 3 - Technical 

(1 Question)

  • Q1. Code for quick sort
  • Ans. 

    Quick sort is a popular sorting algorithm that uses divide and conquer approach.

    • Divide the array into two sub-arrays based on a pivot element

    • Recursively sort the sub-arrays

    • Combine the sorted sub-arrays

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Solve a puzzle problem
Round 5 - HR 

(1 Question)

  • Q1. Willing to relocation ? any area of interest to work

Skills evaluated in this interview

Get interview-ready with Top SAP Interview Questions

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude coding round hr round time

Round 2 - Aptitude Test 

There are some basic information

Round 3 - Technical 

(1 Question)

  • Q1. They have to lear about

I applied via campus placement at PES School of Engineering, Bangalore and was interviewed in Jul 2022. There were 5 interview rounds.

Round 1 - Coding Test 

The coding round was very simple many did the questions but only 40 were selected. No clue how they selected as many did all the questions.

Round 2 - Technical 

(4 Questions)

  • Q1. Write a function to know if the check-box is checked in javascript.
  • Ans. 

    Function to check if a checkbox is checked in JavaScript

    • Use the 'checked' property of the checkbox element

    • Access the checkbox element using its ID or class name

    • Return true if checked, false if not checked

  • Answered by AI
  • Q2. Explain Hashing in detail.
  • Ans. 

    Hashing is a process of converting data into a fixed-size output that represents the original data.

    • Hashing is used for data integrity and security purposes.

    • Hash functions are one-way functions that cannot be reversed.

    • Hash collisions occur when two different inputs produce the same hash output.

    • Common hashing algorithms include MD5, SHA-1, and SHA-256.

    • Hashing is used in password storage, digital signatures, and blockchai

  • Answered by AI
  • Q3. He asked which data structure would you use for a round table conference and mike wants to pass in clock wise direction.
  • Ans. 

    A circular linked list would be the best data structure for a round table conference where Mike wants to pass in a clockwise direction.

    • A circular linked list allows for easy traversal in a circular manner.

    • Each node in the linked list would represent a person at the conference.

    • Mike can start at any node and traverse in a clockwise direction until he reaches his starting point again.

    • This data structure also allows for ea...

  • Answered by AI
  • Q4. What is the difference between Java and C++?
  • Ans. 

    Java is platform-independent and uses automatic memory management, while C++ is faster and allows for more control over memory.

    • Java is compiled to bytecode and runs on a virtual machine, while C++ is compiled to machine code.

    • Java has automatic memory management through garbage collection, while C++ requires manual memory management.

    • Java has a simpler syntax and is easier to learn, while C++ has more complex syntax and ...

  • Answered by AI
Round 3 - Technical 

(4 Questions)

  • Q1. Asked to explain one of my projects clearly.
  • Q2. How to implement queue using stack?
  • Ans. 

    Implementing a queue using stack involves using two stacks to simulate the behavior of a queue.

    • Create two stacks, one for enqueue and one for dequeue operations.

    • For enqueue operation, push the element onto the enqueue stack.

    • For dequeue operation, if the dequeue stack is empty, pop all elements from the enqueue stack and push onto the dequeue stack.

    • Pop the top element from the dequeue stack for dequeue operation.

  • Answered by AI
  • Q3. Detect a loop in a linked list.
  • Ans. 

    Detect a loop in a linked list.

    • Use two pointers, one moving at a slower pace than the other.

    • If there is a loop, the faster pointer will eventually catch up with the slower one.

    • If the faster pointer reaches the slower pointer, there is a loop in the linked list.

  • Answered by AI
  • Q4. Find the repeated number in a list of contagious numbers.
  • Ans. 

    Find the repeated number in a list of contagious numbers.

    • Iterate through the list and keep track of the numbers seen so far

    • If a number is already seen, it is the repeated number

    • Use a hash set or dictionary to efficiently check for duplicates

    • If the list is sorted, use two pointers to find the repeated number

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

(2 Questions)

  • Q1. Asked to explain one of my projects clearly.
  • Q2. All questions related to project itself.
Round 5 - HR 

(4 Questions)

  • Q1. Asked to explain one of my projects.
  • Q2. What are your top 3 strengths?
  • Q3. Give a real-life example that proves your strengths.
  • Q4. Discussion of salary , Location ,role preference.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident while answering. Know about your projects well and you should know every nook and corner of your resume. Be fluent in any of the programming languages you are comfortable with.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

2 questions were there medium level

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a string
  • Ans. 

    Reverse a given string

    • Use a loop to iterate through the characters of the string

    • Append each character to a new string in reverse order

    • Return the reversed string

  • Answered by AI
  • Q2. Linked list reversal

Interview Preparation Tips

Interview preparation tips for other job seekers - try to prectice more dsa

I applied via Naukri.com and was interviewed in Jan 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. A technical round with a developer
Round 2 - Technical 

(1 Question)

  • Q1. A technical round with a technical Architect
Round 3 - Technical 

(1 Question)

  • Q1. Semi technical round with manager

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview process started as if it would be quick but it took a whole month to complete 3 rounds. The HR was very unresponsive who would not pickup calls or give updates on time. After clearing all the rounds the HR says that the position was put on hold and they can proceed if I choose Bangalore as my base location. After 2 days of telling me that the position was put on hold they had another opening for the exact same profile and the same city. And even after clearing all rounds I was rejected without giving any reason at all. Worst interview experience ever

I applied via Company Website and was interviewed in Nov 2021. There were 5 interview rounds.

Round 1 - Coding Test 

Hackerrank test

Round 2 - Technical 

(2 Questions)

  • Q1. Question on Hashmap code
  • Q2. Question on tree, binary search tree
Round 3 - Technical 

(2 Questions)

  • Q1. Question on core java
  • Q2. Question on Linkedlist
Round 4 - Technical 

(2 Questions)

  • Q1. Behavioral questions asked by Hiring Manager
  • Q2. 2 code questions asked based on strings and matrix
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion and negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - 3 rounds + 1 HR :
Tech Round 1 - DS/Algo
Tech Round 2 - DS/Algo + Java
HM Round - Techno Functional
HR Round

SAP Interview FAQs

How many rounds are there in SAP Software Developer interview?
SAP interview process usually has 2-3 rounds. The most common rounds in the SAP interview process are Technical, Coding Test and HR.
How to prepare for SAP Software Developer 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 SAP. The most common topics and skills that interviewers at SAP expect are Javascript, Scrum, Software Development, ERP and SAP.
What are the top questions asked in SAP Software Developer interview?

Some of the top questions asked at the SAP Software Developer interview -

  1. Given a 10 digit number, sort the individual digits of the numb...read more
  2. How do you tackle something that you can't find a solution ...read more
  3. Discuss a DBMS consisting of college faculty, professors, courses and studen...read more
How long is the SAP Software Developer interview process?

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

Tell us how to improve this page.

SAP Software Developer Interview Process

based on 24 interviews

5 Interview rounds

  • Coding Test Round
  • Technical Round
  • HR Round - 1
  • Aptitude Test Round
  • HR Round - 2
View more
SAP Software Developer Salary
based on 1k salaries
₹8.5 L/yr - ₹32.1 L/yr
152% more than the average Software Developer Salary in India
View more details

SAP Software Developer Reviews and Ratings

based on 180 reviews

4.1/5

Rating in categories

3.7

Skill development

4.4

Work-life balance

3.3

Salary

4.4

Job security

4.3

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 180 Reviews and Ratings
Software Developer
1k salaries
unlock blur

₹8.5 L/yr - ₹32.1 L/yr

Developer
863 salaries
unlock blur

₹10 L/yr - ₹32 L/yr

Developer Associate
823 salaries
unlock blur

₹6.3 L/yr - ₹20.5 L/yr

Senior Developer
487 salaries
unlock blur

₹13.1 L/yr - ₹48 L/yr

Business Process Consultant
421 salaries
unlock blur

₹10 L/yr - ₹40 L/yr

Explore more salaries
Compare SAP with

Oracle

3.7
Compare

SAS

4.4
Compare

Zoho

4.3
Compare

IBM

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