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

Clear (1)

SAP Developer Associate Interview Questions, Process, and Tips

Updated 9 Nov 2024

Top SAP Developer Associate Interview Questions and Answers

  • Q1. Reverse a Linked List Iteratively You are given a singly linked list of integers. The task is to return the head of the reversed linked list. Example: Input: The given l ...read more
  • Q2. Uncommon Characters Problem Statement Given two strings str1 and str2 containing only lowercase alphabets, find the characters that are unique to each string, i.e., char ...read more
  • Q3. Inorder Successor in a Binary Tree Given a node in an arbitrary binary tree, find its inorder successor. The successor is defined as the node that appears immediately af ...read more
View all 7 questions

SAP Developer Associate Interview Experiences

15 interviews found

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

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 mins
Round difficulty - Easy

The first round was coding + mcq round. It was held in the campus in the afternoon. There were 10 mcqs based on the computer related subjects and 2 coding questions with around 10 test cases to be completed within 60 minutes. The questions were random for every person. 

  • Q1. 

    Inorder Successor in a Binary Tree

    Given a node in an arbitrary binary tree, find its inorder successor. The successor is defined as the node that appears immediately after the given node in the in-order ...

  • Ans. 

    Given a node in a binary tree, find its inorder successor in the tree.

    • Traverse the tree in in-order fashion to find the successor node.

    • If the given node has a right child, the successor will be the leftmost node in the right subtree.

    • If the given node does not have a right child, backtrack to the parent nodes to find the successor.

    • Handle the case where the given node is the last node in the in-order traversal.

    • Return the...

  • Answered by AI
  • Q2. 

    Uncommon Characters Problem Statement

    Given two strings str1 and str2 containing only lowercase alphabets, find the characters that are unique to each string, i.e., characters that occur in only one of th...

  • Ans. 

    Find uncommon characters in two strings and return them in lexicographically sorted order.

    • Iterate through each character in both strings and keep track of their frequency using a hashmap.

    • Iterate through the hashmap and add characters with frequency 1 to the result array.

    • Sort the result array in lexicographical order and return it.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

I got selected for the interview. It was held 2 days after the coding round. First all the shortlisted students attended the company ppt. After that we went for the first interview. The interviewer was very friendly. He mainly asked about DBMS concepts and some coding questions.

  • Q1. 

    Reverse a Linked List Iteratively

    You are given a singly linked list of integers. The task is to return the head of the reversed linked list.

    Example:

    Input:
    The given linked list is 1 -> 2 -> 3 ...
  • Ans. 

    Reverse a singly linked list iteratively and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.

    • Keep track of the previous, current, and next nodes while traversing the linked list.

    • Update the head of the reversed linked list to be the last node encountered.

    • Time complexity: O(N), Space complexity: O(1).

  • Answered by AI
Round 3 - Face to Face 

Round duration - 40 mins
Round difficulty - Hard

Soon, after the first interview, I got shortlisted for the second interview. I went to the interviewer. At first, he just asked me about my hobbies.Subsequently, he took a look at my CV and asked me to explain the projects on which I had worked on in my internship. After that, he asked about whether I know Java on which I said no. Then he asked me some concepts of OOPS and a problem on inheritance and classes.

Round 4 - Face to Face 

Round duration - 15 mins
Round difficulty - Easy

After an hour of the second interview, I was called for the managerial round. The manager first asked me to introduce myself and then he just asked me my job location preference whether it is bangalore or gurgaon. He then asked are you satisfied with the pay we are offering. At the end, he asked me what approach can we use to count hair on our head.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Delhi Technological University. I applied for the job as Developer Associate in BangaloreEligibility criteria7 cgpaSAP Labs interview preparation:Topics to prepare for the interview - Database Management System, Operating System, Bit Manipulation, Object Oriented Programming, Data Structures, Machine Learning basicsTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Always tell what you are thinking to the interviewer, don’t be silent, be confident. Interviewer is more concerned with how you approach a question rather than just getting the solution. 
Tip 2 : Practice, practice and Practice. You have to code regularly. You won't remember the approach of a question if you just mentally solve it and don't code. Practicing will also enhance your speed on the day of the test.
Tip 3 : Just focus on your preparation. Don't bother yourselves by what others are doing. People may try to mislead you by concealing about their preparation.

Application resume tips for other job seekers

Tip 1: Try to adjust it to one page. Don't include unnecessary details.
Tip 2: Try to use good templates present on the internet. My interviewer was quite impressed with my template.

Final outcome of the interviewSelected

Skills evaluated in this interview

Developer Associate Interview Questions Asked at Other Companies

asked in FICO
Q1. Cycle Detection in a Singly Linked List Determine if a given sing ... read more
asked in SAP
Q2. Reverse a Linked List Iteratively You are given a singly linked l ... read more
asked in SAP
Q3. Inorder Successor in a Binary Tree Given a node in an arbitrary b ... read more
asked in SAP
Q4. Uncommon Characters Problem Statement Given two strings str1 and ... read more
asked in Cognizant
Q5. Merge Sort Problem Statement You are given a sequence of numbers, ... read more

Developer Associate Interview Questions & Answers

user image Jatin Nijhawan

posted on 14 May 2017

I was interviewed in Dec 2016.

Interview Questionnaire 

3 Questions

  • Q1. Grilling on Resume
  • Q2. Subjects you are comfortable with
  • Ans. 

    I am comfortable with various subjects related to software development.

    • Programming languages (e.g. Java, Python, C++)

    • Web development (e.g. HTML, CSS, JavaScript)

    • Database management (e.g. SQL, MongoDB)

    • Software testing and debugging

    • Version control systems (e.g. Git)

    • Object-oriented programming concepts

    • Algorithms and data structures

  • Answered by AI
  • Q3. Personal

Interview Preparation Tips

Round: Test
Experience: 25 mins for 25 apti ques and 3 coding problems
Duration: 3 hours

Round: Technical Interview
Experience: All ques were asked according to my resume including some technical questions

Round: Technical Interview
Experience: Questions were asked on data structures to me

Round: Managerial Round
Experience: G.K. + technical questions were asked

Round: HR Interview
Experience: My prons and cons
my areas of improvement

Skills: Coding Skills And Knowledge On Data Structures, General Knowledge
College Name: Chitkara University, Patiala

Skills evaluated in this interview

I applied via Referral

Interview Questionnaire 

4 Questions

  • Q1. Technical round one
  • Q2. Technical round two
  • Q3. Weaknesses and Strengths?
  • Ans. 

    My strengths include problem-solving, adaptability, and teamwork. My weaknesses include public speaking and time management.

    • Strengths: Problem-solving (e.g. finding solutions to complex coding challenges), adaptability (e.g. quickly learning new programming languages or tools), teamwork (e.g. collaborating with colleagues to achieve project goals)

    • Weaknesses: Public speaking (e.g. presenting in front of large groups), t...

  • Answered by AI
  • Q4. LCS, Puzzles

Interview Preparation Tips

Round: Test
Experience: There were 4 to 5 sections. Mathematical, verbal ability, aptitude, and there were some technical questions. And 2 coding related questions.
Tips: Time was less, questions were more, so focus more on solving the easiest sum first. And if you solve one coding question, you are through the test.

Round: Technical Interview
Experience: 1. Testing on basic knowledge. Few basic concepts like DBMS, OOPs, DS.
2. Questions were also from software engineering.
3. Codes on finding number of palindrome in a string.
Tips: Cover up almost all the subjects as it helps you to answer related to them.

Round: Technical Interview
Experience: 1. Discussion on project
2. Somehow same as first round.
3. Focus on the B.Tech Project.
Tips: 1. Complete project successfully before going.
2. Prepare things related to it.

Round: Other Interview
Experience: I was able to answer both, as i had my basics clear. This was a managerial round basically.
Tips: Say yes if you know it, and no if you don't know it.

Round: HR Interview
Experience: Smiling face and Confidence attitude, and low voice helps you out in this round.
Tips: Why SAP Labs?
Knowledge about your job?

General Tips: Don't waste the time of the interviewer. Be confident about what you know.
Skills: Operating System Basics, Basic Knowledge Of DBMS, Coding Skills, Algorithms And Data Structures, Java Programming, C Programming
College Name: Heritage Institute Of Technology, Kolkata
Motivation: SAP labs is a Product based company. And amazing work atmosphere.
Funny Moments: Free food all over. On the day of the interview so even if you don't get selected, just eat a lot and return happily.

SAP interview questions for designations

 Associate Software Developer

 (7)

 Associate Application Developer

 (2)

 Associate Developer 2

 (1)

 Developer

 (11)

 Associate Consultant

 (2)

 Software Developer

 (46)

 Senior Developer

 (7)

 Java Developer

 (3)

Interview Preparation Tips

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

Get interview-ready with Top SAP Interview Questions

Contribute & help others!
anonymous
You can choose to be anonymous

SAP Interview FAQs

How many rounds are there in SAP Developer Associate interview?
SAP interview process usually has 4 rounds. The most common rounds in the SAP interview process are Technical, Coding Test and HR.
How to prepare for SAP Developer Associate 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, Java, ABAP, Agile and Software Design.
What are the top questions asked in SAP Developer Associate interview?

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

  1. How to reverse a linked list and write program to get right view of a binary tr...read more
  2. design a calculator that does operations on 128 bit intege...read more
  3. Subjects you are comfortable w...read more

Recently Viewed

INTERVIEWS

Worley

No Interviews

JOBS

AGILE AIRPORT SERVICES

No Jobs

INTERVIEWS

Worley

No Interviews

REVIEWS

Aditya Birla Fashion and Retail

No Reviews

REVIEWS

Aditya Birla Fashion and Retail

No Reviews

REVIEWS

Axxela Research & Analytics

No Reviews

JOBS

Nextasy Technologies

No Jobs

JOBS

Skill-ed Kindergarten

No Jobs

JOBS

Yuniq

No Jobs

INTERVIEWS

SAP

No Interviews

Tell us how to improve this page.

SAP Developer Associate Interview Process

based on 8 interviews

4 Interview rounds

  • Coding Test Round
  • Technical Round - 1
  • Technical Round - 2
  • Personal Interview1 Round
View more

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
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
Oracle Interview Questions
3.7
 • 847 Interviews
Google Interview Questions
4.4
 • 824 Interviews
View all
SAP Developer Associate Salary
based on 827 salaries
₹6.7 L/yr - ₹23 L/yr
64% 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 Developer Associate

Bangalore / Bengaluru

2-4 Yrs

Not Disclosed

Developer Associate - SAP ABAP

Bangalore / Bengaluru

3-6 Yrs

Not Disclosed

Explore more jobs
Software Developer
1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Developer
864 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Developer Associate
827 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Developer
502 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Process Consultant
421 salaries
unlock blur

₹0 L/yr - ₹0 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