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
logo
Premium Employer

i

This company page is being actively managed by Coforge Team. If you also belong to the team, you can get access from here

Coforge Verified Tick Work with us arrow

Compare button icon Compare button icon Compare
3.3

based on 5.4k Reviews

  • Why join us
  • Reviews
    5.4k
  • Salaries
    43k
  • Interviews
    585
  • Jobs
    366
  • Benefits
    367
  • Photos
    102
  • Posts
    1

Filter interviews by

Coforge Data Scientist Interview Questions and Answers

Updated 19 May 2023

7 Interview questions

A Data Scientist was asked
Q. Explain the concept of method overloading in OOP.
Ans. 

Overloading is the ability to define multiple methods with the same name but different parameters.

  • Overloading allows for more flexibility in method naming and improves code readability.

  • Examples include defining multiple constructors for a class with different parameter lists or defining a method that can accept different data types as input.

  • Overloading is resolved at compile-time based on the number and types of a...

A Data Scientist was asked
Q. How would you find the unique keys in two dictionaries?
Ans. 

To find unique keys in 2 dictionaries.

  • Create a set of keys for each dictionary

  • Use set operations to find the unique keys

  • Return the unique keys

Data Scientist Interview Questions Asked at Other Companies

asked in Intellect Design Arena
Q1. for a data with 1000 samples and 700 dimensions, how would you fi ... read more
View answers (5)
asked in Bajaj Finserv
Q2. Special Sum of Array Problem Statement Given an array 'arr' conta ... read more
View answers (2)
asked in Affine
Q3. You have a pandas dataframe with three columns filled with state ... read more
View answers (3)
asked in Walmart
Q4. Describe the data you would analyze to solve cost and revenue opt ... read more
View answers (3)
asked in Bajaj Finserv
Q5. Clone a Linked List with Random Pointers Given a linked list wher ... read more
View answer (1)
View All
A Data Scientist was asked
Q. What is the procedure for deploying a model using AWS EC2?
Ans. 

AWS EC2 model deployment involves creating an instance, installing necessary software, and deploying the model.

  • Create an EC2 instance with the desired specifications

  • Install necessary software and dependencies on the instance

  • Upload the model and any required data to the instance

  • Deploy the model using a web server or API

  • Monitor the instance and model performance for optimization

A Data Scientist was asked
Q. Given a list of numbers, find the indices of two numbers that add up to a specific target value. Do this without using nested for loops. For example, given the list l = [2, 15, 5, 7] and target t = 9, the o...
Ans. 

Finding index of 2 numbers having total equal to target in a list without nested for loop.

  • Use dictionary to store the difference between target and each element of list.

  • Iterate through list and check if element is in dictionary.

  • Return the indices of the two elements that add up to target.

A Data Scientist was asked
Q. Write Python code to demonstrate operations on a dictionary.
Ans. 

Python dictionaries are versatile data structures for storing key-value pairs, enabling efficient data retrieval and manipulation.

  • Dictionaries are created using curly braces: example = {'key': 'value'}

  • Access values using keys: example['key'] returns 'value'.

  • Dictionaries are mutable; you can add or remove items: example['new_key'] = 'new_value'.

  • Keys must be unique and immutable (e.g., strings, numbers, tuples).

  • Use ...

A Data Scientist was asked
Q. What is random forest, knn?
Ans. 

Random forest and KNN are machine learning algorithms used for classification and regression tasks.

  • Random forest is an ensemble learning method that constructs multiple decision trees and combines their outputs to make a final prediction.

  • KNN (k-nearest neighbors) is a non-parametric algorithm that classifies new data points based on the majority class of their k-nearest neighbors in the training set.

  • Random forest ...

A Data Scientist was asked
Q. 1) How decision tree works 2) what are the parameters used in OpenCV?
Ans. 

Decision tree is a tree-like model used for classification and regression. OpenCV parameters include image processing and feature detection.

  • Decision tree is a supervised learning algorithm that recursively splits the data into subsets based on the most significant attribute.

  • It is used for both classification and regression tasks.

  • OpenCV parameters include image processing techniques like smoothing, thresholding, an...

Are these interview questions helpful?

Coforge Data Scientist Interview Experiences

2 interviews found

Data Scientist Interview Questions & Answers

user image Anonymous

posted on 19 May 2023

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Apr 2023. There were 3 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 - Technical 

(2 Questions)

  • Q1. Coding question of finding index of 2 nos. having total equal to target in a list, without using nested for loop? l= [2,15,5,7] t= 9 output》》[0,3]
  • Ans. 

    Finding index of 2 numbers having total equal to target in a list without nested for loop.

    • Use dictionary to store the difference between target and each element of list.

    • Iterate through list and check if element is in dictionary.

    • Return the indices of the two elements that add up to target.

  • Answered by AI
    Add your answer
  • Q2. What is random forest, knn?
  • Ans. 

    Random forest and KNN are machine learning algorithms used for classification and regression tasks.

    • Random forest is an ensemble learning method that constructs multiple decision trees and combines their outputs to make a final prediction.

    • KNN (k-nearest neighbors) is a non-parametric algorithm that classifies new data points based on the majority class of their k-nearest neighbors in the training set.

    • Random forest is us...

  • Answered by AI
    Add your answer
Round 3 - Technical 

(4 Questions)

  • Q1. Ll coding on python dictionary
  • Ans. 

    Python dictionaries are versatile data structures for storing key-value pairs, enabling efficient data retrieval and manipulation.

    • Dictionaries are created using curly braces: example = {'key': 'value'}

    • Access values using keys: example['key'] returns 'value'.

    • Dictionaries are mutable; you can add or remove items: example['new_key'] = 'new_value'.

    • Keys must be unique and immutable (e.g., strings, numbers, tuples).

    • Use metho...

  • Answered by AI
    Add your answer
  • Q2. Find unique keys in 2 dictionaries
  • Ans. 

    To find unique keys in 2 dictionaries.

    • Create a set of keys for each dictionary

    • Use set operations to find the unique keys

    • Return the unique keys

  • Answered by AI
    Add your answer
  • Q3. Aws ec2 model deployment procedure
  • Ans. 

    AWS EC2 model deployment involves creating an instance, installing necessary software, and deploying the model.

    • Create an EC2 instance with the desired specifications

    • Install necessary software and dependencies on the instance

    • Upload the model and any required data to the instance

    • Deploy the model using a web server or API

    • Monitor the instance and model performance for optimization

  • Answered by AI
    Add your answer
  • Q4. Overloading concept of oop
  • Ans. 

    Overloading is the ability to define multiple methods with the same name but different parameters.

    • Overloading allows for more flexibility in method naming and improves code readability.

    • Examples include defining multiple constructors for a class with different parameter lists or defining a method that can accept different data types as input.

    • Overloading is resolved at compile-time based on the number and types of argume...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Topics to prepare for Coforge Data Scientist interview:
  • Python programming
  • python coding
  • dictionary functions , set funct
  • ML, DL Algorithms
  • NLP , AWS
Interview preparation tips for other job seekers - Every time had 2 to 4 panel size and all were technical. All rounds are tough as panel size is more and always extends the given time of interview.

Completed 2 rounds and from 2 weeks they have not arrange hr round.
Morever Hr is saying My profile is on hold.

Very bad rating for companys prolonged hiring process and sometime irritating as candidates like me prepare and attend the interview besides interviews are in working hours. And after completing two rounds not even scheduling Hr round only give information that your profile is on hold......

Skills evaluated in this interview

Anonymous

Data Scientist Interview Questions & Answers

user image Anonymous

posted on 12 Sep 2022

I applied via Naukri.com and was interviewed in Mar 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Questions related to Pandas, List, String

Round 2 - One-on-one 

(1 Question)

  • Q1. 1) How decision tree works 2) what are the parameters used in OpenCV?
  • Ans. 

    Decision tree is a tree-like model used for classification and regression. OpenCV parameters include image processing and feature detection.

    • Decision tree is a supervised learning algorithm that recursively splits the data into subsets based on the most significant attribute.

    • It is used for both classification and regression tasks.

    • OpenCV parameters include image processing techniques like smoothing, thresholding, and mor...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Topics to prepare for Coforge Data Scientist interview:
  • Python
  • Data Science
  • Computer Vision
Interview preparation tips for other job seekers - Mostly start with python coding, simple dataframe and panda's question, then study the topics mentioned in your resume.

Skills evaluated in this interview

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 Coforge?
Ask anonymously on communities.

Interview questions from similar companies

company Logo

Data Scientist Interview Questions & Answers

LTIMindtree user image Abhishek Srivastav

posted on 16 Mar 2015

Interview Questionnaire 

3 Questions

  • Q1. Code For parse Traingle
  • Ans. 

    Code for parsing a triangle

    • Use a loop to iterate through each line of the triangle

    • Split each line into an array of numbers

    • Store the parsed numbers in a 2D array or a list of lists

  • Answered by AI
    Add your answer
  • Q2. Asci value along with alphabets(both capital and small)
  • Ans. 

    The ASCII value is a numerical representation of a character. It includes both capital and small alphabets.

    • ASCII values range from 65 to 90 for capital letters A to Z.

    • ASCII values range from 97 to 122 for small letters a to z.

    • For example, the ASCII value of 'A' is 65 and the ASCII value of 'a' is 97.

  • Answered by AI
    Add your answer
  • Q3. Would you like to go for Hire studies
  • Ans. 

    I am open to further education to enhance my skills and stay updated with industry trends in data science.

    • Pursuing a master's degree in data science could deepen my knowledge in advanced analytics.

    • Online courses in machine learning and AI can help me stay current with emerging technologies.

    • Attending workshops and conferences can provide networking opportunities and insights from industry leaders.

    • Certifications in speci...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Round: Test
Experience: First round was through Elitmus.
If you want to be in IT industry must appear it atleast once, for core also u can try it.
It's usually a tough exam but if u are good in maths , apti you will crack it.
Tips: Focus more on Reasoning part. this is the most difficult part.
practise paragraphs reading and solving(Average level)(Infosys level or less)
If you need any kind of help you can contact me via email or can even ring me.
I would recomend everybody to appear this exam with minimum of one month dedicated preparation
Duration: 120 minutes
Total Questions: 60

Round: Coding Round on their own plateform
Experience: It was little difficult to write codes on some other plateform. But time was enough to cope up.
Tips: Try writing as many programs you can write in C, C++ and JAVA not on paper, on compiler . while giving this exam you can select any of these three languages. Based on that your technical Interview will be taken.

Round: Technical Interview
Experience: Its easy one if you have hands on on programing
Tips: Explore and explore .

Round: HR Interview
Experience: Most difficult round for me(I feel myself a little weak in English). But stay calm. And be cheerful.
I still don't know the exact answer of the question but conversation gone for about 20 minutes on this topic.
He din't seem satisfied with me. Btw most of the people says to say no. You can take your call according to the situation.
Tips: Stay calm. Have as much Knowledge about the organisation. Try to make your Intro as much interesting as possible with achivements, hobbies etc. Ya English plays most important role here.

General Tips: Always have faith in yourself. And remember Everything happens for some good reason
Skill Tips: Dont go deep in OS, DBMS but have rough idea about all the topics
Skills: C, C++, DATA STRUCTURE, DBMS, OS
College Name: GANDHI INSTITUTE OF ENGINEERING AND TECHNOLOGY
Motivation: I wanted a job. :)
Funny Moments: A number of stories are there related to this job.
One is I already had an offer so I booked my ticket to home from Bangalore But at very last moment my father told me that you should never miss any chance, go for it. I went and interview date was postponded due to some reasons. I got a mail at 10:30 pm saying I have to attend interview next day morning at 8:30 pm. I ran to get printout of that mail. The venue was 3 hour journey from my place so I din't sleep for the whole night because i knew that if I ll sleep, I would not be able to wake up But I din't studied also because it would have lead to sleep. And Without having sleep and last moment study I made it.

Skills evaluated in this interview

Anonymous
company Logo

Data Scientist Interview Questions & Answers

Optum Global Solutions user image Anonymous

posted on 6 Jul 2022

I appeared for an interview before Jul 2021.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Model evaluation and performance metrices
  • Add your answer
  • Q2. Explaination of bagging and boosting techniques
  • Ans. 

    Bagging and boosting are ensemble techniques used to improve the accuracy of machine learning models.

    • Bagging involves training multiple models on different subsets of the training data and then combining their predictions through voting or averaging.

    • Boosting involves iteratively training models on the same data, with each subsequent model focusing on the samples that the previous models misclassified.

    • Bagging reduces va...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on basic concepts and previous projects

Skills evaluated in this interview

Anonymous
company Logo

Data Scientist Interview Questions & Answers

EXL Service user image Anonymous

posted on 11 Jan 2022

I applied via Recruitment Consultant and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Use case for insurance domain
  • Ans. 

    Predicting insurance claims using machine learning algorithms.

    • Fraud detection in insurance claims

    • Risk assessment for insurance policies

    • Pricing optimization for insurance products

    • Customer segmentation for targeted marketing

    • Predictive maintenance for insurance assets

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with one use case in story telling way
Anonymous
company Logo

Data Scientist Interview Questions & Answers

Optum Global Solutions user image Anonymous

posted on 13 Apr 2021

I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Super Quick Case Study on Sales
  • Add your answer
  • Q2. Questions on Machine learning Projects in your Resume
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thoroughly prepared with the projects that you have listed on your resume. For each project, you can prepare: What, How and why. Do be prepared with the results and impacts of any ML models that you built.

Other topics: SQL, Excel, Pivot tables
Anonymous
company Logo

Data Scientist Interview Questions & Answers

LTIMindtree user image Anonymous

posted on 7 Sep 2021

I applied via Recruitment Consultant and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Explain about your projects
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer was looking for Data science experience in infrastructure that is building a solution for remedy ticket
Anonymous
Are these interview questions helpful?
company Logo

Data Scientist Interview Questions & Answers

NTT Data user image Anonymous

posted on 8 Jul 2022

I applied via Naukri.com and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. NLP and Computer Vision based Question were asked.
  • Add your answer
Round 2 - Technical 

(1 Question)

  • Q1. General Questions on Machine Learning and deployments technique
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Salary Negotiations and joining discussion
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview questions are subject to current project requirements
Anonymous
company Logo

Data Scientist Interview Questions & Answers

NTT Data user image Anonymous

posted on 9 Jul 2021

Interview Questionnaire 

1 Question

  • Q1. Diffe heilman algorithm
  • Ans. 

    Diffie-Hellman algorithm is a key exchange protocol used to securely exchange cryptographic keys over a public channel.

    • It is based on the concept of discrete logarithm problem.

    • It involves two parties, Alice and Bob, who generate their own private and public keys.

    • The public keys are exchanged and used to generate a shared secret key.

    • The shared secret key is used for encryption and decryption of messages.

    • It is widely use...

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous
company Logo

Data Scientist Interview Questions & Answers

Optum Global Solutions user image Anonymous

posted on 14 Nov 2021

Interview Questionnaire 

1 Question

  • Q1. Good knowledge about Machine Learning algorithms and their mathematical structure.
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good understanding of the machine learning algorithms along with the mathematical intricacies.
Anonymous
More about working at Coforge
  • HQ - Noida, Uttar Pradesh, India
  • IT Services & Consulting
  • 10k-50k Employees (India)
  • Public
  • Financial Services
  • Software Product

Coforge Interview FAQs

How many rounds are there in Coforge Data Scientist interview?
Coforge interview process usually has 2-3 rounds. The most common rounds in the Coforge interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Coforge Data Scientist 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 Coforge. The most common topics and skills that interviewers at Coforge expect are Python, Machine Learning, Data Science, Artificial Intelligence and Deep Learning.
What are the top questions asked in Coforge Data Scientist interview?

Some of the top questions asked at the Coforge Data Scientist interview -

  1. coding question of finding index of 2 nos. having total equal to target in a li...read more
  2. 1) How decision tree works 2) what are the parameters used in Open...read more
  3. find unique keys in 2 dictionar...read more

Tell us how to improve this page.

Coforge Interviews By Designations

  • Coforge Senior Software Engineer Interview Questions
  • Coforge Software Engineer Interview Questions
  • Coforge Technical Analyst Interview Questions
  • Coforge Graduate Engineer Trainee (Get) Interview Questions
  • Coforge Senior Associate Interview Questions
  • Coforge Software Developer Interview Questions
  • Coforge Senior Test Engineer Interview Questions
  • Coforge Test Engineer Interview Questions
  • Show more
  • Coforge Team Member Interview Questions
  • Coforge Business Analyst Interview Questions

Interview Questions for Popular Designations

  • Senior Data Scientist Interview Questions
  • Jr. Data Scientist Interview Questions
  • Decision Scientist Interview Questions
  • Associate Data Scientist Interview Questions
  • Data Scientist Intern Interview Questions
  • Lead Data Scientist Interview Questions
  • Trainee Decision Scientist Interview Questions
  • Research Scientist Interview Questions
  • Show more
  • Scientist Interview Questions
  • Data Science Intern Interview Questions

Overall Interview Experience Rating

1/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

2-4 weeks 100%
View more
logo
Join Coforge Engage with the emerging!

Data Scientist Interview Questions from Similar Companies

LTIMindtree
LTIMindtree Data Scientist Interview Questions
3.7
 • 15 Interviews
EXL Service
EXL Service Data Scientist Interview Questions
3.7
 • 10 Interviews
Optum Global Solutions
Optum Global Solutions Data Scientist Interview Questions
4.0
 • 9 Interviews
Nagarro
Nagarro Data Scientist Interview Questions
4.0
 • 5 Interviews
NTT Data
NTT Data Data Scientist Interview Questions
3.8
 • 4 Interviews
Mphasis
Mphasis Data Scientist Interview Questions
3.3
 • 2 Interviews
Sutherland Global Services
Sutherland Global Services Data Scientist Interview Questions
3.5
 • 2 Interviews
 Publicis Sapient
Publicis Sapient Data Scientist Interview Questions
3.5
 • 2 Interviews
eClerx
eClerx Data Scientist Interview Questions
3.2
 • 2 Interviews
Atos
Atos Data Scientist Interview Questions
3.8
 • 2 Interviews
View all
Coforge Data Scientist Salary
based on 65 salaries
₹8 L/yr - ₹34 L/yr
24% more than the average Data Scientist Salary in India
View more details

Coforge Data Scientist Reviews and Ratings

based on 8 reviews

2.5/5

Rating in categories

3.0

Skill development

4.3

Work-life balance

3.2

Salary

2.4

Job security

2.9

Company culture

2.1

Promotions

2.2

Work satisfaction

Explore 8 Reviews and Ratings
Data Scientist Jobs at Coforge
Coforge
Hiring For Data Scientist Role || Coforge

Greater Noida

3-6 Yrs

₹ 5-15 LPA

Explore more jobs
Coforge Salaries in India
Senior Software Engineer
4.8k salaries
unlock blur

₹6 L/yr - ₹23.6 L/yr

Technical Analyst
2.7k salaries
unlock blur

₹9.5 L/yr - ₹38.4 L/yr

Software Engineer
2.2k salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Senior Test Engineer
1.8k salaries
unlock blur

₹4.8 L/yr - ₹20 L/yr

Technology Specialist
1.2k salaries
unlock blur

₹12 L/yr - ₹42 L/yr

Explore more salaries
Compare Coforge with
Capgemini

Capgemini

3.7
Compare
Cognizant

Cognizant

3.7
Compare
Accenture

Accenture

3.8
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 >
  • Coforge Interview Questions >
  • Coforge Data Scientist 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