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

Evolveware Information Technology

Compare button icon Compare button icon Compare
3.5

based on 33 Reviews

Play video Play video Video summary
  • About
  • Reviews
    33
  • Salaries
    264
  • Interviews
    6
  • Jobs
    -
  • Benefits
    1
  • Photos
    -

Filter interviews by

Evolveware Information Technology DOT NET Developer Interview Questions and Answers

Updated 24 Apr 2024

Evolveware Information Technology DOT NET Developer Interview Experiences

2 interviews found

DOT NET Developer Interview Questions & Answers

user image Anonymous

posted on 24 Apr 2024

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

I applied via Referral and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

25 minutes test with 10 que for apti and 10 que is for technical in apti they were having mcq que for train speed and probability and in technical test they were asking all about dot net like what is interface how do we run program and what is private public all the que are in mcq type

Round 2 - Technical 

(3 Questions)

  • Q1. All about dot net
  • Add your answer
  • Q2. Must prepared for all dot net que
  • Add your answer
  • Q3. Focus on what mentioned in JD
  • Add your answer
Anonymous

DOT NET Developer Interview Questions & Answers

user image Kunal Shewale

posted on 9 Mar 2024

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

I applied via Company Website and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

10 question for aptitude
And
10 question for technical
In 25 minutes

Round 2 - Coding Test 

Array coding questions

Round 3 - Technical 

(1 Question)

  • Q1. All Oops concepts Asp.net MVC questions
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - MVC IS NECESSARY
Anonymous

DOT NET Developer Interview Questions Asked at Other Companies

asked in Infosys
Q1. What is the difference between Windows application development an ... read more
View answers (13)
asked in Saviant Consulting
Q2. How many ways are there to send data to a controller from a View?
View answers (3)
asked in Manabh Software Solutions
Q3. What is Trigger,Store procedure, join in sql query and their synt ... read more
View answers (3)
asked in Infosys
Q4. What are the components of the .NET Framework and their types?
View answer (1)
asked in Infosys
Q5. What kind of database have you used in your projects?
View answers (2)
View All

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Evolveware Information Technology?
Ask anonymously on communities.

Interview questions from similar companies

company Logo

Software Developer Interview Questions & Answers

Virtusa Consulting Services user image Anonymous

posted on 2 Jun 2022

I appeared for an interview before Jun 2021.

Round 1 - Coding Test 

Had DSA and aptitude questions

Round 2 - Technical 

(1 Question)

  • Q1. DSA a questions, Database Questions
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. 5 min question and answers about company
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and database management
Anonymous
company Logo

Software Developer Interview Questions & Answers

Optum Global Solutions user image Anonymous

posted on 16 Sep 2021

I appeared for an interview in Oct 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 75 min
Round difficulty - Medium

This round was MCQ and coding round. 25 MCQs and one coding question were asked. MCQs were based on OS, DBMS, Aptitude and Data Structures.

  • Q1. 

    Minimum Days to Complete Work

    You have 'N' tasks to complete. Each task can only be done on one of two specific days provided in two arrays: day1 and day2.

    For each task i, day1[i] represents the earliest...

  • Ans. 

    Find the minimum number of days required to complete all tasks given specific completion days for each task.

    • Sort the tasks based on day1 in ascending order.

    • For each task, choose the minimum of day1 and day2 as the completion day.

    • Keep track of the maximum completion day for each task.

    • The final answer is the maximum completion day of all tasks.

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

(1 Question)

Round duration - 30 min
Round difficulty - Easy

This was a Data Structural round. Only one coding question was asked by the interviewer. The interviewer was very friendly. This round was very easy.

  • Q1. 

    Bubble Sort Problem Statement

    Sort the given unsorted array consisting of N non-negative integers in non-decreasing order using the Bubble Sort algorithm.

    Input:

    The first line contains an integer 'T' r...
  • Ans. 

    Bubble Sort algorithm is used to sort an array of non-negative integers in non-decreasing order.

    • Implement the Bubble Sort algorithm to sort the array in place.

    • Compare adjacent elements and swap them if they are in the wrong order.

    • Repeat this process until the array is sorted.

    • Time complexity of Bubble Sort is O(n^2) in the worst case.

    • Example: For input [6, 2, 8, 4, 10], the output should be [2, 4, 6, 8, 10].

  • Answered by AI
    Add your answer

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as SDE - 1 in GurgaonEligibility criteria8Optum interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS,Dynamic Programminng,Operating System,DBMSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Be confident! 
Tip 2 : Maintain high Cgpa
Tip 3 : Do your best

Application resume tips for other job seekers

Tip 1 : Mention clear points
Tip 2 : Atleast 3 projects and never put anything you have not revised

Final outcome of the interviewSelected

Skills evaluated in this interview

Anonymous
company Logo

Software Developer Interview Questions & Answers

Optum Global Solutions user image Anonymous

posted on 16 Sep 2021

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 75 minutes
Round difficulty - Medium

It was in the evening.
It consisted of 26 questions of easy to hard level.
It consisted of 25 MCQs and only 1 coding problem.

  • Q1. 

    Author and Books Formatting

    Given a structured list of books and their authors, format the information as specified.

    Input:

    The first line of input contains an integer ‘T' representing the number of tes...
  • Ans. 

    The task is to format a list of authors and their books in a specific way as per the given input format.

    • Parse the input to extract the number of test cases, number of authors, author names, and their respective books.

    • Format the output by printing the author names and their books in the specified format.

    • Ensure correct sequence and labeling of authors and books as per the example provided.

    • Handle multiple test cases and a...

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

(1 Question)

Round duration - 15 minutes
Round difficulty - Medium

It was more of CV based round. A brief discussion on projects was there followed by some questions like why optum.

  • Q1. 

    Delete a Node from a Linked List

    You are provided with a linked list of integers. Your task is to implement a function that deletes a node located at a specified position 'POS'.

    Input:

    The first line co...
  • Ans. 

    Implement a function to delete a node from a linked list at a specified position.

    • Traverse the linked list to find the node at the specified position.

    • Update the pointers of the previous and next nodes to skip the node to be deleted.

    • Handle edge cases such as deleting the head or tail of the linked list.

    • Ensure to free the memory of the deleted node to avoid memory leaks.

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

(1 Question)

Round duration - 15 minutes
Round difficulty - Easy

A short round where some basic dbms questions like procedure, cursor were asked. Then some questions on whether I would prefer working alone or in a team. Where I see myself in 5 years.

  • Q1. 

    Graph Coloring Problem

    You are given a graph with 'N' vertices numbered from '1' to 'N' and 'M' edges. Your task is to color this graph using two colors, such as blue and red, in a way that no two adjacen...

  • Ans. 

    Given a graph with 'N' vertices and 'M' edges, determine if it can be colored using two colors without adjacent vertices sharing the same color.

    • Use graph coloring algorithm like BFS or DFS to check if the graph can be colored with two colors without conflicts.

    • Check if any adjacent vertices have the same color. If so, it is not possible to color the graph as described.

    • If the graph has connected components, color each co...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Eligibility criteriaAbove 8 CGPA, Computer oriented branchesOptum interview preparation:Topics to prepare for the interview - DBMS, Data Structures, Algorithms, Puzzles, Operating Systems, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Projects do not matter much for this company.
Tip 2 : I did almost all the puzzles from Interviewbit.
Tip 3 : DBMS is really important. Practice queries in SQL thoroughly. You should know the use of limit and top also. It may be asked to write the same query in more than 1 form.
Tip 4 : Practice all the data structures. Questions were simple and you should know the basics of every data structure.

Application resume tips for other job seekers

Tip 1 : Don't write anything just for the sake of it.
Tip 2 : If you are writing some project then be thorough with all the details. If you are not much confident, then simply remove it and focus on other subjects.

Final outcome of the interviewSelected

Skills evaluated in this interview

Anonymous
company Logo

Software Developer Interview Questions & Answers

Optum Global Solutions user image Anonymous

posted on 12 Jun 2021

Interview Questionnaire 

1 Question

  • Q1. Basic questions related to skillset
  • Add your answer
Anonymous
company Logo

Software Developer Interview Questions & Answers

Publicis Sapient user image Anonymous

posted on 20 Aug 2021

Interview Questionnaire 

2 Questions

  • Q1. Reverse linked list
  • Ans. 

    Reversing a linked list involves changing the direction of its nodes to point to the previous node instead of the next.

    • 1. Initialize three pointers: previous (prev), current (curr), and next.

    • 2. Traverse the list: while curr is not null, set next to curr.next.

    • 3. Reverse the link: curr.next = prev.

    • 4. Move prev and curr one step forward: prev = curr; curr = next.

    • 5. Repeat until curr is null; prev will be the new head of t...

  • Answered by AI
    Add your answer
  • Q2. Invert tree
  • Ans. 

    Invert a binary tree by swapping left and right children recursively.

    • Use a recursive approach to swap left and right children.

    • Base case: If the node is null, return.

    • Example: For a tree with root 1, left 2, right 3, after inversion, left becomes 3, right becomes 2.

    • Iterative approach can also be used with a queue or stack.

  • Answered by AI
    Add your answer
Anonymous
Are these interview questions helpful?
company Logo

Software Developer Interview Questions & Answers

Publicis Sapient user image Anonymous

posted on 16 Sep 2021

I appeared for an interview in Oct 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Test was active from 28th September 8 PM till 2 AM (29th September’20). We could attempt at any time. 
1.5 Hr Duration
Two coding questions.

  • Q1. 

    Cycle Detection in Undirected Graph Problem Statement

    You are provided with an undirected graph containing 'N' vertices and 'M' edges. The vertices are numbered from 1 to 'N'. Your objective is to determi...

  • Ans. 

    Detect cycles in an undirected graph.

    • Use Depth First Search (DFS) to detect cycles in the graph.

    • Maintain a visited array to keep track of visited vertices.

    • If a visited vertex is encountered again during DFS, a cycle exists.

    • Check for cycles in each connected component of the graph.

    • Consider edge cases like disconnected graphs and self-loops.

  • Answered by AI
    Add your answer
  • Q2. 

    Number of Islands Problem Statement

    You are provided with a 2-dimensional matrix having N rows and M columns, containing only 1s (land) and 0s (water). Your goal is to determine the number of islands in t...

  • Ans. 

    Count the number of islands in a 2D matrix of 1s and 0s.

    • Use depth-first search (DFS) to traverse the matrix and identify connected groups of 1s.

    • Maintain a visited array to keep track of visited cells to avoid redundant traversal.

    • Increment the island count each time a new island is encountered.

    • Consider all eight possible directions for connectivity while traversing the matrix.

    • Handle edge cases such as out-of-bounds indi...

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

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Online video call round on Microsoft Teams
Interviewer was very friendly.
This round is often called Domain Discussion Round.

  • Q1. 

    Longest Repeating Substring Problem Statement

    Given a string str consisting of lowercase English alphabet letters, and an integer K, you are allowed to perform at most K operations on this string. An oper...

  • Ans. 

    Find the length of the longest substring consisting of repeating characters after performing K operations.

    • Iterate through the string and maintain a sliding window of characters.

    • Keep track of the frequency of characters in the window.

    • Update the window by changing characters to maximize the length of repeating substring.

    • Return the length of the longest repeating substring obtained.

  • Answered by AI
    Add your answer
Round 3 - HR 

Round duration - 60 minutes
Round difficulty - Medium

One hour HR round.
Also called Core Values Interview.
The Interviewer was a senior level employee and was very friendly.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaAbove 6.5 GPA, CS and Allied StreamsPublicis Sapient interview preparation:Topics to prepare for the interview - DS/ALGO, Competitive Programming, OS, DBMS, SQL Queries, Computer Networks BasicsTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Interview is more like a two-way discussion rather than a question-answer session, feel free to ask for help/hints if you're stuck. 
Tip 2 : Even if you don't know the solution to the problem just try to work out a naive solution. You can optimize it later. 
Tip 3 : Make sure to read out the interview experiences of other people who have applied for the same role/company in the past

Application resume tips for other job seekers

Tip 1: Keep it concise and to the point.
Tip 2: Don't forget to show your best achievements

Final outcome of the interviewSelected

Skills evaluated in this interview

Anonymous
company Logo

Senior Engineer Interview Questions & Answers

Nagarro user image Anonymous

posted on 31 Mar 2021

I applied via Naukri.com and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. I opted for Java support engineer
  • Add your answer
  • Q2. Serialization, multithreading, Java concepts, sql, Linux
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare on Java, sql, Linux
Anonymous
company Logo

Software Developer Interview Questions & Answers

Hexaware Technologies user image Anonymous

posted on 16 Sep 2021

I appeared for an interview in Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. Can you explain Bipolar Junction Transistors (BJTs)?
  • Ans. 

    BJTs are three-terminal semiconductor devices used for amplification and switching of electronic signals.

    • BJTs have three regions - emitter, base, and collector.

    • They can be NPN or PNP type, depending on the arrangement of semiconductor materials.

    • BJTs are current-controlled devices, where a small current at the base terminal controls a much larger current between the collector and emitter.

    • Common BJT examples include 2N22...

  • Answered by AI
    Add your answer
  • Q2. 

    Graph Coloring Problem

    You are given a graph with 'N' vertices numbered from '1' to 'N' and 'M' edges. Your task is to color this graph using two colors, such as blue and red, in a way that no two adjacen...

  • Ans. 

    Graph coloring problem where vertices need to be colored with two colors such that no adjacent vertices share the same color.

    • Check if the graph can be colored using two colors without any adjacent vertices sharing the same color.

    • Use graph coloring algorithms like Greedy Coloring or Backtracking to solve the problem.

    • If there are odd-length cycles in the graph, it is not possible to color the graph with two colors.

    • If the...

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

(2 Questions)

Round duration - 30 minutes
Round difficulty - Easy

  • Q1. Can you explain in detail about Stacks and Graphs?
  • Ans. 

    Stacks are data structures that follow the Last In First Out (LIFO) principle, while Graphs are data structures that consist of nodes and edges to represent relationships.

    • Stacks are used for implementing functions, backtracking, and expression evaluation.

    • Graphs are used for representing networks, social connections, and shortest path algorithms.

    • Stacks can be implemented using arrays or linked lists.

    • Graphs can be direct...

  • Answered by AI
    Add your answer
  • Q2. 

    Rat in a Maze: All Paths Problem

    You are provided with an N * N maze where a rat is positioned at starting cell MAZE[0][0]. The goal is to determine and print all possible paths that the rat can take to r...

  • Ans. 

    Find all possible paths for a rat in a maze from start to finish.

    • Use backtracking to explore all possible paths in the maze.

    • At each cell, check if it is a valid move and mark it as part of the path.

    • Explore all four directions (up, down, left, right) recursively.

    • When reaching the destination cell, add the path to the result.

    • Return all valid paths found in the maze.

  • Answered by AI
    Add your answer

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Lokmanya Tilak College of Engineering. Eligibility criteria5+ CGPAHexaware Technologies interview preparation:Topics to prepare for the interview - Data Structures, OOPS, DBMS, OOPs, Algorithms, DP, Greedy, Electronics BasicsTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do learn EDC.
Tip 2 : Should know about Multivibrators and electronics basics.
Tip 3 : Do learn some extra technologies eg. ML/AI.

Application resume tips for other job seekers

Tip 1: Do not lie at all
Tip 2: Write every project/internship

Final outcome of the interviewRejected

Skills evaluated in this interview

Anonymous
More about working at Evolveware Information Technology
  • HQ - Santa Clara
  • IT Services & Consulting
  • 11-50 Employees (Global)

Evolveware Information Technology Interview FAQs

How many rounds are there in Evolveware Information Technology DOT NET Developer interview?
Evolveware Information Technology interview process usually has 2-3 rounds. The most common rounds in the Evolveware Information Technology interview process are Technical, Aptitude Test and Coding Test.
How to prepare for Evolveware Information Technology DOT NET 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 Evolveware Information Technology. The most common topics and skills that interviewers at Evolveware Information Technology expect are .Net, C#, OOPS, LINQ and Javascript.
What are the top questions asked in Evolveware Information Technology DOT NET Developer interview?

Some of the top questions asked at the Evolveware Information Technology DOT NET Developer interview -

  1. must prepared for all dot net ...read more
  2. All Oops concepts Asp.net MVC questi...read more
  3. All about dot ...read more

Tell us how to improve this page.

Evolveware Information Technology Interviews By Designations

  • Evolveware Information Technology DOT NET Developer Interview Questions
  • Evolveware Information Technology Software Developer Interview Questions
  • Evolveware Information Technology Java Developer Interview Questions
  • Evolveware Information Technology QA Engineer Interview Questions
  • Evolveware Information Technology Junior Software Developer Interview Questions

Interview Questions for Popular Designations

  • Software Developer Interview Questions
  • Java Developer Interview Questions
  • Senior Engineer Interview Questions
  • Devops Engineer Interview Questions
  • Front end Developer Interview Questions
  • Web Developer Interview Questions
  • Senior Software Developer Interview Questions
  • Application Developer Interview Questions
  • Show more
  • Salesforce Developer Interview Questions
  • Developer Interview Questions

Overall Interview Experience Rating

4/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

DOT NET Developer Interview Questions from Similar Companies

Northcorp Software
Northcorp Software DOT NET Developer Interview Questions
4.5
 • 8 Interviews
Cognizant
Cognizant DOT NET Developer Interview Questions
3.7
 • 6 Interviews
NeoSOFT
NeoSOFT DOT NET Developer Interview Questions
3.6
 • 6 Interviews
 UST
UST DOT NET Developer Interview Questions
3.8
 • 4 Interviews
CGI Group
CGI Group DOT NET Developer Interview Questions
4.0
 • 3 Interviews
Nagarro
Nagarro DOT NET Developer Interview Questions
3.9
 • 2 Interviews
Hexaware Technologies
Hexaware Technologies DOT NET Developer Interview Questions
3.5
 • 2 Interviews
Virtusa Consulting Services
Virtusa Consulting Services DOT NET Developer Interview Questions
3.7
 • 2 Interviews
ITC Infotech
ITC Infotech DOT NET Developer Interview Questions
3.7
 • 2 Interviews
GlobalLogic
GlobalLogic DOT NET Developer Interview Questions
3.6
 • 1 Interview
View all

Evolveware Information Technology DOT NET Developer Reviews and Ratings

based on 2 reviews

4.9/5

Rating in categories

4.9

Skill development

4.9

Work-life balance

4.9

Salary

4.9

Job security

5.0

Company culture

4.9

Promotions

4.9

Work satisfaction

Explore 2 Reviews and Ratings
Evolveware Information Technology Salaries in India
Software Engineer
46 salaries
unlock blur

₹3.5 L/yr - ₹7.2 L/yr

Junior Software Engineer
26 salaries
unlock blur

₹3 L/yr - ₹5.9 L/yr

QA Engineer
24 salaries
unlock blur

₹3 L/yr - ₹6.1 L/yr

Software Developer
13 salaries
unlock blur

₹3.6 L/yr - ₹10.1 L/yr

Junior Software Developer
11 salaries
unlock blur

₹2 L/yr - ₹7.2 L/yr

Explore more salaries
Compare Evolveware Information Technology with
Cognizant

Cognizant

3.7
Compare
EXL Service

EXL Service

3.7
Compare
Optum Global Solutions

Optum Global Solutions

4.0
Compare
Hexaware Technologies

Hexaware Technologies

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