Filter interviews by
I applied via Approached by Company and was interviewed in Jul 2024. There was 1 interview round.
Top trending discussions
I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.
Defect life cycle is the process of identifying, reporting, fixing, retesting, and closing defects in software development.
Defect identification: Defects are identified through testing or user feedback.
Defect reporting: Defects are reported in a defect tracking tool with details like steps to reproduce, severity, and priority.
Defect fixing: Developers fix the reported defects based on the information provided.
Defect re...
Black box testing focuses on functionality without knowledge of internal code, while white box testing examines internal code structure.
Black box testing tests the functionality of a system without knowledge of its internal code
White box testing tests the internal code structure and logic of a system
Black box testing is more focused on end-user perspective
White box testing is more focused on developer perspective
Exampl...
Hard assert stops the execution of the test case if it fails, while soft assert continues the execution and logs the failure.
Hard assert is used when the failure of a particular step makes the further steps irrelevant.
Soft assert is used when you want to continue with the test case execution even if some steps fail.
Hard assert is implemented using 'assert' keyword in testing frameworks like TestNG or JUnit.
Soft assert ...
Annotations in Selenium WebDriver are used to provide additional information about the test methods.
Annotations help in organizing and managing test cases
Some common annotations in Selenium WebDriver are @Test, @BeforeTest, @AfterTest, @BeforeClass, @AfterClass, @BeforeMethod, @AfterMethod
Annotations are used to define the sequence of execution of test methods
Use XPath to count the number of links with the text 'selenium'
Use XPath to locate all the links containing the text 'selenium'
Count the number of links found using the XPath expression
Use SQL query to display 60 pass and 40 fail from a table of students.
Use SELECT statement with COUNT function to count the number of pass and fail statuses.
Use WHERE clause to filter out pass and fail statuses.
Use GROUP BY clause to group the statuses together.
Use CASE statement to display the count of pass and fail statuses.
I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.
Project architecture refers to the overall structure of a software project, including components, modules, and their interactions.
Project architecture defines how different components of a software project are organized and interact with each other.
It includes the high-level design of the system, such as the database structure, data flow, and integration points.
Project architecture also involves decisions on technologi...
Challenges in ETL testing include data quality issues, complex transformations, and handling large volumes of data.
Data quality issues such as missing or incorrect data can impact testing results
Complex transformations can be difficult to validate and may lead to errors in the ETL process
Handling large volumes of data can slow down testing processes and require efficient testing strategies
Roles and responsibilities refer to the tasks and duties assigned to an individual within a specific job or position.
Roles define the position or job title of an individual within an organization.
Responsibilities outline the specific tasks, duties, and expectations associated with that role.
Roles and responsibilities help clarify expectations, define boundaries, and ensure accountability.
Examples include testing data e...
Use a dictionary to find duplicate values in an array of strings in Python.
Create an empty dictionary to store the count of each string in the array.
Iterate through the array and for each string, check if it exists in the dictionary. If it does, increment the count. If not, add it to the dictionary with a count of 1.
After iterating through the array, check the dictionary for any strings with a count greater than 1. The
I applied via Referral and was interviewed in Apr 2024. There were 4 interview rounds.
Use SQL query to find the nth row and top 50% records using string function
To find the nth row, use LIMIT and OFFSET in SQL query
To find top 50% records, use PERCENTILE_CONT function in SQL
String functions like SUBSTRING can be used to manipulate string data
Use SQL DATEDIFF function to calculate age from date of birth.
Use DATEDIFF function to calculate the difference in years between current date and date of birth.
Example: SELECT DATEDIFF(year, '2000-01-01', GETDATE()) AS Age;
Make sure to handle leap years and edge cases like birthdate being in the future.
I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.
Different types of waits include implicit, explicit, and fluent waits in automation testing.
Implicit wait: Waits for a certain amount of time before throwing a NoSuchElementException.
Explicit wait: Waits for a certain condition to occur before proceeding further in the code.
Fluent wait: Waits for a condition to be true with a specified frequency of checking.
Example: WebDriverWait in Selenium is an example of explicit w
Multiple window handles are used in automation testing to handle multiple browser windows or tabs simultaneously.
Use getWindowHandles() method to get all the window handles
Switch between window handles using switchTo().window(handle)
Close a specific window handle using driver.close()
Example: driver.getWindowHandles()
Example: driver.switchTo().window(handle)
Sanity testing is a subset of regression testing that focuses on testing specific areas of the software after changes to ensure no major issues have been introduced.
Sanity testing is a quick and focused testing of specific functionalities to ensure they still work after changes.
It is usually performed before full regression testing to save time and effort.
Sanity testing is not exhaustive and does not cover all function...
I applied via Company Website and was interviewed in Jun 2024. There was 1 interview round.
A database is a structured collection of data that is organized in a way that allows for easy access, management, and retrieval.
A database typically consists of tables, which store data in rows and columns.
Data in a database is stored in a structured format, such as SQL databases or NoSQL databases.
Databases are used in various applications, such as storing user information, product data, and financial records.
Examples...
Types of databases include relational, NoSQL, object-oriented, and graph databases.
Relational databases store data in tables with rows and columns (e.g. MySQL, PostgreSQL)
NoSQL databases store data in non-tabular formats (e.g. MongoDB, Cassandra)
Object-oriented databases store data as objects (e.g. db4o)
Graph databases use graph structures for semantic queries (e.g. Neo4j)
I applied via Walk-in and was interviewed in May 2024. There were 2 interview rounds.
Networking
It configuration
Roger
WAN Technologies
Auto cad
DHCP&HSRP
An IP address is a unique numerical label assigned to each device connected to a computer network.
IP addresses are used to identify and locate devices on a network.
There are two types of IP addresses: IPv4 (e.g. 192.168.1.1) and IPv6 (e.g. 2001:0db8:85a3:0000:0000:8a2e:0370:7334).
IP addresses can be static (manually assigned) or dynamic (assigned by a DHCP server).
Networking is the practice of connecting computers and other devices together to share resources and information.
Networking involves setting up connections between devices using cables or wireless technology.
It allows devices to communicate with each other and share resources such as files, printers, and internet access.
Networking can be done locally within a home or office (LAN) or over a larger geographical area (WAN...
I applied via Naukri.com and was interviewed in Dec 2022. There were 4 interview rounds.
Assignment is very easy to understand the person
Sanity testing is a quick and shallow testing to ensure that the application is stable enough for further testing.
It is a subset of regression testing
It is performed after a new build or changes to the code
It checks for major functionalities and critical features
It is not exhaustive and does not cover all possible test cases
It helps to save time and effort by identifying major issues early on
Smoke testing is a preliminary testing technique to check if the critical functionalities of the software are working fine.
It is a quick and shallow testing technique
It is performed to ensure that the build is stable enough for further testing
It is usually performed after every build
It helps in identifying critical defects early in the testing cycle
Example: Testing the login functionality of a website after a new build
The functions of testing are to identify defects, improve quality, and ensure the software meets requirements.
Identify defects and errors in the software
Improve the quality of the software
Ensure the software meets the specified requirements
Validate and verify the software functionality
Reduce the risk of software failure
Provide feedback to developers for improvement
Ensure compliance with industry standards and regulatio
Smoke testing is a quick and shallow test to check if the basic functionalities of the software are working. Sanity testing is a more thorough test to check if the major functionalities of the software are working after a change.
Smoke testing is done to check if the software is stable enough for further testing
Sanity testing is done to check if the changes made to the software have not affected the major functionalitie...
Apitude testing is the person is fitted or not the job
Hash map related asked in the round two
based on 1 interview
Interview experience
Associate
4
salaries
| ₹2.8 L/yr - ₹12 L/yr |
Senior Associate
3
salaries
| ₹8.2 L/yr - ₹33 L/yr |
Senior Associate QA
3
salaries
| ₹9 L/yr - ₹18 L/yr |
Senior Associate Developer
3
salaries
| ₹12.8 L/yr - ₹14.3 L/yr |
TCS
Accenture
Wipro
Cognizant