Zensar Technologies
30+ Pride Hotel & Convention Centre Indore Interview Questions and Answers
What are the different types of severity you can assign to a bug?
Q2. What are the Testing challenges and how to overcome them ?
Testing challenges include lack of resources, time constraints, and communication issues. Overcoming them requires proper planning and collaboration.
Lack of resources, such as hardware or software, can hinder testing efforts
Time constraints may lead to rushed testing and incomplete coverage
Communication issues between team members can result in misunderstandings and errors
Proper planning and collaboration can help overcome these challenges
Establish clear testing goals and pri...read more
What are some of the best practices in test automation?
What are the different phases in an automation testing life cycle?
What is meant by Selenese? Explain different types of Selenium commands.
Explain what are the JUnits annotation linked with Selenium?
What is the importance of agile testing?
What is the difference b/w Bug and Defect?
What is API testing?
How do you automate the testing of CAPTCHA?
What are annotations in Cucumber?
What is cross-browser testing?
What is black-box testing?
Q14. What is difference between Compatibility Testing and Cross Browser Testing ?
Compatibility testing checks if software works on different platforms, while cross-browser testing checks if it works on different browsers.
Compatibility testing ensures software works on different operating systems, hardware, and software configurations.
Cross-browser testing ensures software works on different web browsers and their versions.
Compatibility testing is broader in scope than cross-browser testing.
Examples of compatibility testing include testing on different dev...read more
Q15. What are the things to keep in mind when you raise a Bug/defect ?
Things to keep in mind when raising a bug/defect
Provide a clear and concise description of the bug
Include steps to reproduce the bug
Provide screenshots or videos if possible
Assign the bug to the appropriate team member
Set the priority and severity of the bug
Track the bug until it is resolved
Write the difference between Test Stub and Test Driver.
Q17. What are the types of Black Box Testing in details ?
Black Box Testing includes functional, non-functional, regression, usability, and exploratory testing.
Functional Testing: verifies the functionality of the software
Non-functional Testing: verifies the non-functional aspects like performance, security, etc.
Regression Testing: verifies that changes made to the software do not affect the existing functionality
Usability Testing: verifies the ease of use of the software
Exploratory Testing: involves simultaneous learning, test desi...read more
Explain the various navigation commands supported by Selenium?
Difference between Selenium and Cucumber.
Q20. Test Artefacts - Is documentation important and why ?
Documentation is important for test artefacts to ensure traceability, repeatability, and knowledge transfer.
Documentation helps to ensure that tests can be traced back to their original requirements and objectives.
It also enables tests to be repeated consistently, reducing the risk of errors and increasing confidence in the results.
Documentation also facilitates knowledge transfer between team members, ensuring that everyone has a clear understanding of the tests and their pu...read more
Q21. What is difference between Bug and Defect.
A bug is a coding error, while a defect is a deviation from the expected behavior.
A bug is a mistake made by a developer during the coding phase.
A defect is a flaw in the software that causes it to behave differently than intended.
Bugs are usually caused by syntax errors, logical errors, or incorrect implementation.
Defects can be caused by bugs, but also by design flaws, requirements misunderstandings, or environmental issues.
Bugs are typically found and fixed during the deve...read more
Q22. Azure Used Service in your previous project
Azure Cognitive Services for image recognition and text analysis
Used Azure Computer Vision API for image recognition
Utilized Azure Text Analytics API for sentiment analysis
Integrated Azure Speech to Text API for transcribing audio
Explain STLC.
Q24. Explain Selenium Locators, Explain X-Path in detail.
Selenium Locators are used to identify web elements on a webpage. X-Path is a language used to navigate XML documents.
Selenium Locators include ID, Name, Class Name, Tag Name, Link Text, Partial Link Text, CSS Selector, and X-Path
X-Path is a syntax used to navigate through elements and attributes in an XML document
X-Path expressions can be used to locate elements on a webpage based on their attributes or hierarchy
Example of X-Path: //input[@id='username'] - locates an input e...read more
Q25. What is STLC phases ?
STLC stands for Software Testing Life Cycle which consists of several phases.
STLC is a process followed by software testers to ensure the quality of the software.
The phases of STLC are - Requirement Analysis, Test Planning, Test Case Development, Test Environment Setup, Test Execution, and Test Closure.
Each phase has its own set of objectives and deliverables.
STLC helps in identifying defects early in the software development life cycle.
STLC ensures that the software meets th...read more
Q26. Tsql and query optimism and differences
TSQL query optimization techniques and differences
TSQL query optimization techniques include index optimization, query rewriting, and statistics optimization
Query optimization aims to improve query performance by reducing execution time and resource usage
Query optimization can be done at different levels such as database, table, and query level
Query optimization can also involve choosing the best execution plan based on cost estimation
Query optimism refers to the assumption t...read more
Q27. Explain SOLID principle
SOLID is a set of five design principles to make software designs more understandable, flexible, and maintainable.
S - Single Responsibility Principle: A class should have only one reason to change.
O - Open/Closed Principle: Software entities should be open for extension but closed for modification.
L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses without affecting the functionality.
I - Interface Segregation Princip...read more
Q28. explain what is SDLC?
SDLC stands for Software Development Life Cycle, which is a process used by software development teams to design, develop, and test high-quality software.
SDLC is a structured process that consists of several phases such as planning, analysis, design, implementation, testing, and maintenance.
Each phase has its own set of activities and deliverables that contribute to the overall success of the software project.
SDLC helps ensure that the software meets the requirements of the s...read more
Q29. what is a test scenario?
A test scenario is a detailed description of a specific test case that outlines the conditions, actions, and expected results.
Test scenarios are used to ensure that the software functions correctly under various conditions.
They include details such as input data, actions taken by the user, and expected outcomes.
Examples of test scenarios include logging into a website, adding items to a shopping cart, and submitting a form.
Test scenarios help in identifying defects and ensuri...read more
Q30. why zensar technologies ?
Zensar Technologies is a leading global digital solutions and technology services company with a strong reputation in the industry.
Strong reputation in the industry
Global presence with a focus on digital solutions
Opportunities for growth and learning
Innovative projects and technologies
Q31. .NET Core vs .NET
.NET Core is a cross-platform, open-source framework for building modern applications, while .NET refers to the traditional framework for Windows applications.
.NET Core is lightweight and modular, allowing for faster performance and easier deployment.
.NET Core supports cross-platform development, enabling applications to run on Windows, macOS, and Linux.
.NET Core has a smaller footprint and can be used for microservices and containerized applications.
.NET Framework (or simply...read more
Q32. Severity and Priority difference.
Severity refers to the impact of a bug on the system while Priority refers to the order in which bugs should be fixed.
Severity is the measure of how much a bug affects the system's functionality
Priority is the measure of how soon a bug should be fixed
Severity can be classified as high, medium, or low
Priority can be classified as high, medium, or low
A high severity bug may not necessarily have a high priority
For example, a spelling mistake on a non-critical page may have low s...read more
Q33. OOP concept in C#
OOP concept in C# involves creating classes, objects, inheritance, polymorphism, and encapsulation.
Classes are blueprints for objects, containing properties and methods.
Objects are instances of classes, representing real-world entities.
Inheritance allows a class to inherit properties and methods from another class.
Polymorphism enables objects to be treated as instances of their parent class.
Encapsulation restricts access to certain components of a class, promoting data hiding...read more
Top HR Questions asked in Pride Hotel & Convention Centre Indore
Interview Process at Pride Hotel & Convention Centre Indore
Top Senior Software Engineer Interview Questions from Similar Companies
Reviews
Interviews
Salaries
Users/Month