AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Automatic Data Processing (ADP)

Compare button icon Compare button icon Compare
4.0

based on 3.4k Reviews

Play video Play video Video summary

Proud winner of ABECA 2025 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern
golden leaf award AmbitionBox awards

Top Rated Internet/Product Company - 2025

golden leaf award
  • About
  • Reviews
    3.4k
  • Salaries
    20.4k
  • Interviews
    257
  • Jobs
    8
  • Benefits
    492
  • Photos
    15
  • Posts
    2

Filter interviews by

Automatic Data Processing (ADP) Member Technical Interview Questions and Answers

Updated 1 Apr 2025

6 Interview questions

A Member Technical was asked 8mo ago
Q. Write a string manipulation code in Python.
Ans. 

String manipulation in Python

  • Use string methods like split(), join(), replace(), etc.

  • Remember that strings are immutable in Python

  • Be mindful of string concatenation efficiency

A Member Technical was asked 8mo ago
Q. Write code to print a right-angled triangle pattern.
Ans. 

Generate a right-angle triangle pattern using asterisks in programming.

  • Use nested loops: Outer loop for rows, inner loop for columns.

  • For a triangle of height 'n', print 'i' asterisks in the 'i'th row.

  • Example for n=5: * ** *** **** *****

  • Adjust spacing for different alignments (left, right, centered).

Member Technical Interview Questions Asked at Other Companies

asked in Broadridge Financial Solutions
Q1. There are two ropes, each taking 30 minutes to burn completely. H ... read more
Add answer
asked in Broadridge Financial Solutions
Q2. What is the angle made by the minute hand when it moves from 5 to ... read more
View answer (1)
asked in HCLTech
Q3. What is DFMEA, VAVE etc... and all other design parameters (that ... read more
View answers (4)
asked in Broadridge Financial Solutions
Q4. What are different kind of security vulnerabilities and how to ha ... read more
View answer (1)
asked in Broadridge Financial Solutions
Q5. Write a program to add two command line arguments in C shell.
View answer (1)
View All
A Member Technical was asked 10mo ago
Q. A phrase is a palindrome if, after converting all uppercase letters into lowercase letters and removing all non-alphanumeric characters, it reads the same forward and backward. Given a string s, return true...
Ans. 

A valid palindrome reads the same forwards and backwards, ignoring spaces, punctuation, and capitalization.

  • A palindrome can be a word, phrase, number, or other sequences. Example: 'racecar'.

  • Phrases like 'A man, a plan, a canal, Panama!' are palindromic when ignoring spaces and punctuation.

  • To check if a string is a palindrome, compare it to its reverse.

  • Case sensitivity should be ignored; 'Madam' is a palindrome.

A Member Technical was asked
Q. How do you detect a loop in a Linked List?
Ans. 

To detect a loop in a Linked List, we can use Floyd's Cycle Detection Algorithm.

  • Start with two pointers, slow and fast, both initially pointing to the head of the linked list.

  • Move the slow pointer by one step and the fast pointer by two steps in each iteration.

  • If there is a loop, the two pointers will eventually meet at some point within the loop.

A Member Technical was asked
Q. Explain the engineering projects you have worked on.
Ans. 

Developed a smart irrigation system using IoT technology

  • Designed and implemented a system to monitor soil moisture levels

  • Integrated sensors and actuators to control water flow

  • Developed a mobile app to remotely monitor and control the system

  • Reduced water usage by 30% and improved crop yield by 20%

  • Used Arduino and Raspberry Pi for hardware and Python for software

A Member Technical was asked
Q. How do you swap two numbers without using a temporary variable?
Ans. 

Swapping two numbers without using a temporary variable.

  • Use arithmetic operations to swap the values

  • Add the two numbers and store the result in the first variable

  • Subtract the second variable from the result and store it in the second variable

  • Subtract the second variable from the first variable to get the original value of the second variable

  • The values of the two variables are now swapped

Automatic Data Processing (ADP) Member Technical Interview Experiences

24 interviews found

Member Technical Interview Questions & Answers

user image Anonymous

posted on 3 Oct 2024

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

I applied via Campus Placement and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Aptitude consists of reasoning, codes etc

Round 2 - Technical 

(2 Questions)

  • Q1. How do you motivate your team
  • Ans. 

    I motivate my team by setting clear goals, providing regular feedback, recognizing achievements, and fostering a positive work environment.

    • Setting clear goals and expectations

    • Providing regular feedback and constructive criticism

    • Recognizing and rewarding achievements

    • Fostering a positive work environment through team-building activities and open communication

  • Answered by AI
    Add your answer
  • Q2. String code in python
  • Ans. 

    String manipulation in Python

    • Use string methods like split(), join(), replace(), etc.

    • Remember that strings are immutable in Python

    • Be mindful of string concatenation efficiency

  • Answered by AI
    Add your answer
Round 3 - Technical 

(2 Questions)

  • Q1. Pattern code right angle triangle
  • Ans. 

    Generate a right-angle triangle pattern using asterisks in programming.

    • Use nested loops: Outer loop for rows, inner loop for columns.

    • For a triangle of height 'n', print 'i' asterisks in the 'i'th row.

    • Example for n=5: * ** *** **** *****

    • Adjust spacing for different alignments (left, right, centered).

  • Answered by AI
    Add your answer
  • Q2. Tell me about your project
  • Ans. 

    Developed a mobile app for tracking daily water intake and setting hydration goals.

    • Used React Native for front-end development

    • Implemented Firebase for backend database and authentication

    • Included features like daily reminders and progress tracking

    • Received positive feedback from users on user-friendly interface

  • Answered by AI
    Add your answer
Round 4 - HR 

(2 Questions)

  • Q1. Who is your motivation
  • Ans. 

    My motivation is my family and the desire to make them proud.

    • Family is my biggest motivation

    • I want to succeed to provide a better life for my loved ones

    • Their support drives me to work harder

    • Seeing their happiness when I achieve my goals fuels my determination

  • Answered by AI
    Add your answer
  • Q2. Tell me about your project
  • Ans. 

    Developed a mobile application for tracking daily water intake

    • Designed user-friendly interface for inputting water consumption

    • Implemented reminder notifications to encourage regular hydration

    • Integrated with health tracking apps to provide comprehensive health data

    • Received positive feedback from users on improved hydration habits

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

Member Technical Interview Questions & Answers

user image Anonymous

posted on 28 Jan 2025

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

I appeared for an interview in Jul 2024.

Round 1 - Technical 

(1 Question)

  • Q1. All related to sql Sql real-time queries As i have knowledge on the Oracle Modules related 30 to 35 questions My project experience Some aptitude questions
  • Add your answer
Round 2 - One-on-one 

(1 Question)

  • Q1. Personal questions Sql joins related example queries Package and hike discussion
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Offer Joinjng bonus Hike Vpa Package
  • Add your answer
Anonymous

Member Technical Interview Questions & Answers

user image Harshit Singhal

posted on 1 Aug 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Vilid Palindrome
  • Ans. 

    A valid palindrome reads the same forwards and backwards, ignoring spaces, punctuation, and capitalization.

    • A palindrome can be a word, phrase, number, or other sequences. Example: 'racecar'.

    • Phrases like 'A man, a plan, a canal, Panama!' are palindromic when ignoring spaces and punctuation.

    • To check if a string is a palindrome, compare it to its reverse.

    • Case sensitivity should be ignored; 'Madam' is a palindrome.

  • Answered by AI
    Add your answer
  • Q2. Fibonacci Number
  • Add your answer
Round 2 - Technical 

(1 Question)

  • Q1. About your personal Projects
  • Add your answer
Anonymous

Member Technical Interview Questions & Answers

user image Thallapelli Tejasri

posted on 14 May 2024

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

I applied via Campus Placement and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

IT has all the topics - aptitude, `coding basic networking

Round 2 - Coding Test 

Oops concepts and functions

Round 3 - One-on-one 

(1 Question)

  • Q1. Manager will connecting to you and this will ab like all in one round
  • Add your answer
Anonymous

Member Technical Interview Questions & Answers

user image Anonymous

posted on 19 Mar 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Asked basic aptitude questions and Some coding mcqs as well

Round 2 - Technical 

(1 Question)

  • Q1. 1) How do you detect a loop in Linked List?
  • Ans. 

    To detect a loop in a Linked List, we can use Floyd's Cycle Detection Algorithm.

    • Start with two pointers, slow and fast, both initially pointing to the head of the linked list.

    • Move the slow pointer by one step and the fast pointer by two steps in each iteration.

    • If there is a loop, the two pointers will eventually meet at some point within the loop.

  • Answered by AI
    Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Why do you want to work at ADP?
  • Ans. 

    I admire ADP's commitment to innovation and employee development, making it an ideal place for my career growth and contribution.

    • ADP's reputation for innovation in payroll and HR solutions aligns with my passion for technology and efficiency.

    • The company's focus on employee development and training programs shows a commitment to nurturing talent, which I value highly.

    • ADP's diverse and inclusive work culture resonates wi...

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

Member Technical Interview Questions & Answers

user image Anonymous

posted on 18 Jun 2024

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

Asked aptitude test it went well

Round 2 - Coding Test 

Asked for 5 coding questions logic and syntax on sql in 2 rounds

Round 3 - HR 

(2 Questions)

  • Q1. Why did you choose adp
  • Ans. 

    I chose ADP for its innovative solutions, strong reputation, and commitment to employee development and diversity.

    • ADP is a leader in payroll and HR solutions, providing cutting-edge technology that simplifies complex processes.

    • The company's commitment to diversity and inclusion aligns with my values, fostering a supportive work environment.

    • ADP's focus on employee development through training programs and career advance...

  • Answered by AI
    Add your answer
  • Q2. Compensation discussion
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interviewers
Should have atleast minimum knowledge
Asked for logics
Anonymous

Member Technical Interview Questions & Answers

user image Anonymous

posted on 23 Jun 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - Coding Test 

3 coding test related to arrays

Round 2 - HR 

(1 Question)

  • Q1. General discussion about tech stack
  • Add your answer
Anonymous

Member Technical Interview Questions & Answers

user image SHASHANK REDDY VOORELLI

posted on 31 Aug 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jul 2023. There were 5 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 

Both Aptitude and Technical basic

Round 3 - Technical 

(2 Questions)

  • Q1. OOPS, DSA, Programimg Language, SQL
  • Add your answer
  • Q2. Answering tricky questions
  • Add your answer
Round 4 - Technical 

(1 Question)

  • Q1. Programing Language, SQL
  • Add your answer
Round 5 - HR 

(1 Question)

  • Q1. General HR, About you.
  • Add your answer
Anonymous

Member Technical Interview Questions & Answers

user image Shakeel khan

posted on 29 Oct 2024

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

They have asked for pattern program

Anonymous

Member Technical Interview Questions & Answers

user image Anonymous

posted on 18 Jan 2025

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

I applied via Approached by Company and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Test includes Basic Aptitude, reasoning and english questions. Then Programming questions

Round 2 - Technical 

(3 Questions)

  • Q1. Basic questions on OOPs with examples
  • Add your answer
  • Q2. Reasoning questions
  • Add your answer
  • Q3. Coding question on pattern printing
  • Add your answer
Round 3 - One-on-one 

(1 Question)

  • Q1. Final round is one on one with hiring Manager where they expect to know more about you. Expect questions based on your resume and projects.
  • Add your answer
Anonymous

Top trending discussions

View All
Interview Tips & Stories
2w
timepasstiwari
·
A Digital Markter
ChatGPT prepped me HARD for my interview!
Spent like two hours on chatgpt yesterday prepping for an interview. First, the usual, copy-pasted my resume and the job description, telling it to "upload this to your memory 'cause we are going to talk about it later". Then I grilled it with questions about stuff I didn't get in the job spec, and chatgpt helped me figure things out. I asked it to list the four or five key things they are looking for in the role. Then I told chatgpt to quiz me with ten questions, one at a time, to help me think about how I have gained experience in those areas. After the ten questions, it gave me strengths/weaknesses and a summary. Finally, I had chatgpt summarize each of my answers into three bullet points. Now have got a list of stories ready to go for any interview. No matter the question, I can steer the convo toward one of these success stories.
Got a question about Automatic Data Processing (ADP)?
Ask anonymously on communities.
More about working at Automatic Data Processing (ADP)
golden leaf award AmbitionBox awards

Top Rated Internet/Product Company - 2025

golden leaf award
  • HQ - New Jersey, United States
  • Software Product
  • 10k-50k Employees (India)
  • Recruitment
  • Internet

Automatic Data Processing (ADP) Interview FAQs

How many rounds are there in Automatic Data Processing (ADP) Member Technical interview?
Automatic Data Processing (ADP) interview process usually has 3 rounds. The most common rounds in the Automatic Data Processing (ADP) interview process are Technical, Aptitude Test and HR.
How to prepare for Automatic Data Processing (ADP) Member Technical 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 Backend, CSS, Html5, Javascript and MySQL.
What are the top questions asked in Automatic Data Processing (ADP) Member Technical interview?

Some of the top questions asked at the Automatic Data Processing (ADP) Member Technical interview -

  1. 1) How do you detect a loop in Linked Li...read more
  2. 1.Swap two numbers without using temp varia...read more
  3. 2.Explain the project done in Engineer...read more
How long is the Automatic Data Processing (ADP) Member Technical interview process?

The duration of Automatic Data Processing (ADP) Member Technical interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Automatic Data Processing (ADP) Interviews By Designations

  • Automatic Data Processing (ADP) Member Technical Interview Questions
  • Automatic Data Processing (ADP) Senior Member Technical Interview Questions
  • Automatic Data Processing (ADP) Senior Process Associate Interview Questions
  • Automatic Data Processing (ADP) Process Associate Interview Questions
  • Automatic Data Processing (ADP) Analyst Interview Questions
  • Automatic Data Processing (ADP) Consultant Interview Questions
  • Automatic Data Processing (ADP) Business Analyst Interview Questions
  • Automatic Data Processing (ADP) Member Technical Staff Interview Questions
  • Show more
  • Automatic Data Processing (ADP) Software Engineer Interview Questions
  • Automatic Data Processing (ADP) Senior Associate Interview Questions

Interview Questions for Popular Designations

  • Member Technical Staff Interview Questions
  • Senior Member Technical Interview Questions
  • Senior Member of Technical Staff Interview Questions
  • Team Member Interview Questions
  • Associate Member Technical Staff Interview Questions
  • Technical Lead Interview Questions
  • Senior Team Member Interview Questions
  • Member Technical Staff 1 Interview Questions
  • Show more
  • Member Technical Staff Software Interview Questions
  • Technical Staff Member Lead Interview Questions

Overall Interview Experience Rating

4.1/5

based on 23 interview experiences

Difficulty level

Easy 9%
Moderate 82%
Hard 9%

Duration

Less than 2 weeks 83%
2-4 weeks 17%
View more

Interview Questions from Similar Companies

Oracle
Oracle Interview Questions
3.7
 • 889 Interviews
Google
Google Interview Questions
4.4
 • 889 Interviews
Microsoft Corporation
Microsoft Corporation Interview Questions
3.9
 • 572 Interviews
Zoho
Zoho Interview Questions
4.3
 • 531 Interviews
Amdocs
Amdocs Interview Questions
3.7
 • 528 Interviews
Carelon Global Solutions
Carelon Global Solutions Interview Questions
3.9
 • 380 Interviews
KPIT Technologies
KPIT Technologies Interview Questions
3.3
 • 304 Interviews
SAP
SAP Interview Questions
4.2
 • 291 Interviews
Adobe
Adobe Interview Questions
3.9
 • 247 Interviews
Salesforce
Salesforce Interview Questions
4.0
 • 233 Interviews
View all
Automatic Data Processing (ADP) Member Technical Salary
based on 928 salaries
₹3.5 L/yr - ₹11.2 L/yr
10% less than the average Member Technical Salary in India
View more details

Automatic Data Processing (ADP) Member Technical Reviews and Ratings

based on 151 reviews

3.9/5

Rating in categories

3.4

Skill development

4.2

Work-life balance

3.5

Salary

4.4

Job security

4.1

Company culture

3.0

Promotions

3.7

Work satisfaction

Explore 151 Reviews and Ratings
Automatic Data Processing (ADP) Salaries in India
Senior Member Technical
1.6k salaries
unlock blur

₹7 L/yr - ₹23.7 L/yr

Senior Process Associate
1.4k salaries
unlock blur

₹2.2 L/yr - ₹8.2 L/yr

Analyst
1.4k salaries
unlock blur

₹3.5 L/yr - ₹10.6 L/yr

Consultant
1.3k salaries
unlock blur

₹10.5 L/yr - ₹42 L/yr

Member Technical
928 salaries
unlock blur

₹3.5 L/yr - ₹11.2 L/yr

Explore more salaries
Compare Automatic Data Processing (ADP) with
Oracle

Oracle

3.7
Compare
Amdocs

Amdocs

3.7
Compare
Carelon Global Solutions

Carelon Global Solutions

3.9
Compare
24/7 Customer

24/7 Customer

3.5
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Automatic Data Processing (ADP) Interview Questions >
  • Automatic Data Processing (ADP) Member Technical Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter