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

Comviva Technology

Compare button icon Compare button icon Compare
3.1

based on 855 Reviews

Play video Play video Video summary
  • About
  • Reviews
    855
  • Salaries
    5.5k
  • Interviews
    78
  • Jobs
    156
  • Benefits
    82
  • Photos
    1

Filter interviews by

Comviva Technology Software Developer Interview Questions and Answers

Updated 3 Sep 2024

7 Interview questions

A Software Developer was asked 9mo ago
Q. Explain the concepts of OOP.
Ans. 

OOPs concept stands for Object-Oriented Programming, a programming paradigm based on the concept of objects.

  • OOPs focuses on creating objects that contain data in the form of attributes and code in the form of methods.

  • Encapsulation, Inheritance, Polymorphism, and Abstraction are the four main principles of OOPs.

  • Example: In a banking system, a 'Customer' object can have attributes like name and account number, and m...

A Software Developer was asked
Q. Pillers of oops , explain data science, concepts of ACID
Ans. 

Pillars of OOPs are Inheritance, Encapsulation, Polymorphism, and Abstraction. Data science involves analyzing and interpreting complex data. ACID stands for Atomicity, Consistency, Isolation, Durability.

  • Pillars of OOPs: Inheritance, Encapsulation, Polymorphism, Abstraction

  • Data science: Analyzing and interpreting complex data to gain insights

  • ACID: Atomicity, Consistency, Isolation, Durability

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
Q. 

Count Occurrences of X in Sorted Array

Given a sorted array or list of integers with size N and an integer X, you need to determine how many times X appears in the array/list.

Input:

The first line of th...
Ans. 

Count occurrences of a given integer in a sorted array.

  • Use binary search to find the first and last occurrence of X in the array.

  • Calculate the count by subtracting the indices of the last and first occurrences.

  • Handle cases where X is not present in the array.

A Software Developer was asked
Q. 

Implement Stack with Linked List

Your task is to implement a Stack data structure using a Singly Linked List.

Explanation:

Create a class named Stack which supports the following operations, each in O(1)...

Ans. 

Implement a Stack data structure using a Singly Linked List with operations in O(1) time.

  • Create a class named Stack with getSize, isEmpty, push, pop, and getTop methods.

  • Use a Singly Linked List to store the elements of the stack.

  • Ensure each operation runs in O(1) time complexity.

  • Handle edge cases like empty stack appropriately.

  • Example: For input '5 3 10 5 1 2 4', the output should be '10 1 false'.

A Software Developer was asked
Q. 

Ways To Make Coin Change

Given an infinite supply of coins of each denomination from a list, determine the total number of distinct ways to make a change for a specified value. If making the change isn't p...

Ans. 

Given coin denominations and a target value, find the total number of ways to make change.

  • Use dynamic programming to keep track of the number of ways to make change for each value up to the target value.

  • Iterate through each denomination and update the number of ways to make change for each value.

  • Handle base cases such as making change for 0 value.

  • Consider all possible combinations of denominations to make change f...

A Software Developer was asked
Q. 

Merge Sort Task

Given a sequence of numbers, denoted as ARR, your task is to return a sorted sequence of ARR in non-descending order using the Merge Sort algorithm.

Example:

Explanation:
The Merge Sort ...
Ans. 

Implement Merge Sort algorithm to sort a sequence of numbers in non-descending order.

  • Divide the input array into two halves recursively until each part has a size of '1'.

  • Merge the sorted arrays to return one fully sorted array.

  • Time complexity of Merge Sort is O(n log n).

A Software Developer was asked
Q. 

Count Nodes within K-Distance Problem Statement

Given a connected, undirected, and acyclic graph where some nodes are marked and a positive integer 'K'. Your task is to return the count of nodes such that ...

Ans. 

Count nodes within K-distance from marked nodes in a connected, undirected, acyclic graph.

  • Create an adjacency list to represent the graph.

  • Use BFS to traverse the graph and calculate distances from marked nodes.

  • Keep track of visited nodes and distances to avoid revisiting nodes.

  • Return the count of nodes with distances less than 'K' from all marked nodes.

  • Handle edge cases like empty graph or marked nodes.

Are these interview questions helpful?

Comviva Technology Software Developer Interview Experiences

5 interviews found

Software Developer Interview Questions & Answers

user image Anonymous

posted on 3 Sep 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Explain opps concept
  • Ans. 

    OOPs concept stands for Object-Oriented Programming, a programming paradigm based on the concept of objects.

    • OOPs focuses on creating objects that contain data in the form of attributes and code in the form of methods.

    • Encapsulation, Inheritance, Polymorphism, and Abstraction are the four main principles of OOPs.

    • Example: In a banking system, a 'Customer' object can have attributes like name and account number, and method...

  • Answered by AI
    Add your answer
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 29 Feb 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Pillers of oops , explain data science, concepts of ACID
  • Ans. 

    Pillars of OOPs are Inheritance, Encapsulation, Polymorphism, and Abstraction. Data science involves analyzing and interpreting complex data. ACID stands for Atomicity, Consistency, Isolation, Durability.

    • Pillars of OOPs: Inheritance, Encapsulation, Polymorphism, Abstraction

    • Data science: Analyzing and interpreting complex data to gain insights

    • ACID: Atomicity, Consistency, Isolation, Durability

  • Answered by AI
    Add your answer
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 1 Mar 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Add your answer
  • Q2. Acid properties, oops concept, DBMS concept
  • Add your answer
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 6 Jul 2023

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 Jul 2022. 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 - Coding Test 

Own platform on string based problem

Round 3 - Technical 

(2 Questions)

  • Q1. Related to java concept
  • Add your answer
  • Q2. Related to the topic mentioned in resume
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 16 Sep 2021

I appeared for an interview in Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 150 minutes
Round difficulty - Medium

In this round, there were 4 sections of MCQs, along with two coding questions. It lasted for 2.5 hours in which the camera was on along with the microphone on the platform AMCAT. One coding question was of hard difficulty level of graph and another was of medium level difficulty question of dynamic programming. MCQ part was quite easy with a timer, on each sub part and can be easily solved.

  • Q1. 

    Count Nodes within K-Distance Problem Statement

    Given a connected, undirected, and acyclic graph where some nodes are marked and a positive integer 'K'. Your task is to return the count of nodes such that...

  • Ans. 

    Count nodes within K-distance from marked nodes in a connected, undirected, acyclic graph.

    • Create an adjacency list to represent the graph.

    • Use BFS to traverse the graph and calculate distances from marked nodes.

    • Keep track of visited nodes and distances to avoid revisiting nodes.

    • Return the count of nodes with distances less than 'K' from all marked nodes.

    • Handle edge cases like empty graph or marked nodes.

  • Answered by AI
    Add your answer
  • Q2. 

    Ways To Make Coin Change

    Given an infinite supply of coins of each denomination from a list, determine the total number of distinct ways to make a change for a specified value. If making the change isn't ...

  • Ans. 

    Given coin denominations and a target value, find the total number of ways to make change.

    • Use dynamic programming to keep track of the number of ways to make change for each value up to the target value.

    • Iterate through each denomination and update the number of ways to make change for each value.

    • Handle base cases such as making change for 0 value.

    • Consider all possible combinations of denominations to make change for th...

  • Answered by AI
    Add your answer
Round 2 - Video Call 

(3 Questions)

Round duration - 30 minutes
Round difficulty - Medium

There were around 40 people shortlisted after round 1, for the interview, round, in the morning PPT was held, after which the interviews were scheduled, for 30 minutes till 6 pm in the evening, 
my interview was at 4.30 pm 
Interviewer was straight forward, and direct in approach, and did not waste even a single second of his or mine. Sharp after 30 minutes the interview was ended. 
through out the interview, he was friendly, and just observing.
Firstly, 3 coding questions, were asked, then 2 concepts of java and 1 concept of data structures was asked. 
the question related to java were, demon thread and platform independence. In data structures, I was asked to give brief intro regarding the AVL trees.

  • Q1. 

    Count Occurrences of X in Sorted Array

    Given a sorted array or list of integers with size N and an integer X, you need to determine how many times X appears in the array/list.

    Input:

    The first line of t...
  • Ans. 

    Count occurrences of a given integer in a sorted array.

    • Use binary search to find the first and last occurrence of X in the array.

    • Calculate the count by subtracting the indices of the last and first occurrences.

    • Handle cases where X is not present in the array.

  • Answered by AI
    Add your answer
  • Q2. 

    Merge Sort Task

    Given a sequence of numbers, denoted as ARR, your task is to return a sorted sequence of ARR in non-descending order using the Merge Sort algorithm.

    Example:

    Explanation:
    The Merge Sort...
  • Ans. 

    Implement Merge Sort algorithm to sort a sequence of numbers in non-descending order.

    • Divide the input array into two halves recursively until each part has a size of '1'.

    • Merge the sorted arrays to return one fully sorted array.

    • Time complexity of Merge Sort is O(n log n).

  • Answered by AI
    Add your answer
  • Q3. 

    Implement Stack with Linked List

    Your task is to implement a Stack data structure using a Singly Linked List.

    Explanation:

    Create a class named Stack which supports the following operations, each in O(1...

  • Ans. 

    Implement a Stack data structure using a Singly Linked List with operations in O(1) time.

    • Create a class named Stack with getSize, isEmpty, push, pop, and getTop methods.

    • Use a Singly Linked List to store the elements of the stack.

    • Ensure each operation runs in O(1) time complexity.

    • Handle edge cases like empty stack appropriately.

    • Example: For input '5 3 10 5 1 2 4', the output should be '10 1 false'.

  • Answered by AI
    Add your answer
Round 3 - HR 

(1 Question)

Round duration - 15 minutes
Round difficulty - Easy

The interview was scheduled at 4.30 pm again, and due to network issue, my audio was not clear to the interviewer, but the interviewer was highly cooperating, he called me over phone to take the interview, and video was on through the zoom meet only. 
The interview was like a discussion from both ends, which went very satisfying for me as a candidate and the interviewer too.
Before the interview in the morning, we were given the topics on which we had to write 100 words.

  • Q1. Give me a brief introduction.
  • Add your answer

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dr. B.R. Ambedkar National Institute of Technology. I applied for the job as SDE - 1 in BangaloreEligibility criteriaNo back logsMahindra Comviva interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, Competitive programming, Trees, Arrays, Strings, Stacks, QueueTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Solve all the question with Microsoft, Amazon tags on geeksforgeeks. 
Tip 2 : Never give up during the interview, rather just keep trying whether you reach the solution or not. 
Tip 3 : Be confident, this is the most important requirement.

Application resume tips for other job seekers

Tip 1 : Claim the things, that you have done in actual by your own. 
Tip 2 : Never write any false information on the resume, always get it verified with your mates.

Final outcome of the interviewSelected

Skills evaluated in this interview

Anonymous

Top trending discussions

View All
Engineering - Software & QA
2w
a senior software engineer
.NET's Future & Senior Dev Salary Trends
I'm a Full Stack .NET Dev with 6+ years of experience. Seeing a lot of posts on LinkedIn saying .NET (especially .NET Core) might get replaced by stacks like Java/Spring or Python/Django or Next soon. What's the typical salary range in India for someone with my experience right now? Would love some insights from the community! Also, how can I stay ahead of the competition?
Got a question about Comviva Technology?
Ask anonymously on communities.

Interview questions from similar companies

company Logo

Software Developer Interview Questions & Answers

Newgen Software Technologies user image Brijesh Mishra

posted on 7 Jul 2017

Interview Questionnaire 

1 Question

  • Q1. Runtime pollymorphism
  • Add your answer

Interview Preparation Tips

Round: Test
Experience: I scored good.
Tips: Core java good knowledge.
Duration: 30 minutes
Total Questions: 25

Round: Technical Interview
Experience: like this many ques from core java and hibernate and sql also and I scored good.
Tips: Command over core java and sql also.

Anonymous
company Logo

Software Developer Interview Questions & Answers

Newgen Software Technologies user image Anonymous

posted on 15 Sep 2021

I appeared for an interview before Sep 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

I was asked 2 coding questions, questions from my projects and questions related to different java concepts. One question from cloud computing was also asked.

  • Q1. 

    Maximum Subarray Sum Problem Statement

    Given an array arr of length N consisting of integers, find the sum of the subarray (including empty subarray) with the maximum sum among all subarrays.

    Explanation...

  • Ans. 

    Find the sum of the subarray with the maximum sum among all subarrays in a given array.

    • Iterate through the array and keep track of the current sum and maximum sum seen so far.

    • If the current sum becomes negative, reset it to 0 as it won't contribute to the maximum sum.

    • Return the maximum sum as the result.

    • Example: For input arr = [-2, 1, -3, 4, -1], the maximum subarray sum is 4.

  • Answered by AI
    Add your answer
  • Q2. 

    Add Two Numbers as Linked Lists

    You are given two singly linked lists, where each list represents a positive number without any leading zeros.

    Your task is to add these two numbers and return the sum as ...

  • Ans. 

    Add two numbers represented as linked lists and return the sum as a linked list.

    • Traverse both linked lists simultaneously while keeping track of carry

    • Create a new linked list to store the sum

    • Handle cases where one list is longer than the other

    • Consider edge cases like carry at the end of addition

  • Answered by AI
    Add your answer
Round 2 - HR 

Round duration - 15 minutes
Round difficulty - Easy

It was a normal discussion about the role, the job expectations and about the company culture.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Bharati Vidyapeeth's College of Engineering. I applied for the job as SDE - 1 in DelhiEligibility criteriaAbove 8 CGPANewgen Software interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, System Design, OOPS, Dynamic Programming, AptitudeTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Do at-least 200+ dsa problems from various topics.
Tip 2 : Make 2-3 projects and be well versed with their functionality.
Tip 3 : Practice aptitude questions and time yourself while doing the questions.

Application resume tips for other job seekers

Tip 1: Keep your resume short, try to make it one pager only.
Tip 2: Mention only position specific projects, and if you have got a good academic score mention it on top.

Final outcome of the interviewSelected

Skills evaluated in this interview

Anonymous
Are these interview questions helpful?
company Logo

Software Developer Interview Questions & Answers

Test Yantra Software Solutions user image Anonymous

posted on 20 Feb 2021

I applied via Recruitment Consultant and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Method overloading, method overriding, life cycle of thread,oops concepts
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 4 rounds. 1. Technical written test, here, pattern, string, array questions were asked. 2.Face to face .
3. Manager round, here scenario based questions on jdbc,hybernate and other family background details.
4. HR round.
Anonymous
company Logo

Software Developer Interview Questions & Answers

Newgen Software Technologies user image Anonymous

posted on 28 Dec 2021

I applied via Naukri.com and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They asked the multiple questions regarding to my profile likr about the project , skills, domain and about your future expectations.
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus to the fundamentals and be confident.
Stick with your resume
Anonymous
company Logo

Software Developer Interview Questions & Answers

Newgen Software Technologies user image Anonymous

posted on 18 May 2021

I applied via Naukri.com and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics on java
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong on the basics on which you are working or learned and the profile they have offered. Be brave and don't be get scared by seeing the interviewer and the way he asking questions.
Anonymous
More about working at Comviva Technology
  • HQ - Gurgaon,Haryana, India
  • IT Services & Consulting
  • 1k-5k Employees (India)
  • Internet
  • Telecom

Comviva Technology Interview FAQs

How many rounds are there in Comviva Technology Software Developer interview?
Comviva Technology interview process usually has 1-2 rounds. The most common rounds in the Comviva Technology interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Comviva Technology 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 Comviva Technology. The most common topics and skills that interviewers at Comviva Technology expect are Hibernate, Software Development Life Cycle, Java, Test Cases and Unit Testing.
What are the top questions asked in Comviva Technology Software Developer interview?

Some of the top questions asked at the Comviva Technology Software Developer interview -

  1. Pillers of oops , explain data science, concepts of A...read more
  2. explain opps conc...read more
  3. Acid properties, oops concept, DBMS conc...read more

Tell us how to improve this page.

Comviva Technology Interviews By Designations

  • Comviva Technology Product Development Engineer Interview Questions
  • Comviva Technology Software Developer Interview Questions
  • Comviva Technology Senior Engineer Interview Questions
  • Comviva Technology Software Engineer Interview Questions
  • Comviva Technology Technical Lead Interview Questions
  • Comviva Technology Senior Technical Manager Interview Questions
  • Comviva Technology Software Engineer Trainee Interview Questions
  • Comviva Technology Manager Interview Questions
  • Show more
  • Comviva Technology Engineer Trainee Interview Questions
  • Comviva Technology Trainee Interview Questions

Interview Questions for Popular Designations

  • Software Engineer Interview Questions
  • Java Developer Interview Questions
  • Web Developer Interview Questions
  • Senior Software Developer Interview Questions
  • Application Developer Interview Questions
  • Salesforce Developer Interview Questions
  • Software Development Engineer Interview Questions
  • Developer Interview Questions
  • Show more
  • Senior Developer Interview Questions
  • Plsql Developer Interview Questions

Overall Interview Experience Rating

4/5

based on 4 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Software Developer Interview Questions from Similar Companies

Newgen Software Technologies
Newgen Software Technologies Software Developer Interview Questions
3.8
 • 23 Interviews
ITC Infotech
ITC Infotech Software Developer Interview Questions
3.7
 • 11 Interviews
Test Yantra Software Solutions
Test Yantra Software Solutions Software Developer Interview Questions
3.1
 • 9 Interviews
Clover Infotech
Clover Infotech Software Developer Interview Questions
3.5
 • 7 Interviews
Happiest Minds Technologies
Happiest Minds Technologies Software Developer Interview Questions
3.6
 • 5 Interviews
Mastek
Mastek Software Developer Interview Questions
3.6
 • 5 Interviews
Sonata Software
Sonata Software Software Developer Interview Questions
3.4
 • 5 Interviews
Prodapt
Prodapt Software Developer Interview Questions
3.5
 • 5 Interviews
Microland
Microland Software Developer Interview Questions
3.5
 • 4 Interviews
Wissen Infotech
Wissen Infotech Software Developer Interview Questions
3.7
 • 4 Interviews
View all
Comviva Technology Software Developer Salary
based on 107 salaries
₹4.8 L/yr - ₹12 L/yr
16% less than the average Software Developer Salary in India
View more details

Comviva Technology Software Developer Reviews and Ratings

based on 25 reviews

2.9/5

Rating in categories

3.3

Skill development

2.6

Work-life balance

2.5

Salary

3.6

Job security

3.0

Company culture

2.7

Promotions

2.9

Work satisfaction

Explore 25 Reviews and Ratings
Comviva Technology Salaries in India
Technical Lead
469 salaries
unlock blur

₹7 L/yr - ₹24 L/yr

Senior Engineer
354 salaries
unlock blur

₹4.2 L/yr - ₹14.5 L/yr

Senior Software Engineer
342 salaries
unlock blur

₹4.1 L/yr - ₹15 L/yr

Senior Technical Lead
247 salaries
unlock blur

₹12.2 L/yr - ₹31.2 L/yr

Software Engineer
217 salaries
unlock blur

₹3 L/yr - ₹12.8 L/yr

Explore more salaries
Compare Comviva Technology with
ITC Infotech

ITC Infotech

3.7
Compare
3i Infotech

3i Infotech

3.4
Compare
Sify Technologies

Sify Technologies

3.8
Compare
Microland

Microland

3.5
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Comviva Technology 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