Filter interviews by
I applied via Naukri.com and was interviewed before Feb 2021. There were 3 interview rounds.
I was responsible for leading the testing efforts and ensuring the quality of the software.
Led the testing team and coordinated with developers and stakeholders
Developed test plans, test cases, and executed them
Performed manual and automated testing
Identified and reported bugs and worked closely with developers to resolve them
Conducted regression testing and ensured software stability
Collaborated with cross-functional
STLC is a process of testing software while SDLC is a process of developing software.
STLC stands for Software Testing Life Cycle
It involves planning, designing, executing and reporting of tests
SDLC stands for Software Development Life Cycle
It involves planning, designing, developing, testing and maintaining software
STLC is a subset of SDLC
STLC ensures that the software meets the specified requirements and is of high qu
Clients opt for automation testing to save time and cost. My role in regression testing is to ensure that the software still works after changes.
Automation testing saves time and cost by reducing manual effort
Regression testing ensures that the software still works after changes
My role in regression testing is to create and execute automated test cases
I also analyze test results and report defects to the development te
Converting requirements to test cases involves analyzing requirements, identifying test scenarios, and creating test cases.
Analyze requirements to understand the functionality
Identify test scenarios based on requirements
Create test cases for each scenario
Ensure test cases cover all possible scenarios
Review and refine test cases as needed
We use a variety of test management tools depending on the project requirements.
For agile projects, we use JIRA for test case management and execution.
For performance testing, we use LoadRunner and JMeter.
For automation testing, we use Selenium and Appium.
For defect tracking, we use Bugzilla and HP ALM.
We also use custom-built tools for specific project needs.
Worked on functional modules related to e-commerce and financial services.
Developed and tested payment gateway integration module
Implemented order management and tracking module
Worked on inventory management and stock tracking module
Defect life cycle is the process of identifying, reporting, prioritizing, fixing, and verifying defects in software.
Defect is identified by testers during testing
Defect is reported to development team
Development team prioritizes and fixes the defect
Fixed defect is verified by testers
If defect is not fixed, it goes back to development team
If defect is fixed, it is closed
The complete lifecycle of testing involves planning, designing, executing, and reporting.
Planning: Define test objectives, scope, and strategy.
Designing: Create test cases and test data.
Executing: Run tests and record results.
Reporting: Analyze results and report defects.
Retesting: Verify fixes and retest defects.
Regression testing: Ensure changes do not impact existing functionality.
I expect a competitive salary based on my experience and skills.
I have extensive experience in software testing and have worked on complex projects.
I have a strong understanding of testing methodologies and tools.
I have successfully led testing teams and delivered high-quality software products.
I am confident in my abilities and believe I can contribute significantly to the company's success.
I am open to discussing sal...
I worked as a Senior Software Engineer Testing in my previous job.
Led a team of testers to ensure the quality of software products
Developed and executed test plans, test cases, and test scripts
Performed manual and automated testing
Identified and reported software defects
Collaborated with developers to resolve issues
Participated in code reviews and provided feedback
Implemented continuous integration and deployment proce...
I have extensive experience in software testing and a strong track record of delivering high-quality products.
I have a deep understanding of testing methodologies and best practices.
I have successfully led testing efforts for complex software projects.
I am skilled in test automation and have developed efficient testing frameworks.
I have a strong attention to detail and a meticulous approach to testing.
I am a quick lear...
Seeking new challenges and growth opportunities in a different organization.
Looking for a change to expand my skill set and knowledge.
Seeking a more challenging and dynamic work environment.
Interested in working with new technologies and tools.
Want to contribute to a different organization's success.
Seeking better career growth and advancement opportunities.
In 5 years, I see myself leading a team of software engineers, driving innovation and delivering high-quality testing solutions.
Leading a team of software engineers
Driving innovation in testing methodologies
Delivering high-quality testing solutions
Continuously learning and staying updated with the latest technologies
Contributing to the growth and success of the organization
My strengths include attention to detail, problem-solving skills, and ability to work well in a team. My weaknesses include being overly critical of my own work and sometimes struggling with time management.
Strength: Attention to detail - I have a keen eye for spotting even the smallest errors or inconsistencies in software.
Strength: Problem-solving skills - I enjoy analyzing complex problems and finding efficient solu...
I am a Senior Software Engineer Testing with expertise in testing and quality assurance.
Experienced in designing and implementing test strategies for complex software systems.
Proficient in various testing methodologies and tools, including manual and automated testing.
Skilled in identifying and resolving software defects and ensuring high-quality deliverables.
Strong knowledge of test planning, test case development, an...
posted on 8 Apr 2022
I applied via Naukri.com and was interviewed before Apr 2021. There were 3 interview rounds.
Aptitude test will a hackerrank test where it might have technical MCQ and/or coding test.
posted on 29 Sep 2021
I applied via Naukri.com and was interviewed in Apr 2021. There were 3 interview rounds.
I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.
I applied via Approached by Company and was interviewed before Jun 2021. There were 2 interview rounds.
Frameworks provide structure and pre-built components for software development, but can also limit flexibility and require learning curve.
Advantage: Provides structure and pre-built components for faster development
Advantage: Can improve code quality and maintainability
Disadvantage: Can limit flexibility and customization
Disadvantage: Requires learning curve and potential dependency issues
Example: ReactJS provides a fr...
Oops stands for Object-Oriented Programming. It is a programming paradigm that uses objects to represent real-world entities.
Advantages: code reusability, modularity, encapsulation, inheritance, polymorphism
Disadvantages: complexity, steep learning curve, performance overhead
Example: creating a class 'Car' with properties like 'make', 'model', and 'year', and methods like 'start_engine' and 'stop_engine'
I applied via LinkedIn and was interviewed in Jan 2022. There were 3 interview rounds.
MySQL query to find 2 highest salaries and explanation of abstract and interfaces
Use ORDER BY and LIMIT to get the top 2 salaries
Abstract classes cannot be instantiated and can have both abstract and non-abstract methods
Interfaces define a set of methods that a class must implement
Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 2
Example: abstract class Animal { abstract void makeSound(); }
Example: inte
Remove duplicates from list of strings
Create a Set to store unique strings
Iterate through the array and add each string to the Set
Convert the Set back to an array to get the list of unique strings
Iterate through the table to find the second largest value.
Iterate through the table and keep track of the largest and second largest values.
Compare each value with the current largest and second largest values.
Update the second largest value if a new value is found that is greater than the current second largest value.
Sort array of strings in descending order
Use a sorting algorithm like quicksort or mergesort
Specify the sorting order as descending
Ensure the sorting algorithm is stable to maintain order of equal elements
I applied via Approached by Company and was interviewed before Mar 2022. There were 3 interview rounds.
Optimisation techniques for software engineering
Use efficient algorithms and data structures
Minimize I/O operations and network calls
Optimize database queries
Use caching and memoization
Parallelize computations
Profile and analyze code for bottlenecks
Eliminate unnecessary code and dependencies
Design patterns are reusable solutions to common software problems.
Design patterns provide a common language for developers to communicate solutions.
They help improve code quality, maintainability, and scalability.
Examples include Singleton, Factory, Observer, and Decorator patterns.
Prime number programs
OOPs is Object-Oriented Programming, polymorphism allows objects to be treated as instances of their parent class, abstract class cannot be instantiated.
OOPs is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.
Polymorphism allows objects to be treated as instances of their parent class, enabling different classes to be treated as ins...
I applied via Naukri.com and was interviewed in May 2023. There were 3 interview rounds.
based on 1 review
Rating in categories
Senior Software Engineer
24
salaries
| ₹8.5 L/yr - ₹19 L/yr |
Software Engineer
9
salaries
| ₹6.5 L/yr - ₹20 L/yr |
Senior Software Developer
4
salaries
| ₹18 L/yr - ₹24.5 L/yr |
Senior Technical Lead
3
salaries
| ₹18.2 L/yr - ₹18.4 L/yr |
Associate Technical Manager
3
salaries
| ₹21 L/yr - ₹23.2 L/yr |
Thomson Reuters
Oracle Cerner
NextComm Corporation
Chetu