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 Developer Associate Interview Questions and Answers for Experienced

Updated 9 Nov 2024

SAP Developer Associate Interview Experiences for Experienced

7 interviews found

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

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

Round 1 - Coding Test 

This round had 20 questions on Basics of ABAP

Round 2 - Technical 

(2 Questions)

  • Q1. Questions of OO Abap
  • Q2. Questions on Projects
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Aug 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. GIL, WSGI, Django
  • Q2. DSA questions - Leetcode medium
Round 3 - Technical 

(1 Question)

  • Q1. 2 Leetcode medium
Round 4 - HR 

(1 Question)

  • Q1. Common HR questions. Why do you want to join? Negotiations etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for the DSA questions using Leetcode.

Developer Associate Interview Questions Asked at Other Companies for Experienced

asked in SAP
Q1. How to reverse a linked list and write program to get right view ... read more
Q2. Linq questions: First vs Firstordefault, single vs singleordefaul ... read more
Q3. Delete vs truncate pillars of oops(explain each one with example)
Q4. Different types of Joins in SQL
Q5. Explained company policies
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are binary trees?
  • Ans. 

    Binary trees are hierarchical data structures composed of nodes, where each node has at most two children.

    • Consists of nodes with at most two children - left and right

    • Each node can have zero, one, or two children

    • Used in various applications like binary search trees, expression trees, etc.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - keep on applying

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2021. There were 5 interview rounds.

Round 1 - Coding Test 

Open book coding test. Depends on the format. I had 2 questions to code in 45 minutes

Round 2 - Technical 

(1 Question)

  • Q1. Technical round where basic understanding of the topics like Java, Dbms, DS, MySQL was asked.
Round 3 - Technical 

(1 Question)

  • Q1. Another one-on-one round where in depth knowledge on technical skills was tested.
Round 4 - One-on-one 

(1 Question)

  • Q1. Managerial round was with managers. Asked real life application questions and some logical reasoning.
Round 5 - One-on-one 

(1 Question)

  • Q1. Basic HR discussion like working from home/ working from office/ hybrid. Explanation of role and responsibilities. Salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep solving questions on GeeksForGeeks and LeetCode. All the best.

SAP interview questions for designations

 Associate Software Developer

 (7)

 Associate Application Developer

 (2)

 Associate Developer 2

 (1)

 Developer

 (11)

 Associate Consultant

 (2)

 Software Developer

 (47)

 Senior Developer

 (7)

 Java Developer

 (3)

I appeared for an interview in Dec 2020.

Interview Questionnaire 

4 Questions

  • Q1. There were 5 rounds in total. i.e., one written test, two technical rounds, one managerial round followed by one HR.
  • Q2. 1. Written test included questions on DS and algorithms. Also few aptitude questions.
  • Q3. 2. Technical round one was completely about basics of ABAP whereas round two included some coding questions in addition to it.
  • Q4. 3. Managerial round and HR round is where your compensation would be discussed and nothing technical was included in these rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly I would say that " the only dream that you can't achieve is the one that you don't go after". I would suggest you guys to grab the opportunity and go for the interview even if you're not prepared for it. The experience teaches you a lot and you also get to know the questions.
Just be patient and keep trying guys.
All the best ✌️

I applied via LinkedIn and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How to reverse a linked list and write program to get right view of a binary tree.
  • Ans. 

    To reverse a linked list, we need to traverse the list and change the direction of the pointers. To get the right view of a binary tree, we need to traverse the tree and keep track of the rightmost node at each level.

    • To reverse a linked list, we can use three pointers to keep track of the current, previous, and next nodes.

    • To get the right view of a binary tree, we can use a queue to traverse the tree level by level and...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well. Mainly DS algo questions are asked. They may ask questions from DbMS, networking, OS also.

Skills evaluated in this interview

Developer Associate Jobs at SAP

View all

Interview Preparation Tips

For 2-3 years of experience average data structures and language specific knowledge in will be enough

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed before Dec 2021. There were 4 interview rounds.

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 - Aptitude Test 

Quantitative, Reasoning, DBMS Concepts, Flow chart questions

Round 3 - Technical 

(2 Questions)

  • Q1. Merge sort explain and write code
  • Ans. 

    Merge sort is a divide and conquer algorithm that sorts an array by dividing it into two halves, sorting each half, and then merging them.

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

    • Time complexity is O(n log n)

    • Space complexity is O(n)

  • Answered by AI
  • Q2. OOPS Concepts, Computer Network concepts
Round 4 - Technical 

(2 Questions)

  • Q1. Check if there is Loop in a Linked List
  • Ans. 

    To check if there is a loop in a linked list, we can use Floyd's cycle-finding algorithm.

    • Create two pointers, slow and fast, and initialize them to the head of the linked list.

    • Move slow pointer by one node and fast pointer by two nodes.

    • If there is a loop, the fast pointer will eventually catch up to the slow pointer.

    • If there is no loop, the fast pointer will reach the end of the linked list.

    • Time complexity: O(n), Space

  • Answered by AI
  • Q2. Tell about the experience of your college

Interview Preparation Tips

Interview preparation tips for other job seekers - Explain your approach properly to the interviewer. Be confident.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Explain about data scrapping,computer vision,agile methodologies,change request,testing methods
  • Ans. 

    Data scraping, computer vision, agile methodologies, change request, and testing methods are all important aspects of software engineering.

    • Data scraping involves extracting data from websites or other sources.

    • Computer vision involves using algorithms to interpret and analyze visual data.

    • Agile methodologies are a set of principles for software development that prioritize flexibility and collaboration.

    • Change requests are...

  • Answered by AI
  • Q2. Explain about project i worked in

Interview Preparation Tips

Interview preparation tips for other job seekers - interviewer was very friendly and i had good experience.2 technical rounds one client round and one HR round

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Java 8 features - Stream API, Functional interface (Predicate, Binary Operators, Function), Permgen V/s Metaspace, Date and Time API
  • Q2. Spring boot annotations - @SpringBootApplication, @RestController, @GetMapping, @PostMapping, @Service, @Repository
  • Q3. Coding Question 1 - Find sum of squares of numbers in list using stream API.
  • Ans. 

    Find sum of squares of numbers in list using stream API.

    • Use mapToInt() to convert list of integers to IntStream

    • Use map() to square each element of IntStream

    • Use sum() to get the sum of squares

  • Answered by AI
  • Q4. Coding Question 2 - Searching in 2D sorted array row wise and column wise.
  • Ans. 

    Searching in 2D sorted array row wise and column wise.

    • Start from the top right corner or bottom left corner

    • Compare the target with the current element

    • Move left or down if target is smaller or move right or up if target is larger

    • Repeat until target is found or out of bounds

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and also do lots of hands on coding.

Skills evaluated in this interview

SAP Interview FAQs

How many rounds are there in SAP Developer Associate interview for experienced candidates?
SAP interview process for experienced candidates usually has 3 rounds. The most common rounds in the SAP interview process for experienced candidates are Technical, Coding Test and One-on-one Round.
How to prepare for SAP Developer Associate 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 SAP. The most common topics and skills that interviewers at SAP expect are Javascript, ABAP, Java, Agile and Software Design.
What are the top questions asked in SAP Developer Associate interview for experienced candidates?

Some of the top questions asked at the SAP Developer Associate interview for experienced candidates -

  1. How to reverse a linked list and write program to get right view of a binary tr...read more
  2. what are binary tre...read more
  3. 2. Technical round one was completely about basics of ABAP whereas round two in...read more

Tell us how to improve this page.

SAP Developer Associate Interview Process for Experienced

based on 3 interviews

2 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 865 Interviews
Google Interview Questions
4.4
 • 844 Interviews
Amdocs Interview Questions
3.7
 • 518 Interviews
Zoho Interview Questions
4.3
 • 512 Interviews
KPIT Technologies Interview Questions
3.4
 • 291 Interviews
Adobe Interview Questions
3.9
 • 235 Interviews
Salesforce Interview Questions
4.0
 • 230 Interviews
View all
SAP Developer Associate Salary
based on 856 salaries
₹7.8 L/yr - ₹23 L/yr
62% more than the average Developer Associate Salary in India
View more details

SAP Developer Associate Reviews and Ratings

based on 112 reviews

4.2/5

Rating in categories

3.9

Skill development

4.5

Work-life balance

3.4

Salary

4.5

Job security

4.5

Company culture

3.4

Promotions

3.8

Work satisfaction

Explore 112 Reviews and Ratings
ABAP Associate Developer

Bangalore / Bengaluru

1-3 Yrs

₹ 9.5-21.3 LPA

Developer Associate (ABAP) - S/4HANA Cloud Foundation

Bangalore / Bengaluru

2-6 Yrs

Not Disclosed

Explore more jobs
Software Developer
1.2k salaries
unlock blur

₹8.3 L/yr - ₹32.7 L/yr

Developer
920 salaries
unlock blur

₹10.2 L/yr - ₹34 L/yr

Developer Associate
863 salaries
unlock blur

₹7.8 L/yr - ₹22.5 L/yr

Senior Developer
531 salaries
unlock blur

₹13.1 L/yr - ₹50 L/yr

Business Process Consultant
453 salaries
unlock blur

₹10 L/yr - ₹40 L/yr

Explore more salaries
Compare SAP with

Oracle

3.7
Compare

SAS

4.3
Compare

Zoho

4.3
Compare

IBM

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