Filter interviews by
I applied via Walk-in and was interviewed in May 2022. There were 3 interview rounds.
Some basic coads and questions
Top trending discussions
I applied via Job Portal and was interviewed before Jul 2022. There were 3 interview rounds.
Ther have conducted reasoning and logical questions.
Tuple is immutable, ordered collection while list is mutable, ordered collection in Python.
Tuple is created using parentheses () while list is created using square brackets []
Tuple elements cannot be changed once assigned while list elements can be modified
Tuple is faster than list for iteration and accessing elements
Example: tuple = (1, 2, 3) and list = [1, 2, 3]
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 campus placement at National Institute of Technology (NIT), Warangal and was interviewed in Jun 2024. There were 2 interview rounds.
2 coding questions with 28 aptitude question in 1 hrs .
I applied via Company Website and was interviewed in Oct 2023. There were 2 interview rounds.
Aptitude test were not competitive. They ask average questions.
In group discussion they ask testing and product based related questions.but iam a developer so it's difficult to handle.
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
I applied via Naukri.com and was interviewed in Feb 2022. There were 4 interview rounds.
I applied via Naukri.com and was interviewed in Mar 2022. There was 1 interview round.
Unique key allows null values while primary key does not.
Primary key is a unique identifier for a record in a table.
Unique key allows null values but primary key does not.
A table can have only one primary key but multiple unique keys.
Example: Employee ID can be a primary key while email can be a unique key.
Union combines the result sets of two or more SELECT statements, while Union All combines all rows from two or more SELECT statements.
Union removes duplicate rows, while Union All does not.
Union requires the number and order of columns in all SELECT statements to be the same, while Union All does not have this requirement.
Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;
Example: SELECT column1 FROM
At landing and staging area, I will perform data validation to ensure accuracy and completeness of data.
Validate data against source system
Check for missing or duplicate data
Verify data types and formats
Ensure data integrity and consistency
Perform data profiling and data quality checks
To find the last 5 records, use the ORDER BY clause with a descending order and limit the result to 5. To find unique records, use the DISTINCT keyword.
To find the last 5 records, use the ORDER BY clause with a descending order and limit the result to 5.
Example: SELECT * FROM table_name ORDER BY column_name DESC LIMIT 5
To find unique records, use the DISTINCT keyword.
Example: SELECT DISTINCT column_name FROM table_name
Self join is joining a table with itself. Types of joins are inner, outer, left and right. CDC is change data capture used for tracking data changes.
Self join is used when we need to join a table with itself to retrieve data.
Types of joins are inner, outer, left and right join.
CDC is used to track data changes in the source system and apply those changes to the target system.
CDC can be used in ETL testing to verify tha...
SCD stands for Slowly Changing Dimensions. There are three types of SCD: Type 1, Type 2, and Type 3.
Type 1: Overwrites old data with new data.
Type 2: Creates a new record for new data and keeps the old record for historical data.
Type 3: Creates a new column for new data and keeps the old column for historical data.
Softwaretest Engineer
59
salaries
| ₹3 L/yr - ₹5.5 L/yr |
Data Analyst
37
salaries
| ₹4.5 L/yr - ₹7.4 L/yr |
AR Caller
20
salaries
| ₹2.4 L/yr - ₹4.2 L/yr |
Power BI Developer
11
salaries
| ₹4 L/yr - ₹5.5 L/yr |
Devops Engineer
9
salaries
| ₹3.5 L/yr - ₹6.5 L/yr |
Infosys
TCS
Wipro
HCLTech