Skip to contentSkip to footer
  • Community
  • Jobs
  • Companies
  • Salaries
  • For Employers
      Notifications

      Loading...

      Elevate your career

      Discover your earning potential, land dream jobs, and share work-life insights anonymously.

      employer cover photo
      employer logo
      employer logo

      SAP

      Engaged Employer

      About
      Reviews
      Pay & benefits
      Jobs
      Interviews
      Interviews
      Related searches: SAP reviews | SAP jobs | SAP salaries | SAP benefits | SAP conversations
      SAP interviewsSAP Developer (F/M) for Cutting-edge Applications interviewsSAP interview


      Glassdoor

      • About / Press
      • Awards
      • Blog
      • Research
      • Contact Us
      • Guides

      Employers

      • Free Employer Account
      • Employer Center
      • Employers Blog

      Information

      • Help
      • Guidelines
      • Terms of Use
      • Privacy & Ad Choices
      • Do Not Sell Or Share My Information
      • Cookie Consent Tool
      • Security

      Work With Us

      • Advertisers
      • Careers
      Download the App

      • Browse by:
      • Companies
      • Jobs
      • Locations
      • Communities
      • Recent Posts

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls," and logo are proprietary trademarks of Glassdoor LLC.

      Company Bowl sample

      Want the inside scoop on your own company?

      Check out your Company Bowl for anonymous work chats.

      Bowls

      Get actionable career advice tailored to you by joining more bowls.

      Followed companies

      Stay ahead in opportunities and insider tips by following your dream companies.

      Job searches

      Get personalized job recommendations and updates by starting your searches.

      Top companies for "Compensation and Benefits" near you

      avatar
      Cisco
      4.0★Compensation & Benefits
      avatar
      Salesforce
      4.4★Compensation & Benefits
      avatar
      Capgemini
      3.7★Compensation & Benefits
      avatar
      NiCE
      3.6★Compensation & Benefits

      Developer (F/M) for Cutting-edge Applications Interview

      May 29, 2012
      Anonymous Interview Candidate
      Declined offer
      Negative experience
      Average interview

      Application

      I applied online. The process took 2 weeks. I interviewed at SAP in Apr 2012

      Interview

      First, HR interview: backgroud and qualification check Second: online interview and online coding, and ask many basic questions about java programming. Thrid round: interview, code discussion, ask many questions about project management such as crum model, java programming, and the background, etc. Discuss the code which was implemented before the interview.

      Interview questions [2]

      Question 1

      The first round: Phone interview + online coding: ?You are given an array of n integers, each of which may be positive, negative or zero. Give an algorithm to identify the start and end index, i and j, of the interval whose elements form the maximal sum of all possible intervals. Assume j >=i e.g. {1 3 -8 2 -1 10 -2 1} -> i=3 , j=5 – sum = 11 Example non-maximal sum intervals: i=0, j=5 – sum = 7 i=2, j=4 – sum = -7
      Answer question

      Question 2

      The second round interview: Implement a binary tree with the given interface, then discuss the implementation via remote desktop and phone. /* * An interface for an sorted binary tree. * * The interface provides methods for inserting values, checking if certain values are contained and iterating over the elements. * Note: Implementing classes should provide an iterator that traverse the inserted object in the sorted order. */ public interface IBinTree<V extends Comparable<V>> extends Iterable<V> { /* * Insert an object into the binary tree. Note: The tree should be sorted, inserting the same object twice is allowed but the insert is expected to be stable. */ void insert(V obj); /* * Batch-insert multiple elements. */ void insert(Vector<V> vec); /* * Check if the object is already in the tree. Return true if it is, false otherwise. */ boolean contains(V obj); }
      Answer question