Logo

Get AmbitionBox App

Faster and better experience!

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
    WINNERS AWAITED!
    • ABECA 2025
      WINNERS AWAITED!

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    • AmbitionBox Best Places to Work 2021

      1st Edition

For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Temenos

Compare button icon Compare button icon Compare
3.1

based on 915 Reviews

Play video Play video Video summary
  • About
  • Reviews
    915
  • Salaries
    8.5k
  • Interviews
    89
  • Jobs
    38
  • Benefits
    60
  • Photos
    12

Filter interviews by

Temenos Interview Questions and Answers

Updated 18 Apr 2025
Popular Designations

26 Interview questions

A Software Developer was asked 1mo ago
Q. What is the definition of a data structure?
Ans. 

A data structure is a specialized format for organizing, processing, and storing data efficiently.

  • 1. Types: Common data structures include arrays, linked lists, stacks, queues, trees, and graphs.

  • 2. Purpose: They enable efficient data manipulation and retrieval, optimizing performance for specific tasks.

  • 3. Example: An array stores elements in contiguous memory locations, allowing fast access via indices.

  • 4. Example:...

View all Software Developer interview questions
An Associate Product Engineer was asked 9mo ago
Q. What are access specifiers, and can you provide examples of their use?
Ans. 

Access specifiers control the visibility of class members in object-oriented programming.

  • Public: accessible from any class

  • Private: only accessible within the same class

  • Protected: accessible within the same class and its subclasses

  • Examples: public int age; private String name; protected double salary;

View all Associate Product Engineer interview questions
A Software Engineer Level 1 was asked 10mo ago
Q. What is an empty class in Java?
Ans. 

An empty class in Java is a class that does not have any member variables or methods.

  • An empty class can be defined like this: class EmptyClass {}

  • Empty classes are often used as placeholders or markers in code.

  • Even though an empty class does not have any explicit members, it still inherits from the Object class in Java.

View all Software Engineer Level 1 interview questions
A Software Developer was asked 11mo ago
Q. What is the use of RESTful APIs?
Ans. 

RESTful API is used to allow communication between different systems over the internet using standard HTTP methods.

  • Allows systems to communicate and exchange data over the internet

  • Uses standard HTTP methods like GET, POST, PUT, DELETE

  • Follows REST architectural principles for designing networked applications

  • Enables stateless communication between client and server

  • Promotes scalability and flexibility in system archi...

View all Software Developer interview questions
A Software Developer was asked 11mo ago
Q. What is synchronization?
Ans. 

Synchronisation is the coordination of multiple processes or threads to ensure they work together effectively.

  • Synchronisation is important in multi-threaded programming to prevent race conditions and ensure data consistency.

  • Common synchronization mechanisms include locks, semaphores, and barriers.

  • For example, using a mutex lock to protect a shared resource from being accessed by multiple threads simultaneously.

View all Software Developer interview questions
A Software Developer was asked 11mo ago
Q. How do you design a web application?
Ans. 

Designing a web application involves planning the user interface, database structure, backend functionality, and security measures.

  • Identify the target audience and their needs

  • Create wireframes and mockups to visualize the layout

  • Choose appropriate technologies for frontend and backend development

  • Implement responsive design for mobile compatibility

  • Secure the application against common vulnerabilities

  • Test the applica...

View all Software Developer interview questions
A Softwaretest Engineer was asked 22 Feb 2024
Q. Write SQL queries.
Ans. 

SQL query to retrieve employee names and their salaries from a table

  • Use SELECT statement to retrieve data

  • Specify the columns you want to retrieve (employee names and salaries)

  • Specify the table name from which you want to retrieve data

View all Softwaretest Engineer interview questions
Are these interview questions helpful?
🔥 Asked by recruiter 2 times
An Associate Product Engineer was asked 22 May 2023
Q. What is the difference between HTTP and HTTPS?
Ans. 

HTTP is unsecured while HTTPS is secured with SSL/TLS encryption.

  • HTTP stands for Hypertext Transfer Protocol while HTTPS stands for Hypertext Transfer Protocol Secure.

  • HTTP operates on port 80 while HTTPS operates on port 443.

  • HTTP is vulnerable to attacks while HTTPS is secure due to SSL/TLS encryption.

  • HTTPS provides authentication, data integrity, and confidentiality.

  • HTTPS is used for secure online transactions su...

View all Associate Product Engineer interview questions
A Software Engineer was asked 11 May 2023
Q. What are variables?
Ans. 

Variables are containers that hold values or references to values in computer programs.

  • Variables are used to store data in a program

  • They can hold different types of data such as numbers, strings, and booleans

  • Variables can be assigned values and their values can be changed throughout the program

  • They are used to make code more readable and reusable

  • Examples of variables include 'age', 'name', and 'isStudent'

View all Software Engineer interview questions
A Software Engineer was asked 04 Oct 2022
Q. Write a flowchart for sorting.
Ans. 

A flow chart for sorting

  • Start with an unsorted list

  • Compare adjacent elements and swap if necessary

  • Repeat until no more swaps are needed

  • List is now sorted

View all Software Engineer interview questions
1 2 3

Temenos Interview Experiences

89 interviews found

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 25 Feb 2025

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

I appeared for an interview in Jan 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic sql query and some project related questions
  • Add your answer
  • Q2. What is indexing
  • Ans. 

    Indexing is a technique used to optimize the performance of databases by creating a data structure that allows for quick lookup of data.

    • Indexing involves creating a data structure that maps key values to their corresponding data entries.

    • It helps in speeding up data retrieval operations by reducing the number of disk accesses needed.

    • Examples of indexing include creating indexes on columns in a database table to improve ...

  • Answered by AI
    Add your answer
Round 2 - Technical 

(1 Question)

  • Q1. Some management questions
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is easy but work culture is too bad

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)
Anonymous

Interview Questions & Answers

user image Anonymous

posted on 25 Sep 2024

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

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

Round 1 - Coding Test 

Duration - 60 minutes
Platform - Wheebox
Topics - Arrays and Strings, SQL query and Essay writing

Round 2 - Technical 

(6 Questions)

  • Q1. Tell me about yourself ?
  • Ans. 

    I am a dedicated and experienced professional with a background in product analysis and customer support.

    • I have a strong analytical mindset and attention to detail.

    • I have excellent communication skills and enjoy working with customers to solve their problems.

    • I am proficient in using various tools and software to analyze product performance and customer feedback.

    • I have experience in conducting market research and identi...

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

    I led a project to develop a new mobile app for tracking fitness goals and providing personalized workout plans.

    • Researched market trends and user preferences for fitness apps

    • Collaborated with developers to design user-friendly interface

    • Conducted beta testing with focus groups to gather feedback

    • Implemented features such as progress tracking and workout reminders

  • Answered by AI
    Add your answer
  • Q3. Resume based questions
  • Add your answer
  • Q4. Questions related to cloud
  • Add your answer
  • Q5. Tell me about your family ?
  • Ans. 

    I come from a close-knit family of five, including my parents, older sister, and younger brother.

    • My parents have always been supportive of my career choices and encouraged me to pursue my passions.

    • My older sister is a successful lawyer who I look up to for her dedication and work ethic.

    • My younger brother is currently studying engineering and we enjoy playing sports together in our free time.

  • Answered by AI
    Add your answer
  • Q6. Questions related to new technology
  • Add your answer
Round 3 - HR 

(3 Questions)

  • Q1. Tell me about yourself ?
  • Ans. 

    I am a dedicated and detail-oriented professional with a background in product analysis and customer support.

    • I have a strong analytical mindset and attention to detail, which helps me in analyzing products effectively.

    • I have experience in providing excellent customer support and resolving issues in a timely manner.

    • I am proficient in using various tools and software to gather and analyze data for product improvement.

    • I h...

  • Answered by AI
    Add your answer
  • Q2. Tell me about your family background ?
  • Ans. 

    I come from a close-knit family with diverse backgrounds and strong values.

    • My parents are both immigrants, my mother is from Mexico and my father is from India.

    • I have two siblings, an older brother who is a doctor and a younger sister who is studying to be a teacher.

    • Family gatherings are always filled with laughter, delicious food, and lively discussions about our different cultures.

  • Answered by AI
    Add your answer
  • Q3. Discussion about role and responsibility
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a practice on the easy and medium questions on platforms like GeeksfoGeeks and LeetCode, it will be easier to crack coding round. Be confident and know what you mentioned in resume.
Anonymous

Automation Test Engineer Interview Questions & Answers

user image Mamatha B R

posted on 1 Jul 2024

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

I applied via Walk-in and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It included aptitude...selenium questions...java mcq questions...and a program to write

Round 2 - Technical 

(3 Questions)

  • Q1. Abstraction related questions
  • Add your answer
  • Q2. Interface, JIT, inheritance, java architecture
  • Add your answer
  • Q3. SQL questions...diff between char and varchar.....pk and fk....
  • Add your answer
Round 3 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a dedicated Automation Test Engineer with 5 years of experience in creating and executing test cases for software applications.

    • Experienced in writing automated test scripts using tools like Selenium and Appium

    • Proficient in creating test plans and test cases based on requirements

    • Skilled in identifying and reporting software defects

    • Strong knowledge of Agile methodologies and continuous integration/continuous deploym...

  • Answered by AI
    Add your answer
  • Q2. Why should I hire you
  • Ans. 

    I have a strong background in automation testing, with experience in various tools and technologies.

    • I have a solid understanding of automation testing principles and best practices

    • I have experience working with tools like Selenium, Appium, and JUnit

    • I have a track record of successfully implementing automated test scripts and improving test efficiency

    • I am a quick learner and can adapt to new technologies and frameworks ...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for java

Automation Test Engineer Interview Questions asked at other Companies

Q1. How to handle scrollbar and mouse activities Jenkins and Github Story Point in Agile
Backlogs in Agile
Jira workflow explain framework pom.xml wap number reverse program StellException
Exception in Selenium diff - getwindowhandles() and get... read more
View answer (2)
Anonymous

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 10 Sep 2024

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

I applied via Naukri.com and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Mainly sql qns are asked to write

Round 2 - Technical 

(1 Question)

  • Q1. Java basic questions and sql
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. To test our communication skills
  • Add your answer

Test Engineer Interview Questions asked at other Companies

Q1. 1. What is the frame work u have worked and explain the framework with folder structure? 2. purely based on testing, different testing types like functional and non functional tests 3. real time scenarios like last min bugs before release? ... read more
View answer (4)
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 9 Apr 2025

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. What is the definition of a data structure?
  • Ans. 

    A data structure is a specialized format for organizing, processing, and storing data efficiently.

    • 1. Types: Common data structures include arrays, linked lists, stacks, queues, trees, and graphs.

    • 2. Purpose: They enable efficient data manipulation and retrieval, optimizing performance for specific tasks.

    • 3. Example: An array stores elements in contiguous memory locations, allowing fast access via indices.

    • 4. Example: A li...

  • Answered by AI
    Add your answer
  • Q2. Under what circumstances should you be concerned about race conditions in a program?
  • Ans. 

    Race conditions occur when multiple threads access shared data concurrently, leading to unpredictable results.

    • When multiple threads or processes access shared resources without proper synchronization.

    • In scenarios where the order of execution affects the outcome, such as incrementing a shared counter.

    • When using global variables that can be modified by multiple threads simultaneously.

    • In event-driven programming, where ca...

  • Answered by AI
    Add your answer

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
Anonymous

Java Developer Interview Questions & Answers

user image Anonymous

posted on 29 Aug 2024

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

(2 Questions)

  • Q1. About project of previous company
  • Add your answer
  • Q2. Check palindrome and odd of given number
  • Add your answer

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (5)
Anonymous

Associate Product Engineer Interview Questions & Answers

user image Anonymous

posted on 15 Apr 2025

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. About ur self
  • Add your answer
  • Q2. SDLC STLC related questions
  • Add your answer

Associate Product Engineer Interview Questions asked at other Companies

Q1. Do you know SQL? Can you write a query for selecting some rows in a db table?
View answer (1)
Anonymous

Associate Product Engineer Interview Questions & Answers

user image Anonymous

posted on 3 Sep 2024

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

2 codings and 1 sql questions were asked

Round 2 - Technical 

(1 Question)

  • Q1. Basics of questions like string, stringbuffer
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. General attitude questions
  • Add your answer

Associate Product Engineer Interview Questions asked at other Companies

Q1. Do you know SQL? Can you write a query for selecting some rows in a db table?
View answer (1)
Anonymous

Principal Software Engineer Interview Questions & Answers

user image Jagannath Bhoi

posted on 27 Nov 2024

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

(2 Questions)

  • Q1. Primary on OOPS concept
  • Add your answer
  • Q2. Standard Template Library
  • Add your answer

Principal Software Engineer Interview Questions asked at other Companies

Q1. Codng question:For the given stream of integers, calculate the avg,print top 10 elements and bottom 10 elements. It was not clearly mentioned on the problem. After poking more on the problem only provided the details.
View answer (1)
Anonymous

Associate Product Engineer Interview Questions & Answers

user image Anonymous

posted on 5 Aug 2024

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

(2 Questions)

  • Q1. Quick sort algorithm and code
  • Ans. 

    Quick sort is a popular sorting algorithm that uses divide and conquer strategy.

    • Quick sort picks a pivot element and partitions the array around the pivot.

    • It recursively sorts the sub-arrays on either side of the pivot.

    • It is efficient for large datasets but can have worst-case time complexity of O(n^2).

    • Example: [3, 6, 8, 10, 1, 2, 1]

  • Answered by AI
    Add your answer
  • Q2. Access specifiers uses and examples
  • Ans. 

    Access specifiers control the visibility of class members in object-oriented programming.

    • Public: accessible from any class

    • Private: only accessible within the same class

    • Protected: accessible within the same class and its subclasses

    • Examples: public int age; private String name; protected double salary;

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Associate Product Engineer Interview Questions asked at other Companies

Q1. Do you know SQL? Can you write a query for selecting some rows in a db table?
View answer (1)
Anonymous

Top trending discussions

View All
Salary Discussions, Hike & Promotions
6d
a product owner
Mind Blown: Asked for 26 LPA, Company Offered 30 LPA + Fully Remote!
Hey everyone, Experiencing something new in my job search and could use some collective wisdom! Quick background: I'm a Product Owner, 9 years in, currently hybrid at 18.5 LPA (17.6 fixed). I was interviewing for another hybrid role and felt 26 LPA was a reasonable ask (it was for Pune, I'm currently in Ahmedabad). I had two rounds of interviews, and they felt really good, especially the second one. Fast forward to the offer stage... they offered me 30 LPA CTC, fully remote! Don't get me wrong, I'm thrilled! But also scratching my head a bit. Why offer 4 lakhs above my asking price? * Did I lowball myself that much? * Are their internal pay scales just that high for the role/level? * Was my interview performance that strong? * Trying to preempt a counteroffer situation? Has anyone, especially recruiters, ever seen this happen? What are the likely reasons a company goes significantly above the candidate's ask? Would love to hear your theories or experiences!
Got a question about Temenos?
Ask anonymously on communities.
More about working at Temenos
  • HQ - Geneva, Switzerland, Switzerland
  • Software Product
  • 1k-5k Employees (India)
  • Financial Services
  • Internet
  • IT Services & Consulting

Temenos Interview FAQs

How many rounds are there in Temenos interview?
Temenos interview process usually has 2-3 rounds. The most common rounds in the Temenos interview process are Technical, Coding Test and HR.
How to prepare for Temenos 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 Temenos. The most common topics and skills that interviewers at Temenos expect are Wealth Management, Recruitment, Core banking, Banking Software and Javascript.
What are the top questions asked in Temenos interview?

Some of the top questions asked at the Temenos interview -

  1. In exception handling how many ways can we throw except...read more
  2. How do you do dynamic memory allocation in C,C++? what is the differen...read more
  3. How to find the string in an array of strings which are arranged in sorted orde...read more
How long is the Temenos interview process?

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

Tell us how to improve this page.

Temenos Interviews By Designations

  • Temenos Software Engineer Interview Questions
  • Temenos Associate Product Engineer Interview Questions
  • Temenos Business Analyst Interview Questions
  • Temenos Software Developer Interview Questions
  • Temenos Product Engineer Interview Questions
  • Temenos Associate Software Engineer Interview Questions
  • Temenos Test Engineer Interview Questions
  • Temenos Senior Test Engineer Interview Questions
  • Show more
  • Temenos Java Developer Interview Questions
  • Temenos Software Developer Intern Interview Questions

Interview Questions for Popular Designations

  • Software Engineer Interview Questions
  • Associate Product Engineer Interview Questions
  • Business Analyst Interview Questions
  • Software Developer Interview Questions
  • Associate Software Engineer Interview Questions
  • Product Engineer Interview Questions
  • Graduate Engineer Trainee (Get) Interview Questions
  • Accountant Interview Questions
  • Show more
  • Data Analyst Interview Questions
  • Deputy Manager Interview Questions

Overall Interview Experience Rating

3.9/5

based on 64 interview experiences

Difficulty level

Easy 30%
Moderate 68%
Hard 3%

Duration

Less than 2 weeks 67%
2-4 weeks 25%
4-6 weeks 3%
6-8 weeks 6%
View more

Interview Questions from Similar Companies

Adobe
Adobe Interview Questions
3.9
 • 240 Interviews
24/7 Customer
24/7 Customer Interview Questions
3.5
 • 177 Interviews
Dassault Systemes
Dassault Systemes Interview Questions
4.0
 • 172 Interviews
Oracle Cerner
Oracle Cerner Interview Questions
3.7
 • 159 Interviews
VMware Software
VMware Software Interview Questions
4.4
 • 145 Interviews
ServiceNow
ServiceNow Interview Questions
4.1
 • 122 Interviews
Thomson Reuters
Thomson Reuters Interview Questions
4.1
 • 120 Interviews
Amadeus
Amadeus Interview Questions
3.8
 • 111 Interviews
UKG
UKG Interview Questions
3.1
 • 107 Interviews
Atlassian
Atlassian Interview Questions
3.4
 • 90 Interviews
View all

Temenos Reviews and Ratings

based on 915 reviews

3.1/5

Rating in categories

2.9

Skill development

3.2

Work-life balance

3.1

Salary

2.9

Job security

2.8

Company culture

2.6

Promotions

2.8

Work satisfaction

Explore 915 Reviews and Ratings
Jobs at Temenos
Temenos
Development Manager

Chennai

14-19 Yrs

Not Disclosed

Temenos
Development Manger

Chennai

14-19 Yrs

Not Disclosed

Temenos
Technical Lead (Developer)

Bangalore / Bengaluru

7-12 Yrs

Not Disclosed

Explore more jobs
Temenos Salaries in India
Software Engineer
816 salaries
unlock blur

₹5.5 L/yr - ₹14 L/yr

Senior Software Engineer
809 salaries
unlock blur

₹5.1 L/yr - ₹20 L/yr

Senior Test Engineer
416 salaries
unlock blur

₹5.8 L/yr - ₹15 L/yr

Test Engineer
376 salaries
unlock blur

₹4.5 L/yr - ₹9.5 L/yr

Associate Product Engineer
317 salaries
unlock blur

₹5.8 L/yr - ₹11.1 L/yr

Explore more salaries
Compare Temenos with
24/7 Customer

24/7 Customer

3.5
Compare
Thomson Reuters

Thomson Reuters

4.1
Compare
Oracle Cerner

Oracle Cerner

3.7
Compare
Adobe

Adobe

3.9
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Temenos Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Helping over 1 Crore job seekers every month in choosing their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

6 Lakh+

Interviews

1 Crore+

Users/Month

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 2026
  • ABECA 2025 winners awaited tag
  • ABECA 2024
  • AmbitionBox Best Places to Work 2022
  • AmbitionBox Best Places to Work 2021
  • Invite employees to rate
AmbitionBox
  • About Us
  • 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