Upload Button Icon Add office photos

Automatic Data Processing (ADP)

Compare button icon Compare button icon Compare

Proud winner of ABECA 2025 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Automatic Data Processing (ADP) Associate Software Engineer Interview Questions and Answers

Updated 24 Apr 2025

Automatic Data Processing (ADP) Associate Software Engineer Interview Experiences

2 interviews found

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

I applied via LinkedIn and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

DSA, basic questions on DSA

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

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. OOPS concepts, SQL indexing, stored procedure, Angular testing
  • Q2. Fibonacci series code
  • Q3. Basic Intro, Strengths, weakness

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
Q2. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Accenture
Q3. Write a function to determine if a given string is a valid passwo ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
asked in CGI Group
Q5. Frog Jump Problem Statement A frog is positioned on the first ste ... read more

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Automatic Data Processing (ADP)?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview in Jan 2021.

Interview Questionnaire 

1 Question

  • Q1. Merge sort, Quick sort and fibonaci
  • Ans. 

    Merge sort and Quick sort are sorting algorithms while Fibonacci is a sequence of numbers.

    • Merge sort is a divide and conquer algorithm that divides the input array into two halves, sorts each half and then merges them.

    • Quick sort is also a divide and conquer algorithm that selects a pivot element and partitions the array around the pivot.

    • Fibonacci is a sequence of numbers where each number is the sum of the two precedin...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good at algorithm, they can judge very quickly the efficiency level.

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 Approached by Company and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is difference between abstract class and interface?

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn about java and object oriented programming programming.

Skills evaluated in this interview

What are the roles & responsibilities of a Associate Software Engineer at Automatic Data Processing (ADP)?

Software Development

  • Design and develop applications based on requirements
  • Document code and development processes
  • Participate in agile ceremonies and contribute to team best practices

Read full roles & responsibilities

Interview Questionnaire 

9 Questions

  • Q1. System design of traffic signal
  • Ans. 

    Design a traffic signal system

    • Identify the number of lanes and intersections

    • Determine the traffic flow and peak hours

    • Choose appropriate sensors and controllers

    • Implement a synchronization algorithm

    • Consider emergency vehicle prioritization

    • Include pedestrian crossing signals

    • Ensure compliance with local regulations

  • Answered by AI
  • Q2. Data structures
  • Q3. Oops spring jdbc
  • Q4. Hashmap implementation
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and provides constant time complexity for insertion, deletion, and retrieval.

    • Hashmap uses hashing function to map keys to indices in an array

    • Collisions can occur when multiple keys map to the same index, which can be resolved using separate chaining or open addressing

    • Java implementation: HashMap<String, Integer> map = new HashMap<>();

  • Answered by AI
  • Q5. Pattern printing code
  • Ans. 

    This code prints a pyramid pattern of stars based on a specified number of rows.

    • Use nested loops: Outer loop for rows, inner loop for spaces and stars.

    • Calculate spaces: For each row, print (n - i) spaces before stars.

    • Print stars: For each row, print (2 * i + 1) stars after spaces.

    • Example for 5 rows: * *** ***** ******* *********

  • Answered by AI
  • Q6. Common point in linked list
  • Ans. 

    Common point in linked list refers to the node where two or more linked lists intersect.

    • The common point can be found by traversing both linked lists and comparing the nodes.

    • The common point can also be found by using two pointers, one for each linked list, and moving them until they meet at the common point.

    • Examples include finding the intersection point of two linked lists or finding the loop in a linked list.

  • Answered by AI
  • Q7. Optimization
  • Q8. Synchronisation
  • Q9. Threads

Skills evaluated in this interview

Automatic Data Processing (ADP) HR Interview Questions

57 questions and answers

Q. Why do you want to work as a customer executive?
Q. What factors contribute to your unique qualifications or skills?
Q. Can you describe your experience with your previous company?

Interview Questionnaire 

1 Question

  • Q1. Data Structures, Algorithms, System designing, Azure
Are these interview questions helpful?

I applied via Recruitment Consultant and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Qurstions on work experience, html, css, javascript and react. Js

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident when you don't know the answer be truthful and prepare well on your domain.

Interview Questionnaire 

1 Question

  • Q1. Implement serialization of tree
  • Ans. 

    Serialize a tree data structure

    • Use pre-order traversal to serialize the tree

    • Store null values as a special character

    • Use a delimiter to separate nodes

    • Example: 1,2,null,null,3,4,null,null,5,null,null

    • Deserialize by splitting the string and using a queue

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Why important in learning programming languages.
  • Ans. 

    Learning programming languages is important for software engineers to effectively communicate with computers and develop software solutions.

    • Programming languages are the foundation of software development.

    • Learning multiple languages expands the range of problems a software engineer can solve.

    • Different languages have different strengths and are suited for different tasks.

    • Knowing multiple languages improves adaptability ...

  • Answered by AI

Automatic Data Processing (ADP) Interview FAQs

How many rounds are there in Automatic Data Processing (ADP) Associate Software Engineer interview?
Automatic Data Processing (ADP) interview process usually has 1 rounds. The most common rounds in the Automatic Data Processing (ADP) interview process are Coding Test.
How to prepare for Automatic Data Processing (ADP) Associate Software Engineer 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 Automatic Data Processing (ADP). The most common topics and skills that interviewers at Automatic Data Processing (ADP) expect are Equity, RDBMS, Agile, Debugging and Payroll.
What are the top questions asked in Automatic Data Processing (ADP) Associate Software Engineer interview?

Some of the top questions asked at the Automatic Data Processing (ADP) Associate Software Engineer interview -

  1. Fibonacci series c...read more
  2. OOPS concepts, SQL indexing, stored procedure, Angular test...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
52% more than the average Associate Software Engineer Salary in India
View more details

Automatic Data Processing (ADP) Associate Software Engineer Reviews and Ratings

based on 4 reviews

3.6/5

Rating in categories

2.8

Skill development

4.5

Work-life balance

3.7

Salary

4.5

Job security

3.7

Company culture

2.4

Promotions

2.8

Work satisfaction

Explore 4 Reviews and Ratings
Senior Member Technical
1.6k salaries
unlock blur

₹8.2 L/yr - ₹22.6 L/yr

Analyst
1.4k salaries
unlock blur

₹5 L/yr - ₹11 L/yr

Senior Process Associate
1.4k salaries
unlock blur

₹3.4 L/yr - ₹7 L/yr

Consultant
1.4k salaries
unlock blur

₹19 L/yr - ₹32.6 L/yr

Member Technical
927 salaries
unlock blur

₹4.8 L/yr - ₹10 L/yr

Explore more salaries
Compare Automatic Data Processing (ADP) with

Oracle

3.6
Compare

Amdocs

3.7
Compare

Carelon Global Solutions

3.8
Compare

KPIT Technologies

3.2
Compare
write
Share an Interview