Filter interviews by
Types of testing include unit testing, integration testing, system testing, acceptance testing, and regression testing.
Unit testing: Testing individual components or functions of the software.
Integration testing: Testing how different components work together.
System testing: Testing the entire system as a whole.
Acceptance testing: Testing to ensure the software meets the requirements.
Regression testing: Testing to...
Questions related to software development life cycle (SDLC) and testing methodologies.
Defect life cycle refers to the stages a defect goes through from discovery to resolution.
Severity and priority are used to prioritize defects based on their impact and urgency.
Sanity testing is a quick check to ensure that the basic functionality of the system is working.
Smoke testing is a preliminary test to check if the major ...
Whitebox testing is testing the internal logic of the software, while black box testing is testing the functionality without knowledge of the internal code.
Whitebox testing involves testing the internal structure, code paths, and algorithms of the software.
Black box testing involves testing the functionality, inputs, and outputs of the software without knowledge of the internal code.
Whitebox testing is typically d...
Software testing is the process of evaluating a software product to identify defects and ensure it meets the requirements.
Software testing involves analyzing the software to identify defects and ensure it meets the requirements
It includes functional testing, performance testing, security testing, and more
Testing can be done manually or through automated tools
The goal of testing is to improve the quality of the sof...
Given an integer N
, your task is to create all possible valid parentheses configurations that are well-formed using N
pairs. A sequence of parentheses is considered we...
Generate all possible valid parentheses configurations with N pairs.
Use backtracking to generate all possible combinations of parentheses.
Keep track of the number of open and close parentheses used.
Add '(' if there are remaining open parentheses, and add ')' if there are remaining close parentheses.
I applied via Campus Placement and was interviewed in Dec 2023. There were 3 interview rounds.
It's aptitude and coding test they asked questions related to data interpretation mostly.and one coding question easy one and two SQL questions I got on joins
Topic given by them you have two minutes to think and then discuss with group for 5 minutes. At the end they ask for conclusion from everyone there is group of eight students and they select two or three from them
Types of testing include unit testing, integration testing, system testing, acceptance testing, and regression testing.
Unit testing: Testing individual components or functions of the software.
Integration testing: Testing how different components work together.
System testing: Testing the entire system as a whole.
Acceptance testing: Testing to ensure the software meets the requirements.
Regression testing: Testing to ensu...
Whitebox testing is testing the internal logic of the software, while black box testing is testing the functionality without knowledge of the internal code.
Whitebox testing involves testing the internal structure, code paths, and algorithms of the software.
Black box testing involves testing the functionality, inputs, and outputs of the software without knowledge of the internal code.
Whitebox testing is typically done b...
Python, SQL test was there on some third party platform.
I appeared for an interview in Jan 2021.
Round duration - 20 minutes
Round difficulty - Easy
Round duration - 30 minutes
Round difficulty - Easy
Software testing is the process of evaluating a software item to detect differences between given input and expected output.
Software testing ensures that the software is bug-free and meets the requirements
It involves various types of testing such as functional, performance, security, etc.
Testing can be done manually or through automation tools like Selenium, Appium, etc.
Given an integer N
, your task is to create all possible valid parentheses configurations that are well-formed using N
pairs. A sequence of parentheses is considered w...
Generate all possible valid parentheses configurations with N pairs.
Use backtracking to generate all possible combinations of parentheses.
Keep track of the number of open and close parentheses used.
Add '(' if there are remaining open parentheses, and add ')' if there are remaining close parentheses.
Tip 1 : DO SDLC very well
Tip 2 : Blackbox and whitebox testing
Tip 3 : Have a good resume
Tip 1 : Do not lie at all
Tip 2 : If you know basics of testing do write that in your resume
I applied via Referral and was interviewed in Nov 2020. There were 3 interview rounds.
Questions related to software development life cycle (SDLC) and testing methodologies.
Defect life cycle refers to the stages a defect goes through from discovery to resolution.
Severity and priority are used to prioritize defects based on their impact and urgency.
Sanity testing is a quick check to ensure that the basic functionality of the system is working.
Smoke testing is a preliminary test to check if the major funct...
Top trending discussions
I applied via Referral and was interviewed in Apr 2020. There were 5 interview rounds.
Normalization is a process of organizing data in a database to reduce redundancy and improve data integrity.
Normalization involves breaking down a table into smaller tables and establishing relationships between them.
There are different levels of normalization, with each level having specific rules to follow.
Normalization helps to prevent data inconsistencies and anomalies.
Examples of normalization include converting r...
posted on 15 Jul 2022
I applied via Approached by Company and was interviewed before Jul 2021. There were 2 interview rounds.
Basic programming questions
I appeared for an interview in Sep 2020.
I appeared for an interview in Sep 2019.
My goals in joining your organization include contributing to impactful projects, growing my skills, and collaborating with a talented team.
Contributing to Impactful Projects: I aim to work on projects that have a meaningful impact, such as developing software that improves user experience or enhances productivity.
Skill Development: I want to continuously learn and grow my technical skills, particularly in areas like c...
posted on 14 Mar 2015
Java is an object-oriented language while C is a procedural language.
Java is platform-independent while C is platform-dependent.
Java has automatic garbage collection while C requires manual memory management.
Java has built-in support for multithreading while C requires external libraries.
Java has a larger standard library compared to C.
Java is more secure than C due to its strong type checking and exception handling.
C ...
Aggregation functions are used to perform calculations on groups of data in a database.
Aggregation functions include COUNT, SUM, AVG, MAX, and MIN.
They are used with the GROUP BY clause to group data based on a specific column.
COUNT function returns the number of rows in a table or the number of non-null values in a column.
SUM function returns the sum of values in a column.
AVG function returns the average of values in ...
Two ways to write a sentence in mirror image form in Java: reverse string function and array conversion.
Use the reverse() method of the String class to reverse the sentence
Convert the sentence to a character array, then swap the first and last characters, second and second-to-last characters, and so on until the middle is reached
Example: 'Hello World' becomes 'dlroW olleH'
Static is used in public static void main to allow the method to be called without creating an instance of the class.
Static methods belong to the class and not to any instance of the class.
The main method is the entry point of a Java program and needs to be called without creating an object of the class.
The static keyword allows the main method to be called directly from the class, without creating an instance of the c...
Abstract classes, interfaces, and enums provide abstraction and modularity in Java.
Abstract classes provide a partial implementation of a class and cannot be instantiated.
Interfaces define a set of methods that a class must implement and can be used for multiple inheritance.
Enums provide a set of named constants.
All three are used for abstraction and modularity in Java.
Abstract classes and interfaces are used for polym...
Object-oriented software engineering is a framework for designing and developing software using objects.
Object-oriented software engineering is a methodology for designing and developing software using objects.
It involves creating classes and objects that encapsulate data and behavior.
Frameworks are pre-built structures that provide a foundation for building software applications.
Frameworks can include libraries, APIs,...
Java is an object-oriented language with features like inheritance, encapsulation, and polymorphism.
Inheritance allows classes to inherit properties and methods from other classes.
Encapsulation hides the implementation details of a class from other classes.
Polymorphism allows objects to take on multiple forms or behaviors.
Java also supports abstraction, interfaces, and exception handling.
Example: class Car extends Vehi...
Normalization is a process of organizing data in a database to reduce redundancy and dependency.
Normalization is used to eliminate data redundancy and improve data integrity.
It involves dividing a database into two or more tables and defining relationships between them.
There are different levels of normalization, such as first normal form (1NF), second normal form (2NF), and so on.
Normalization helps in efficient data ...
ADBMS stands for Advanced Database Management System which is an extension of DBMS with additional features.
ADBMS has advanced features like data mining, data warehousing, and online analytical processing.
ADBMS is used for handling large and complex data sets.
DBMS is a basic system for managing data and is used for small and simple data sets.
DBMS does not have advanced features like ADBMS.
Examples of ADBMS are Oracle, ...
I am a software engineer with 5 years of experience in developing web applications.
Proficient in programming languages such as Java, Python, and JavaScript
Experience in developing RESTful APIs and microservices
Familiarity with front-end technologies such as HTML, CSS, and React
Strong understanding of database management systems like MySQL and MongoDB
Experience in Agile development methodologies
I want to gain practical experience and contribute to the industry while also learning on the job.
I believe that hands-on experience is invaluable in the software engineering field
I am eager to apply my skills and knowledge to real-world projects
I am excited to work with a team and learn from experienced professionals
I am not currently pursuing post-graduation as I feel that gaining industry experience is more importan...
I would leverage my Java skills to quickly learn .NET and demonstrate my adaptability and problem-solving abilities.
Identify transferable skills: Both Java and .NET share object-oriented principles, making it easier to adapt.
Engage in self-study: Utilize online resources like Microsoft Learn or Pluralsight to gain .NET knowledge.
Build a small project: Create a simple application using .NET to showcase my ability to lea...
based on 2 interview experiences
Difficulty level
Duration
based on 9 reviews
Rating in categories
Test Engineer
2.2k
salaries
| ₹2 L/yr - ₹7 L/yr |
Senior Test Engineer
1.8k
salaries
| ₹4.8 L/yr - ₹10 L/yr |
Softwaretest Engineer
997
salaries
| ₹1.9 L/yr - ₹8 L/yr |
Automation Test Engineer
252
salaries
| ₹2.1 L/yr - ₹7.6 L/yr |
Associate Test Lead
252
salaries
| ₹7.6 L/yr - ₹13 L/yr |
ITC Infotech
CMS IT Services
KocharTech
Xoriant