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

Accenture

Compare button icon Compare button icon Compare
3.8

based on 63k Reviews

Play video Play video Video summary
  • About
  • Reviews
    63k
  • Salaries
    6.1L
  • Interviews
    8.6k
  • Jobs
    11.3k
  • Benefits
    7.4k
  • Photos
    48
  • Posts
    96

Filter interviews by

Accenture Software Developer Interview Questions and Answers

Updated 14 Jun 2025

83 Interview questions

A Software Developer was asked 1mo ago
Q. Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum.
Ans. 

Find the contiguous subarray with the largest sum in an integer array using an efficient algorithm.

  • Kadane's Algorithm: This algorithm efficiently finds the maximum sum subarray in O(n) time by maintaining a running sum.

  • Initialization: Start with two variables, maxSum and currentSum, initialized to the first element of the array.

  • Iterate through the array: For each element, update currentSum to be the maximum of the...

A Software Developer was asked 7mo ago
Q. Write a function that reverses a string. The input string is given as an array of characters s.
Ans. 

Reverse a string by iterating through the characters and swapping them

  • Create a function that takes a string as input

  • Initialize two pointers, one at the beginning and one at the end of the string

  • Swap the characters at the two pointers and move them towards the center until they meet

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
View answers (43)
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
View answers (4)
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
View answers (7)
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
View answers (5)
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
View answers (2)
View All
A Software Developer was asked 7mo ago
Q. Write a function to create a dictionary using two lists, where one list represents keys and the other represents values.
Ans. 

Create a dictionary using two lists

  • Use zip() function to combine two lists into key-value pairs

  • Use dict() function to convert the key-value pairs into a dictionary

A Software Developer was asked 8mo ago
Q. What is call by reference?
Ans. 

Call by reference is a method of passing arguments to a function where the actual memory address of the variable is passed.

  • In call by reference, the function receives a reference to the original variable, allowing it to modify the value of the variable directly.

  • Changes made to the parameter inside the function will affect the original variable outside the function.

  • Example: void swap(int &a, int &b) { int temp = a;...

What people are saying about Accenture

View All
a junior software engineer
3d
Job offer in Malaysia - legit or scam?
Hey everyone, I received a job proposal from Mindgraph for a Junior Mainframe Developer position in Malaysia (onsite). Not sure if it's a real deal. They found my resume on Naukri and the offer includes: * Experience: 3+ years on cardlink, VSAM, CICS, JCL * Location: Malaysia (Accenture client in Kuala Lumpur) * Notice: 0-60 days * Benefits: One-way ticket, 1-week stay, medical insurance, visa. Has anyone heard of Mindgraph or had a similar experience? Note : This is a permanent position with Mindgragh and you need to work with our client Accenture - Malaysia (Kaula Lumpur) & we will provide one way Air Ticket from India - Malaysia, 1 Week Accommodation, Medical Insurance and will take care of the Visa process also. Any insights would be appreciated!
Got a question about Accenture?
Ask anonymously on communities.
A Software Developer was asked 9mo ago
Q. What are static and non-static variables?
Ans. 

Static variables are shared among all instances of a class, while non-static variables are unique to each instance.

  • Static variables are declared using the 'static' keyword and retain their value throughout the program's execution.

  • Non-static variables are declared without the 'static' keyword and have separate values for each instance of a class.

  • Static variables are accessed using the class name, while non-static v...

🔥 Asked by recruiter 3 times
A Software Developer was asked 9mo ago
Q. Are you willing to relocate?
Ans. 

Yes, relocation is possible for the right opportunity.

  • I am open to relocating for the right job opportunity.

  • I have relocated for previous positions and am willing to do so again.

  • I am flexible and willing to consider relocation options.

A Software Developer was asked 10mo ago
Q. Tell me about the CI/CD process.
Ans. 

CICD process automates the building, testing, and deployment of software.

  • Continuous Integration (CI) involves automatically building and testing code changes frequently.

  • Continuous Deployment (CD) automates the deployment of code changes to production.

  • Tools like Jenkins, GitLab CI/CD, and CircleCI are commonly used in CICD pipelines.

  • CICD helps in improving software quality, reducing manual errors, and increasing de...

Are these interview questions helpful?
A Software Developer was asked 10mo ago
Q. What is the difference between Comparable and Comparator?
Ans. 

Comparable is an interface used for natural ordering, while Comparator is an interface used for custom ordering in Java.

  • Comparable interface is used to define the natural ordering of objects. It is implemented by the class whose objects are to be compared.

  • Comparator interface is used to define custom ordering of objects. It is implemented by a separate class.

  • Example: String class implements Comparable interface fo...

🔥 Asked by recruiter 4 times
A Software Developer was asked 10mo ago
Q. What is encapsulation?
Ans. 

Encapsulation is the concept of bundling data and methods that operate on the data into a single unit, known as a class.

  • Encapsulation helps in hiding the internal state of an object and restricting access to it.

  • It allows for data hiding, which prevents outside code from directly accessing an object's internal state.

  • Encapsulation also helps in achieving data abstraction, where the internal details of an object are ...

A Software Developer was asked 10mo ago
Q. Explain the page life cycle.
Ans. 

Page life cycle refers to the series of events that occur from the time a page is requested to the time the page is fully rendered and sent to the client.

  • Page request is made by the client

  • Page is initialized, controls are created and properties are set

  • Page is loaded and controls are populated with data

  • Page is rendered and sent to the client

1 2 3 4 5 6 7

Accenture Software Developer Interview Experiences

252 interviews found

Software Developer Interview Questions & Answers

user image Anonymous

posted on 15 Feb 2025

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

I appeared for an interview in Jan 2025.

Round 1 - Technical 

(5 Questions)

  • Q1. What is a polymorphism?
  • Add your answer
  • Q2. Can you explain difference between == and euqals()?
  • Ans. 

    The == operator checks for equality of values, while the equals() method checks for equality of objects.

    • The == operator compares the values of two objects, while the equals() method compares the objects themselves.

    • The == operator is used for primitive data types, while the equals() method is used for objects.

    • Example: int a = 5; int b = 5; a == b will return true, but a.equals(b) will not work as int is a primitive data...

  • Answered by AI
    Add your answer
  • Q3. What is dependency inversion?
  • Ans. 

    Dependency inversion is a design principle where high-level modules should not depend on low-level modules, but both should depend on abstractions.

    • High-level modules should not depend on low-level modules, both should depend on abstractions

    • Abstractions should not depend on details, details should depend on abstractions

    • Inversion of control containers like Spring Framework in Java implement dependency inversion

  • Answered by AI
    Add your answer
  • Q4. Can you explain ACID?
  • Ans. 

    ACID is a set of properties that guarantee database transactions are processed reliably.

    • ACID stands for Atomicity, Consistency, Isolation, Durability

    • Atomicity ensures that all operations in a transaction are completed successfully or none at all

    • Consistency ensures that the database remains in a valid state before and after the transaction

    • Isolation ensures that multiple transactions can occur concurrently without affect...

  • Answered by AI
    Add your answer
  • Q5. Please tell me about isolation levels
  • Ans. 

    Isolation levels in databases determine how transactions interact with each other.

    • Isolation levels define the degree to which one transaction must be isolated from the effects of other transactions.

    • Common isolation levels include READ UNCOMMITTED, READ COMMITTED, REPEATABLE READ, and SERIALIZABLE.

    • Higher isolation levels provide more data consistency but may impact performance.

    • For example, in READ COMMITTED isolation le...

  • Answered by AI
    Add your answer
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 7 Feb 2025

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

I appeared for an interview in Jan 2025.

Round 1 - Aptitude Test 

It is all concepts for communication skills

Round 2 - Coding Test 

This is some role of the coding ,for example: java,html,css,javascript like that coding

Round 3 - Technical 

(1 Question)

  • Q1. Subject based questions they are asking
  • Add your answer
Round 4 - HR 

(1 Question)

  • Q1. Overall details asking them
  • Add your answer
Round 5 - Group Discussion 

This is observed the skills

Anonymous

Software Developer Interview Questions & Answers

user image Sowmya Eedupuganti

posted on 6 Dec 2024

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
4-6 weeks
Result
No response

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. P2P process with golden rules
  • Add your answer
  • Q2. Internal order types
  • Add your answer
  • Q3. Withholding tax types
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview process and questions completely depends on the interviewer experience.
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 6 Feb 2025

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

I appeared for an interview in Aug 2024.

Round 1 - Aptitude Test 

An aptitude is a measure of your ability learn or perform required task and succeed in a particular environment

Round 2 - Coding Test 

A coding test evaluates an individuals ability to write , understand and debug code

Round 3 - Technical 

(6 Questions)

  • Q1. What programming languages are you familiar with?
  • Add your answer
  • Q2. What product management system do you like using?
  • Add your answer
  • Q3. What design software do you know?
  • Ans. 

    I am proficient in using Adobe Photoshop, Sketch, and Figma for designing software interfaces.

    • Adobe Photoshop

    • Sketch

    • Figma

  • Answered by AI
    Add your answer
  • Q4. Define the tree data structure?
  • Ans. 

    A tree data structure is a hierarchical data structure consisting of nodes connected by edges.

    • Consists of nodes connected by edges

    • Has a root node at the top

    • Each node can have zero or more child nodes

    • Used in organizing data hierarchically, like file systems or organization charts

  • Answered by AI
    View 1 more answer
  • Q5. Difference betweenTCP and UPD
  • Add your answer
  • Q6. What scripting language do you know?
  • Ans. 

    I am proficient in Python, JavaScript, and Bash scripting languages.

    • Python: Used for automation, web development, data analysis.

    • JavaScript: Used for web development, server-side scripting.

    • Bash: Used for system administration, automation tasks.

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Network ,prepare for interviews
, follow up after an interview
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 20 Jan 2025

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

(2 Questions)

  • Q1. Explain HashMap's internal working.
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values.

    • HashMap uses an array of buckets to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

    • If multiple keys hash to the same index (collision), a linked list or tree is used to store multiple entries at that index.

    • To retrieve a value, the ke...

  • Answered by AI
    Add your answer
  • Q2. Find all employees, with the help of given list of employeeIds
  • Ans. 

    Use employeeIds to find all employees

    • Create a function that takes a list of employeeIds and returns a list of employees

    • Use a database query or API call to retrieve employee information based on employeeIds

    • Handle cases where employeeIds do not match any employees

  • Answered by AI
    Add your answer
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 13 Dec 2024

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

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain security model in salesforce
  • Ans. 

    Salesforce security model ensures data protection through various layers of security features.

    • Salesforce uses a role hierarchy to control access to data based on user roles.

    • Permissions and sharing settings can be customized to restrict access to certain data.

    • Field-level security allows administrators to control which fields are visible or editable for different users.

    • Salesforce also offers encryption options to protect...

  • Answered by AI
    Add your answer
  • Q2. Governor Limit in Salesforce
  • Ans. 

    Governor Limit in Salesforce is a limit set by Salesforce to prevent code from consuming excessive resources.

    • Governor Limits are a set of limits that Salesforce enforces to ensure efficient use of resources.

    • Examples of Governor Limits include limits on the number of SOQL queries, the number of DML statements, and the amount of CPU time a transaction can consume.

    • Exceeding Governor Limits can result in exceptions being t...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - NAAAAAAAAAAAAAAAAAAAAAAAA

Skills evaluated in this interview

Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 23 Dec 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How to write an immutable class
  • Add your answer
  • Q2. How to make a class singleton
  • Ans. 

    To make a class singleton, restrict the instantiation of a class to only one object.

    • Create a private static instance variable of the class.

    • Create a private constructor to prevent external instantiation.

    • Provide a public static method to access the singleton instance.

    • Ensure thread safety if needed by using synchronized keyword or double-checked locking.

  • Answered by AI
    Add your answer
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 27 Dec 2024

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

(2 Questions)

  • Q1. Tell me about the project that you made
  • Ans. 

    I developed a web-based project management tool for tracking tasks and deadlines.

    • Used HTML, CSS, and JavaScript for front-end development

    • Implemented backend functionality using Node.js and MongoDB

    • Incorporated user authentication and authorization features

    • Utilized RESTful APIs for communication between front-end and back-end

  • Answered by AI
    Add your answer
  • Q2. Tell me all the difficulties that you faced in your project
  • Ans. 

    I faced difficulties in project related to integration with third-party APIs, debugging complex issues, and meeting tight deadlines.

    • Integration with third-party APIs was challenging due to lack of documentation and unexpected changes in API responses

    • Debugging complex issues took time and required thorough analysis of code and system logs

    • Meeting tight deadlines was stressful and required effective time management and pr...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical round is more like Hr round only focus on communication more
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 23 Nov 2024

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. All Technical Question
  • Add your answer
  • Q2. Basic Logical Question
  • Add your answer
Round 2 - Coding Test 

All Logical Coding Question

Round 3 - Aptitude Test 

Virtual, Technical Question

Round 4 - HR 

(1 Question)

  • Q1. Basic Interview
  • Add your answer

Interview Preparation Tips

Topics to prepare for Accenture Software Developer interview:
  • Python
  • DSA
  • Automation Anywhere 360
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 27 Dec 2024

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

(2 Questions)

  • Q1. Tell me about your project
  • Ans. 

    Developed a web application for managing inventory and sales for a retail store.

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end

    • Utilized MongoDB for database management

  • Answered by AI
    Add your answer
  • Q2. What difficulties yiu faced during the project
  • Ans. 

    I faced difficulties with integrating third-party APIs and debugging complex logic.

    • Troubleshooting issues with API responses

    • Handling asynchronous data flow

    • Resolving compatibility issues with different libraries

    • Optimizing performance of the application

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is based on communication only more like HR interview
Anonymous
More about working at Accenture
golden leaf award AmbitionBox awards

#12 Top Rated Mega Company - 2024

golden leaf award
golden leaf award AmbitionBox awards

#4 Top Rated Company for Women - 2024

golden leaf award
golden leaf award AmbitionBox awards

#2 Top Rated IT/ITES Company - 2024

golden leaf award
  • HQ - Dublin, Ireland
  • IT Services & Consulting
  • 1 Lakh+ Employees (India)
  • Public
  • Analytics & KPO
  • Software Product
  • Management Consulting

Accenture Interview FAQs

How many rounds are there in Accenture Software Developer interview?
Accenture interview process usually has 2-3 rounds. The most common rounds in the Accenture interview process are Technical, Aptitude Test and Coding Test.
How to prepare for Accenture Software Developer 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 Accenture. The most common topics and skills that interviewers at Accenture expect are SQL, Javascript, XML, Digital Marketing and CRM.
What are the top questions asked in Accenture Software Developer interview?

Some of the top questions asked at the Accenture Software Developer interview -

  1. What is the difference between padding and marg...read more
  2. What are different types of directives in Angula...read more
  3. How would you measure the stack space without using the task manager, when an a...read more
What are the most common questions asked in Accenture Software Developer HR round?

The most common HR questions asked in Accenture Software Developer interview are -

  1. why should we hire y...read more
  2. Where do you see yourself in 5 yea...read more
  3. Why are you looking for a chan...read more
How long is the Accenture Software Developer interview process?

The duration of Accenture Software Developer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Accenture Interviews By Designations

  • Accenture Associate Software Engineer Interview Questions
  • Accenture Application Developer Interview Questions
  • Accenture Application Development Analyst Interview Questions
  • Accenture Software Developer Interview Questions
  • Accenture Software Engineer Interview Questions
  • Accenture Analyst Interview Questions
  • Accenture Application Development Associate Interview Questions
  • Accenture Senior Analyst Interview Questions
  • Show more
  • Accenture Application Development - Senior Analyst Interview Questions
  • Accenture Team Lead Interview Questions

Overall Interview Experience Rating

4/5

based on 273 interview experiences

Difficulty level

Easy 33%
Moderate 63%
Hard 4%

Duration

Less than 2 weeks 50%
2-4 weeks 32%
4-6 weeks 9%
6-8 weeks 4%
More than 8 weeks 5%
View more

Top Skills for Accenture Software Developer

Web Development Interview Questions & Answers
250 Questions
Algorithms Interview Questions & Answers
250 Questions
Java Interview Questions & Answers
250 Questions
Data Structures Interview Questions & Answers
250 Questions
Operating Systems Interview Questions & Answers
250 Questions

Software Developer Interview Questions from Similar Companies

TCS
TCS Software Developer Interview Questions
3.6
 • 536 Interviews
Infosys
Infosys Software Developer Interview Questions
3.6
 • 271 Interviews
Wipro
Wipro Software Developer Interview Questions
3.7
 • 169 Interviews
Capgemini
Capgemini Software Developer Interview Questions
3.7
 • 163 Interviews
Cognizant
Cognizant Software Developer Interview Questions
3.7
 • 131 Interviews
IBM
IBM Software Developer Interview Questions
4.0
 • 107 Interviews
Tech Mahindra
Tech Mahindra Software Developer Interview Questions
3.5
 • 102 Interviews
HCLTech
HCLTech Software Developer Interview Questions
3.5
 • 86 Interviews
 UST
UST Software Developer Interview Questions
3.8
 • 46 Interviews
DXC Technology
DXC Technology Software Developer Interview Questions
3.7
 • 21 Interviews
View all
Accenture Software Developer Salary
based on 6.7k salaries
₹4.9 L/yr - ₹29.1 L/yr
49% more than the average Software Developer Salary in India
View more details

Accenture Software Developer Reviews and Ratings

based on 580 reviews

4.1/5

Rating in categories

3.9

Skill development

4.0

Work-life balance

3.7

Salary

4.0

Job security

4.0

Company culture

3.4

Promotions

3.8

Work satisfaction

Explore 580 Reviews and Ratings
Accenture Salaries in India
Application Development Analyst
39.3k salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
27.7k salaries
unlock blur

₹7 L/yr - ₹20.5 L/yr

Team Lead
26.3k salaries
unlock blur

₹7.3 L/yr - ₹26.5 L/yr

Senior Analyst
19.2k salaries
unlock blur

₹5.6 L/yr - ₹21.3 L/yr

Senior Software Engineer
18.5k salaries
unlock blur

₹6.1 L/yr - ₹21 L/yr

Explore more salaries
Compare Accenture with
TCS

TCS

3.6
Compare
Cognizant

Cognizant

3.7
Compare
Capgemini

Capgemini

3.7
Compare
Infosys

Infosys

3.6
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Accenture Interview Questions >
  • Accenture Software Developer 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