i
Filter interviews by
I applied via Naukri.com and was interviewed before Feb 2021. There were 2 interview rounds.
Test prioritization is the process of determining the order in which tests should be executed based on their importance and risk.
Tests are prioritized based on their impact on the system and the likelihood of failure.
Prioritization helps to ensure that critical defects are identified and fixed early in the testing process.
Factors such as business requirements, user expectations, and regulatory compliance are considered...
User Acceptance Testing (UAT) is the final phase of testing where end-users test the software to ensure it meets their requirements.
UAT is performed by end-users or business representatives
It is done in a real-world environment
The focus is on validating the software's functionality and usability
UAT is conducted after all other testing phases are completed
Defects found during UAT are reported and fixed before the softwa
Test cycle schedule is planned by considering project timelines, test objectives, resources, and risks.
Identify project timelines and milestones
Define test objectives and scope
Allocate resources and identify dependencies
Identify and prioritize risks
Create a detailed test plan and schedule
Review and adjust the schedule as needed
Defect Life Cycle is a process followed by testers to identify, report, and resolve defects in software.
Defect is identified and reported by tester
Defect is reviewed by development team
Defect is assigned to a developer for fixing
Defect is fixed by developer
Defect is retested by tester
Defect is closed if it passes retest, else reopened
Categories include New, Open, In Progress, Fixed, Reopened, Closed
Top trending discussions
posted on 10 May 2024
Abstraction is implemented in the framework through interfaces and base classes.
Abstraction is achieved through interfaces which define the contract for classes to implement.
Base classes provide common functionality that can be inherited by concrete classes.
Abstraction helps in decoupling the implementation details from the actual test cases.
Example: Interface 'ITestCase' defines methods like 'executeTest' which are im
OOps concept is a programming paradigm based on the concept of objects, which can contain data and code.
OOps stands for Object-Oriented Programming
It focuses on creating objects that interact with each other to perform tasks
Encapsulation, inheritance, and polymorphism are the key features of OOps
Examples of OOps languages include Java, C++, and Python
Yes, I am a team player.
I believe in collaboration and working towards a common goal.
I actively participate in team discussions and contribute my ideas.
I am willing to help and support my team members whenever needed.
I prioritize effective communication and ensure everyone is on the same page.
I am open to feedback and constructive criticism from my team.
I have successfully worked in cross-functional teams in my previou
I applied via Job Portal and was interviewed in Nov 2024. There was 1 interview round.
Selenium framework is a test automation tool used for web applications.
Selenium framework allows for automated testing of web applications.
It supports multiple programming languages like Java, Python, C#, etc.
Selenium WebDriver is a key component for interacting with web elements.
Test scripts can be written using Selenium IDE, WebDriver, or Grid.
Selenium framework can be integrated with tools like TestNG, JUnit, etc.,
20 aptitude questions and 50 technical questions
Automation framework is a set of guidelines, rules, and tools that help in creating and executing automated tests.
Automation framework provides structure and guidelines for creating automated tests
It helps in organizing test scripts, data, and results
Frameworks can be data-driven, keyword-driven, or hybrid
Examples of automation frameworks include Selenium WebDriver, TestNG, and Robot Framework
Sorting array of strings in Java without using built-in functions
Create a custom sorting algorithm like bubble sort, selection sort, or insertion sort
Compare each pair of strings and swap them if necessary to sort in ascending order
Repeat the process until the array is fully sorted
TestNG annotations are used to control the flow of test methods and provide additional information about the test methods.
TestNG annotations are used to mark methods as test methods, setup methods, teardown methods, etc.
Annotations like @Test, @BeforeMethod, @AfterMethod, @BeforeClass, @AfterClass, @BeforeSuite, @AfterSuite are commonly used in TestNG framework.
Annotations help in organizing and prioritizing test metho...
TestNG listener is an interface that allows users to customize the test execution process.
TestNG listeners can be used to perform actions before or after a test method is run.
Listeners can be used to generate logs, take screenshots, or perform other custom actions during test execution.
Examples of TestNG listeners include ITestListener, ISuiteListener, and IInvokedMethodListener.
Overriding is a concept in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its superclass.
Overriding allows a subclass to provide a specific implementation of a method that is already provided by its superclass
It is used in automation frameworks to customize or extend the functionality of existing methods or classes
In automation testing, overriding...
BDD hooks and tags are used in Behavior-Driven Development to set up preconditions and execute actions before or after scenarios, and to categorize and filter scenarios.
BDD hooks are used to set up preconditions and execute actions before or after scenarios
Tags are used to categorize and filter scenarios based on certain criteria
Hooks can be used to perform setup and teardown actions, such as initializing test data or ...
BDD background keyword is used to define common preconditions for all scenarios in a feature file.
Used at the beginning of a feature file to define common preconditions
Helps in setting up the initial state for all scenarios in the feature file
Reduces duplication of steps in scenarios by defining them once in the background
CI/CD pipeline using Jenkins automates the process of integrating code changes and deploying them to production.
Jenkins is a popular automation server used for CI/CD
CI/CD stands for Continuous Integration/Continuous Deployment
In a CI/CD pipeline, code changes are automatically built, tested, and deployed
Jenkins pipelines can be defined using a Jenkinsfile which specifies the stages and steps of the pipeline
Example: Che...
Rest Assured is a Java library for testing RESTful APIs. It simplifies API testing by providing a fluent interface to make HTTP requests and validate responses.
Rest Assured is commonly used in API automation testing to validate the functionality of RESTful APIs.
It allows testers to easily make HTTP requests, set headers, parameters, and body, and validate the response.
Here is an example code snippet for posting data an...
Permission sets and profiles are used in Salesforce to control access to objects, fields, and records.
Permission sets are used to grant additional permissions to specific users or groups beyond what is already defined in their profiles.
Profiles are used to define the baseline permissions and settings for a user or group.
Permission sets can be assigned to users in addition to their profile to give them access to specifi...
Loan origination process involves application, underwriting, approval, and funding stages.
Customer submits loan application with required documents
Lender reviews application for completeness and accuracy
Underwriting process assesses borrower's creditworthiness and risk
Loan approval or denial decision is made based on underwriting results
Funding stage involves disbursing approved loan amount to borrower
I applied via Referral and was interviewed in May 2024. There was 1 interview round.
Exploratory testing is a simultaneous learning, test design, and test execution approach. Adhoc testing is an informal testing approach without any predefined test cases.
Exploratory testing involves exploring the software, learning about it, and designing and executing tests on the fly.
Adhoc testing is unplanned and unstructured testing where testers randomly test the application without any specific test cases.
In my p...
Mobile testing focuses on apps for smartphones and tablets, while web testing focuses on websites accessed through browsers.
Mobile testing involves testing apps on different devices and operating systems.
Web testing involves testing websites on different browsers and screen sizes.
Mobile testing includes testing for touch gestures and device-specific features.
Web testing includes testing for cross-browser compatibility ...
I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.
Questions on basic java, manual testing, coding best practices, automation testing
Automate a login page using Selenium WebDriver in Java with synchronization and exception handling.
Use Selenium WebDriver to locate the username and password fields, enter valid credentials, and click the login button.
Implement explicit and implicit waits for synchronization to handle dynamic elements and page loading.
Use try-catch blocks for exception handling to capture and handle any errors during the login process.
...
posted on 22 Nov 2024
Smoke testing is a quick test to check if the basic functionalities of the software are working, while sanity testing is a more thorough test to ensure that the software is ready for further testing.
Smoke testing is done to check if the critical functionalities of the software are working properly.
Sanity testing is done to ensure that the software is stable and ready for further testing.
Smoke testing is usually done be...
I applied via Naukri.com and was interviewed in Feb 2024. There was 1 interview round.
based on 7 reviews
Rating in categories
Senior Associate
461
salaries
| ₹1.6 L/yr - ₹8 L/yr |
Software Development Senior Analyst
431
salaries
| ₹4.5 L/yr - ₹16 L/yr |
Software Development Analyst
399
salaries
| ₹3.5 L/yr - ₹11.5 L/yr |
Software Development Specialist
322
salaries
| ₹6.8 L/yr - ₹18.5 L/yr |
Software Engineer
300
salaries
| ₹2.8 L/yr - ₹10.7 L/yr |
Accenture
TCS
Infosys
Wipro