Upload Button Icon Add office photos

Filter interviews by

Nirvana Solutions Lead QA Analyst Interview Questions, Process, and Tips for Experienced

Updated 12 Nov 2024

Nirvana Solutions Lead QA Analyst Interview Experiences for Experienced

1 interview 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

Interview questions from similar companies

I applied via Referral and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical questions covering my experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Only one thing to share..
Nobody can know everything so even if you are wrong just be confident

I applied via Campus Placement and was interviewed before Nov 2019. There were 8 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Porters Generic Marketing Strategy
  • Q2. Extempore Pitch to position a product differentially in the Market
  • Ans. 

    Our product is the only one in the market that offers a unique combination of features and benefits.

    • Our product is designed to solve a specific problem that no other product in the market can solve.

    • Our product offers a unique combination of features and benefits that are not available in any other product.

    • Our product is backed by extensive research and development, ensuring that it is the most effective solution in the...

  • Answered by AI
  • Q3. Why MBA, Why Marketing

Interview Preparation Tips

Interview preparation tips for other job seekers - 1.Be confident , Open and Prepared

2.Kindly understand the question and answer relating with some of the concepts you have studied

I applied via Campus Placement and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Coding Test 

There was one problem solving question based on binary tree concept.
And rest were aptitude test

Round 2 - Technical 

(2 Questions)

  • Q1. What is a binary tree?
  • Ans. 

    A binary tree is a data structure consisting of nodes, each having at most two children.

    • Each node has a left and/or right child node

    • The left child node is smaller than the parent node, while the right child node is larger

    • Used for efficient searching and sorting algorithms

    • Examples include binary search trees and Huffman trees

  • Answered by AI
  • Q2. Was given a scenario and was asked to solve that with optimized approach
Round 3 - HR 

(1 Question)

  • Q1. Why do you want to join this company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. If you don't know something, tell that directly rather than giving wrong answer.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Profit and losses, time

Round 2 - Coding Test 

C language

Round 3 - Technical 

(2 Questions)

  • Q1. On programming questions
  • Q2. On our Engineering project

Interview Preparation Tips

Interview preparation tips for other job seekers - Be polite and your English language should be perfect
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is PLSQL and ?
  • Ans. 

    PLSQL is a procedural extension of SQL used for writing stored procedures, functions, triggers, and packages in Oracle databases.

    • PLSQL stands for Procedural Language/Structured Query Language.

    • It allows for procedural programming capabilities in SQL.

    • PLSQL code is executed on the server side, enhancing performance.

    • It is commonly used for creating complex business logic in Oracle databases.

    • PLSQL can be used to create stor...

  • Answered by AI
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Final discussion 

(1 Question)

  • Q1. Its about SharePoint online

Interview Preparation Tips

Interview preparation tips for other job seekers - After clearing all rounds and uploading all documents to get offer letter they never reverted back

Consultant Interview Questions & Answers

Coforge user image ABHISHEK VAISH

posted on 12 Jan 2025

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How the elastic stack work?
  • Ans. 

    The Elastic Stack is a collection of open-source tools for data ingestion, storage, search, and visualization.

    • Elasticsearch is used for storing and searching data

    • Logstash is used for data collection and processing

    • Kibana is used for data visualization and analysis

    • Beats are lightweight data shippers that send data from edge machines to Elasticsearch or Logstash

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is black box testing
  • Ans. 

    Black box testing is a software testing technique where the tester tests the functionality of the system without knowing its internal workings.

    • Tester does not have knowledge of the internal code or structure of the system being tested

    • Tests are performed based on the system's inputs and expected outputs

    • Used to validate the system's functionality and user interface

    • Examples include GUI testing, functional testing, and reg

  • Answered by AI
  • Q2. What is white box testing
  • Ans. 

    White box testing is a testing technique that involves testing the internal structure of the software.

    • It is also known as clear box testing or structural testing.

    • It requires knowledge of the internal workings of the software.

    • It involves testing individual functions, code paths, and branches.

    • It is often used in conjunction with black box testing.

    • Examples include unit testing and integration testing.

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. About basic accounting
  • Q2. Three golden rules of accounting, depreciation methods, previous role
  • Ans. 

    Three golden rules of accounting, depreciation methods, previous role

    • The three golden rules of accounting are: debit the receiver, credit the giver, and debit what comes in and credit what goes out

    • Depreciation methods include straight-line, double-declining balance, and units-of-production

    • In my previous role, I was responsible for managing the company's financial statements and ensuring compliance with accounting stand

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Journal entries, communication skills , previous job experiences
Round 4 - One-on-one 

(1 Question)

  • Q1. CTC,terms n conditions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and personable speak truth about your previous job

Nirvana Solutions Interview FAQs

How many rounds are there in Nirvana Solutions Lead QA Analyst interview for experienced candidates?
Nirvana Solutions interview process for experienced candidates usually has 1 rounds. The most common rounds in the Nirvana Solutions interview process for experienced candidates are Technical.
What are the top questions asked in Nirvana Solutions Lead QA Analyst interview for experienced candidates?

Some of the top questions asked at the Nirvana Solutions Lead QA Analyst interview for experienced candidates -

  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 Lead QA Analyst Interview Process for Experienced

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
Coforge Interview Questions
3.3
 • 518 Interviews
FIS Interview Questions
3.9
 • 482 Interviews
KPIT Technologies Interview Questions
3.4
 • 280 Interviews
Webdew Interview Questions
4.5
 • 106 Interviews
HyScaler Interview Questions
4.5
 • 91 Interviews
View all
Financial Data Analyst
81 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
64 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Financial Analyst
43 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Quality Analyst
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
18 salaries
unlock blur

₹0 L/yr - ₹0 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