Upload Button Icon Add office photos

Filter interviews by

Nirvana Solutions Interview Questions, Process, and Tips

Updated 19 Feb 2025

Top Nirvana Solutions Interview Questions and Answers

View all 31 questions

Nirvana Solutions Interview Experiences

Popular Designations

18 interviews found

Lead QA Analyst Interview Questions & Answers

user image Ankush Kumar

posted on 12 Nov 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Shine and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(22 Questions)

  • Q1. What is SDLC and STLC?
  • Ans. 

    SDLC stands for Software Development Life Cycle, which is the process of developing software from planning to deployment. STLC stands for Software Testing Life Cycle, which is the process of testing software to ensure quality.

    • SDLC involves phases like planning, analysis, design, implementation, and maintenance.

    • STLC involves phases like test planning, test design, test execution, and test closure.

    • SDLC focuses on the ove...

  • Answered by AI
  • Q2. Defect Life Cycle
  • Q3. What are the Testing types?
  • Ans. 

    Testing types refer to different approaches and techniques used to validate software functionality.

    • Functional Testing - testing the functionality of the software

    • Non-Functional Testing - testing aspects like performance, usability, etc.

    • Manual Testing - testing done manually by testers

    • Automated Testing - testing done using automation tools

    • Regression Testing - testing to ensure new code changes do not affect existing func...

  • Answered by AI
  • Q4. How will you tackle if you found any issues just before the release?
  • Ans. 

    I will prioritize and address critical issues first, communicate with stakeholders, and work with the team to resolve the issues efficiently.

    • Prioritize critical issues that could potentially block the release

    • Communicate with stakeholders about the issues and potential impact on the release timeline

    • Work closely with the development team to quickly identify and resolve the issues

    • Perform thorough testing and validation po

  • Answered by AI
  • Q5. Agile model and water fall model?
  • Q6. Smoke testing, Unity Testing, White box testing and Black box testing?
  • Q7. Retesting and Regression testing difference?
  • Ans. 

    Retesting is testing the same functionality again to ensure the defect has been fixed, while regression testing is testing the entire application to ensure new changes have not affected existing functionality.

    • Retesting focuses on verifying that a specific defect has been fixed.

    • Regression testing focuses on ensuring that new changes have not affected existing functionality.

    • Retesting is usually done by the QA analyst who...

  • Answered by AI
  • Q8. Challenges for the QA lead during testing?
  • Ans. 

    Challenges for QA lead include managing resources, prioritizing tasks, communication with stakeholders, and ensuring thorough testing.

    • Managing resources effectively to meet deadlines

    • Prioritizing tasks based on criticality and impact on project

    • Communicating effectively with stakeholders to align expectations

    • Ensuring thorough testing coverage across all functionalities

    • Coordinating with development team for timely bug fix

  • Answered by AI
  • Q9. Selenium 4 new things?
  • Ans. 

    Selenium 4 introduces new features like Relative Locators, Chrome DevTools Protocol, and improved W3C WebDriver support.

    • Relative Locators allow testers to locate elements based on their relationship with other elements.

    • Chrome DevTools Protocol integration enables better debugging capabilities.

    • Improved W3C WebDriver support ensures better compatibility with modern browsers.

    • New APIs for better handling of browser windows...

  • Answered by AI
  • Q10. Found x path for element on flipkart web app
  • Ans. 

    To find x path for element on Flipkart web app, use browser developer tools

    • Open Flipkart web app in browser

    • Right click on the element you want to find x path for

    • Select 'Inspect' to open developer tools

    • Locate the element in the HTML code

    • Right click on the element in the HTML code

    • Select 'Copy' -> 'Copy XPath' to get the x path

  • Answered by AI
  • Q11. Mouse operation in selenium , syntax
  • Ans. 

    Mouse operations in Selenium involve actions like click, double click, right click, drag and drop, etc.

    • Mouse click: driver.findElement(By.xpath("//elementXPath")).click();

    • Double click: Actions action = new Actions(driver); action.doubleClick(element).perform();

    • Right click: Actions action = new Actions(driver); action.contextClick(element).perform();

    • Drag and drop: Actions action = new Actions(driver); action.dragAndDrop

  • Answered by AI
  • Q12. New locators in selenium 4 ?
  • Ans. 

    Selenium 4 introduces new locators for more efficient web element identification.

    • Selenium 4 introduces Relative Locators for finding elements based on their relationship with other elements.

    • The 'findElement' method now supports 'withTagName', 'above', 'below', 'toLeftOf', 'toRightOf', and 'near' methods.

    • Relative locators help in writing more robust and readable test scripts.

    • Example: driver.findElement(withTagName("inpu

  • Answered by AI
  • Q13. How to get data from excel file in selenium?
  • Ans. 

    Data from Excel file can be retrieved in Selenium using Apache POI library.

    • Use Apache POI library to read data from Excel files in Selenium

    • Create a FileInputStream object to read the Excel file

    • Create a Workbook object using the FileInputStream

    • Get the desired sheet from the Workbook

    • Iterate through rows and cells to retrieve data

    • Close the Workbook and FileInputStream after use

  • Answered by AI
  • Q14. How to upload file in selenium?
  • Ans. 

    To upload a file in Selenium, you can use the sendKeys() method on the file input element.

    • Locate the file input element on the webpage using appropriate locator strategies

    • Use the sendKeys() method to send the file path to the file input element

    • Ensure the file path is correct and accessible by the browser

  • Answered by AI
  • Q15. How to get iFrame in web page?
  • Ans. 

    To get an iFrame in a web page, you can use the <iframe> tag in HTML.

    • Use the <iframe> tag in HTML to embed another webpage within the current webpage

    • Specify the source URL of the webpage to be displayed in the iFrame using the 'src' attribute

    • Adjust the height and width of the iFrame using the 'height' and 'width' attributes

    • Add a border around the iFrame using the 'frameborder' attribute

  • Answered by AI
  • Q16. How to switch iFrame one to another?
  • Ans. 

    To switch iFrame one to another, you can use the switchTo() method in Selenium WebDriver.

    • Locate the iFrame using its locator

    • Switch to the iFrame using switchTo() method

    • Perform actions within the iFrame

    • Switch back to the default content when done

  • Answered by AI
  • Q17. Return type of iFrames in web page ?
  • Ans. 

    iFrames in web pages have a return type of HTML elements.

    • iFrames are used to embed another document within the current HTML document.

    • They are represented as HTML elements with a src attribute pointing to the URL of the embedded document.

    • iFrames can be manipulated using JavaScript to interact with the embedded content.

  • Answered by AI
  • Q18. How to automate mobile app without having a mobile device?
  • Ans. 

    Use emulators or cloud-based testing services to automate mobile app testing without physical devices.

    • Utilize emulators such as Android Studio's emulator or Genymotion for Android apps

    • Leverage cloud-based testing services like AWS Device Farm or BrowserStack for testing on various devices and OS versions

    • Implement Appium or Selenium for cross-platform mobile app automation

  • Answered by AI
  • Q19. Java coding questions like change date format 12 hours to 24 hours without using time and date from selenium?
  • Q20. TestNG annotations and It's sequences?
  • Ans. 

    TestNG annotations are used to control the flow of test methods and define the sequence in which they should be executed.

    • Annotations like @BeforeSuite, @BeforeTest, @BeforeClass, @BeforeMethod are used to set up preconditions before executing test methods.

    • Annotations like @Test are used to define test methods.

    • Annotations like @AfterMethod, @AfterClass, @AfterTest, @AfterSuite are used to clean up after executing test m...

  • Answered by AI
  • Q21. How to copy data from one tab and paste it another tab where both tab are already opened?
  • Ans. 

    To copy data from one tab and paste it in another tab, use keyboard shortcuts or right-click options.

    • Use Ctrl + C to copy data from the source tab

    • Switch to the target tab

    • Use Ctrl + V to paste the copied data in the target tab

    • Alternatively, right-click on the selected data and choose 'Copy', then right-click in the target tab and choose 'Paste'

  • Answered by AI
  • Q22. How to drag any object one place to another place using actions class?
  • Ans. 

    Use Actions class in Selenium to drag an object from one place to another.

    • Create an instance of Actions class

    • Use dragAndDrop() method to drag the object to the desired location

    • Perform() method to execute the action

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Nirvana Solutions Lead QA Analyst interview:
  • Manual Tesitng
  • Automation Testing
  • Testng
  • JIRA
  • Testing Methodology
  • Selenium
  • Core Java
  • API
Interview preparation tips for other job seekers - Please be ready for the interview.
You should be have good knowledge in Manual testing and Automation testing.
Ready for write the java code.
Ready for found the x path , drag and drop object, fetch the data from excel file, upload file via selenium code etc.
Prepare basic questions related to the Manual testing.

Skills evaluated in this interview

Top Nirvana Solutions Lead QA Analyst Interview Questions and Answers

Q1. How to copy data from one tab and paste it another tab where both tab are already opened?
View answer (1)

Lead QA Analyst Interview Questions asked at other Companies

Q1. How to copy data from one tab and paste it another tab where both tab are already opened?
View answer (1)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is management
  • Ans. 

    Management is the process of planning, organizing, leading, and controlling resources to achieve specific goals.

    • Involves planning and setting goals

    • Organizing resources and tasks

    • Leading and motivating employees

    • Controlling and evaluating performance

    • Examples: setting budgets, creating schedules, delegating tasks

  • Answered by AI

Process Associate Interview Questions asked at other Companies

Q1. How will you explain a red colour (or any colour) to a person who is blind since his or her birth?
View answer (19)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. What is bond and its types
  • Ans. 

    A bond is a debt investment where an investor loans money to an entity which borrows the funds for a defined period at a fixed interest rate.

    • Bonds are issued by governments, municipalities, corporations, and other entities to raise capital.

    • Types of bonds include government bonds, corporate bonds, municipal bonds, and convertible bonds.

    • Government bonds are issued by national governments and are considered low-risk inves...

  • Answered by AI
  • Q2. What is options
  • Ans. 

    Options are financial instruments that give the holder the right, but not the obligation, to buy or sell an asset at a specified price before or on a specified date.

    • Options can be used for hedging, speculation, or generating income.

    • There are two types of options: call options (which give the holder the right to buy an asset) and put options (which give the holder the right to sell an asset).

    • Options have an expiration d...

  • Answered by AI
  • Q3. What is options Greeks
  • Ans. 

    Options Greeks are a set of risk measures that help traders understand the sensitivity of an option's price to various factors.

    • Options Greeks include Delta, Gamma, Theta, Vega, and Rho.

    • Delta measures the change in the option price for a $1 change in the underlying asset price.

    • Gamma measures the rate of change of Delta.

    • Theta measures the change in the option price with the passage of time.

    • Vega measures the sensitivity o...

  • Answered by AI
  • Q4. What is dividnend and journal entries for it
  • Ans. 

    Dividend is a distribution of a portion of a company's earnings to its shareholders.

    • Dividends are typically paid in cash or additional shares of stock.

    • Journal entry for cash dividend: Debit Retained Earnings, Credit Dividends Payable.

    • Journal entry for stock dividend: Debit Retained Earnings, Credit Common Stock or Paid-in Capital.

    • Dividends reduce the company's retained earnings and are recorded on the balance sheet.

    • Div...

  • Answered by AI
  • Q5. What is accrued income and expense and it’s entries
  • Ans. 

    Accrued income and expenses are revenues and expenses that have been earned or incurred, but not yet received or paid.

    • Accrued income is revenue that has been earned but not yet received. It is recorded as a debit to an asset account and a credit to a revenue account.

    • Accrued expenses are expenses that have been incurred but not yet paid. They are recorded as a debit to an expense account and a credit to a liability acco...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare hard about financial terms

Top Nirvana Solutions Financial Analyst Interview Questions and Answers

Q1. What is accrued income and expense and it’s entries
View answer (1)

Financial Analyst Interview Questions asked at other Companies

Q1. Suppose you have 10000 US dollars with you, out of which you took a loan of 5000 US Dollars. Now suppose you have purchased two assets of 5000 US Dollars each, one through cash and other through bank loan. How would you show this transactio... read more
View answer (3)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic SQL questions

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)

Nirvana Solutions interview questions for popular designations

 Financial Analyst

 (4)

 Business Analyst

 (2)

 Financial Data Analyst

 (2)

 Software Engineer

 (2)

 BDM Sales

 (1)

 Lead QA Analyst

 (1)

 Process Associate

 (1)

 Senior Software Engineer

 (1)

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

(2 Questions)

  • Q1. Basic technical questions and code
  • Q2. Question based on UI, SQL, and system design

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 (38)

Get interview-ready with Top Nirvana Solutions Interview Questions

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

I was interviewed before Feb 2024.

Round 1 - Coding Test 

Coding Test with unnecessary requirements that doesn’t meet job role

Round 2 - One-on-one 

(1 Question)

  • Q1. What sql and why it is used
Round 3 - One-on-one 

(1 Question)

  • Q1. Why Business Analyst
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)

Jobs at Nirvana Solutions

View all
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Oct 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Given a problem to create a IPO allotment process

Round 2 - Coding Test 

Simple coding questions

Round 3 - Coding Test 

Coding questions and azure devOps multiple choice questions

Round 4 - Technical 

(1 Question)

  • Q1. Just basic things related to dotnet and dotnet core

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice coding, understanding of dotnet, oops concept

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (181)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

30 min time is given questions are of logical reasoning

Round 2 - HR 

(2 Questions)

  • Q1. What is hedge funds
  • Ans. 

    Hedge funds are investment funds that pool capital from accredited individuals or institutional investors and use various strategies to earn high returns.

    • Hedge funds are typically only available to accredited investors due to their complex and risky nature.

    • They often use leverage and derivatives to amplify returns.

    • Hedge funds can invest in a wide range of assets, including stocks, bonds, commodities, and currencies.

    • The...

  • Answered by AI
  • Q2. Accural transactions

Top Nirvana Solutions Financial Analyst Interview Questions and Answers

Q1. What is accrued income and expense and it’s entries
View answer (1)

Financial Analyst Interview Questions asked at other Companies

Q1. Suppose you have 10000 US dollars with you, out of which you took a loan of 5000 US Dollars. Now suppose you have purchased two assets of 5000 US Dollars each, one through cash and other through bank loan. How would you show this transactio... read more
View answer (3)

Financial Data Analyst Interview Questions & Answers

user image Shobhit Bartariya

posted on 28 Oct 2023

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

I applied via Referral and was interviewed in Apr 2023. There were 5 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 - Aptitude Test 

Aptitude test there are lots of quantitative questions along with accounting.

Round 3 - One-on-one 

(2 Questions)

  • Q1. There are total 4 rounds… first aptitude test and who cleared the same will eligible for 2nd round i.e. manager round and who will cleared the same then the final round after that there will be HR round as...
  • Q2. Related to capital market , accounting questions like journal entries golden rules etc etc…
Round 4 - Technical 

(1 Question)

  • Q1. Last round… MANAGER ROUND
Round 5 - HR 

(1 Question)

  • Q1. HR round salary discussion and all

Interview Preparation Tips

Topics to prepare for Nirvana Solutions Financial Data Analyst interview:
  • Capital Market
  • Journal entries
  • divedend
  • Corporate Actions
Interview preparation tips for other job seekers - Be prepare for this test… actually it’s above agenda test do please do it carefully.

Financial Data Analyst Interview Questions asked at other Companies

Q1. If you are looking for SQL then is it possible that you will switch your career in SQL ?
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Naukri.com and was interviewed in Jan 2023. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Implement Login Feature
  • Ans. 

    To implement login feature, create a login form, validate user credentials, and redirect to user dashboard.

    • Create a login form with input fields for username and password

    • Validate user credentials by checking against database or API

    • Redirect user to dashboard upon successful login

    • Implement password reset and forgot password functionality

    • Use secure protocols like HTTPS and encryption for user data

  • Answered by AI
  • Q2. Questions on Jason Web Token
Round 3 - Behavioral 

(2 Questions)

  • Q1. Why do you want to join us?
  • Ans. 

    I want to join because of the company's reputation, challenging projects, and growth opportunities.

    • Reputation: The company has a strong reputation in the industry, known for its quality work and innovative solutions.

    • Challenging projects: I am excited about the opportunity to work on complex and cutting-edge projects that will push my skills and knowledge.

    • Growth opportunities: I believe joining this company will provide...

  • Answered by AI
  • Q2. What are your reasons for switch?
  • Ans. 

    I am switching for career growth and new challenges.

    • Seeking new opportunities to expand my skillset

    • Looking for a more challenging role

    • Wanting to work on cutting-edge technologies

    • Desire for career advancement and growth

    • Exploring different industries or domains

  • Answered by AI
Round 4 - Client Interview 

(2 Questions)

  • Q1. Are you comfortable writing your own CSS?
  • Ans. 

    Yes, I am comfortable writing my own CSS.

    • I have experience in writing CSS for various projects.

    • I am familiar with CSS preprocessors like Sass and Less.

    • I am comfortable using CSS frameworks like Bootstrap and Foundation.

    • I am proficient in writing responsive CSS for different screen sizes.

    • I am aware of CSS best practices and maintainable code standards.

  • Answered by AI
  • Q2. Explain Redux flow, react lifecycle
  • Ans. 

    Redux is a state management library for React. React lifecycle methods are hooks that allow us to run code at specific points in a component's lifecycle.

    • Redux flow involves dispatching actions, which are handled by reducers to update the state. The updated state is then passed down to the components via props.

    • React lifecycle methods include componentDidMount, componentDidUpdate, and componentWillUnmount. They allow us ...

  • Answered by AI
Round 5 - HR 

(2 Questions)

  • Q1. Why are you looking out for a change?
  • Ans. 

    Looking for new challenges and growth opportunities.

    • Seeking a more challenging role to further develop my skills and expertise.

    • Interested in working on cutting-edge technologies and innovative projects.

    • Want to join a company with a strong culture and values that align with my own.

    • Desire to take on more leadership responsibilities and mentor junior engineers.

    • Looking for a better work-life balance and improved career pro

  • Answered by AI
  • Q2. Why to choose their company over other ?
  • Ans. 

    Our company stands out because of our cutting-edge technology, collaborative work environment, and commitment to employee growth and development.

    • We have a strong focus on innovation and use the latest technologies to develop high-quality software solutions.

    • Our company fosters a collaborative work environment where employees can learn from and support each other.

    • We prioritize employee growth and development by offering ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview for UI developer
Technical Round - Past project experience, live coding with CSS, React. Some JavaScript questions
Managerial Round
Client Round - With the client , some technical questions on React.
HR round

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

Nirvana Solutions Interview FAQs

How many rounds are there in Nirvana Solutions interview?
Nirvana Solutions interview process usually has 2-3 rounds. The most common rounds in the Nirvana Solutions interview process are Technical, HR and One-on-one Round.
How to prepare for Nirvana Solutions 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 Nirvana Solutions. The most common topics and skills that interviewers at Nirvana Solutions expect are C#, Investment Banking, AWS, Capital Market and Excel.
What are the top questions asked in Nirvana Solutions interview?

Some of the top questions asked at the Nirvana Solutions interview -

  1. How to copy data from one tab and paste it another tab where both tab are alrea...read more
  2. How to drag any object one place to another place using actions cla...read more
  3. How to automate mobile app without having a mobile devi...read more

Tell us how to improve this page.

Nirvana Solutions Interview Process

based on 11 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
Coforge Interview Questions
3.3
 • 515 Interviews
FIS Interview Questions
3.9
 • 479 Interviews
KPIT Technologies Interview Questions
3.4
 • 294 Interviews
Webdew Interview Questions
4.5
 • 106 Interviews
Adenza Interview Questions
3.8
 • 15 Interviews
View all

Nirvana Solutions Reviews and Ratings

based on 73 reviews

3.1/5

Rating in categories

2.8

Skill development

3.1

Work-life balance

3.0

Salary

3.0

Job security

2.8

Company culture

2.9

Promotions

2.9

Work satisfaction

Explore 73 Reviews and Ratings
Associate Product Manager

Gurgaon / Gurugram

1-4 Yrs

Not Disclosed

Java Developer

Gurgaon / Gurugram

2-6 Yrs

Not Disclosed

Explore more jobs
Financial Data Analyst
79 salaries
unlock blur

₹2 L/yr - ₹8.5 L/yr

Software Engineer
63 salaries
unlock blur

₹4.5 L/yr - ₹14 L/yr

Financial Analyst
44 salaries
unlock blur

₹3 L/yr - ₹7.8 L/yr

Quality Analyst
23 salaries
unlock blur

₹3.5 L/yr - ₹11 L/yr

Business Analyst
18 salaries
unlock blur

₹5.2 L/yr - ₹10 L/yr

Explore more salaries
Compare Nirvana Solutions with

Adenza

3.8
Compare

FIS

3.9
Compare

TCS

3.7
Compare

LTIMindtree

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview