DevLabs Alliance - WhatsApp
DevLabs Alliance Logo

Home / Interview /Top 20 C# Programmi...

Top 20 C# Programming Interview Questions For SDET – 2024

admin

2023-09-07

DevLabs Alliance Interview

0 mins read

DevLabs Alliance Interview

Similar Blogs

How can a QA or Test engineer become SDET?

0 mins read

2023-09-12


Eclipse Cheat Sheet

0 mins read

2023-09-13


How to write a Good Test Case in Software Testing

0 mins read

2023-09-14


How to Prepare for SDET Interview

0 mins read

2024-03-14


Selenium Career Opportunities Why should you master Selenium WebDriver

0 mins read

2023-09-14


How to Handle Alerts and Pop-ups in Selenium?

0 mins read

2023-09-13


How To Use DataProvider in TestNG – Parameterization

0 mins read

2023-09-13


What Is TestNG Annotations-Benefits, Hierarchy

0 mins read

2023-09-13


How to Download & Install Selenium WebDriver in Eclipse (Step-By-Step)

0 mins read

2023-09-13


What Are The Skills Required for SDET?

0 mins read

2023-09-13


Q1. What is the difference between SDET and manual Tester?

SDET is a highly skilled resource having both development and testing skills whereas manual testers have limited programming skills and can only prepare and execute the test cases.


SDETs can develop test automation tools and can use it but testers are not expected to develop the automation tools, they can only use the various automation tools.

Q2. What are the roles and responsibilities of SDET?

Below are the roles and responsibilities of SDET:


  • Participation in design and architectural discussion
  • Understanding the project requirements
  • Creation of Automation framework and perform the testing through the framework
  • Build different test scenarios and tests acceptance criteria’s
  • SDET works with the development team and helps in resolving the issue
  • Creation of defect reports and managing communication with the team


Q3. What are the roles and responsibilities of Agile Tester?

  • He should attend sprint-planning sessions
  • He should attend daily stand-ups
  • He should be able to communicate with stakeholders and business people for a better understanding of the functionality of the software
  • He should communicate with other teams like the development team continuously to understand the actual flow of code and short hand-off demonstrations
  • He should not wait for the development to end and then start testing. The testing should go in parallel with development throughout the sprint
  • He should be able to automate the maximum test cases using effective testing tools

Q4. What is the difference between Quality Assurance and Quality Control?

Quality Assurance involves in process-oriented activities. It focuses on the approaches, techniques, methods, and processes and ensures that they are implemented correctly.


It basically focuses on the prevention of defects in the process used to make a software application.


Quality Control involves in product-oriented activities. It ensures that the approaches, techniques, methods, and processes that are designed in the project are following correctly.


It focuses on the execution of a program or code to identify the defects in the software application.

Q5. What is the difference between Severity and Priority?

Severity is defined as the degree of impact a defect has on the application whereas Priority defines the order in which a defect should be fixed.


For eg.: A site maintaining the employee’s record doesn’t allow to save the record on click of Save button. So this would be a very severe defect as this is blocking the main functionality.


This should be fixed in high priority because primary functionality is breaking.

Q6. Give an example of High Priority and High Severity defect?

Submit button is not working on a login page and customers are unable to login to the application.


For eg.: Any site which allows access to authorized users only by giving the valid credentials and clicking on Login button.


But login button of the page doesn’t allow the authorized user to enter the site. Then this would be the high severity and high priority defect.

Q7. Give an example of Low priority and High Severity defect?

There is a crash in some functionality which is going to deliver after a couple of releases.


For eg: A link provided in FAQ page is not opening but this link is rarely used by end-user. So it can be fixed in some later release. So, this would be a high severity defect because some link of the page is not opening but since this is not used by the user, so it can be set to low priority.

Q8. State 4 differences between Verification and Validation?

Verification Validation It is a process of checking if the software being developed meets the specification.


It is a process of checking whether the specifications that are developed meet the customer’s requirements. It does not involve the execution of the code.


It involves the execution of the code. It is done at the time of development. It is done after the completion of development by the testing team. It describes whether the outputs are as per the inputs. It describes whether the software is accepted by the customer or not.

Q9. What are the phases of the Software Testing Life Cycle?

Q10. What is the difference between Test Scenario and Test Case?

Test Scenario describes any functionality that can be tested.

The test case is a document that contains the steps that have to be executed.


For eg.:


Test Scenario: Login into the application

This test scenario is the functionality of the application and it will include a number of Test cases like:


TC1: Verify whether an email is valid.

TC2: Verify whether valid email id and valid password are entered.

TC3: Verify that proper error messages are displayed if wrong email id or password is entered.

Q11. What is Test Plan?

Test Plan is a document that describes the scope, approach, resources, and schedule of testing activities.


Find the Test Plan template in the next slide:


Q12. What are the components of the Test Plan?

  • Test Strategy
  • Test Objective
  • Entry and Exit Criteria
  • Resource Planning
  • Test Deliverables

Q13. What is Test Script?

Test Script is written in a programming language and is a short program to test part of the functionality.


For eg.: to click any button, we can write the script as:

click(“buttonName”);

Q14. What is the difference between Alpha Testing and Beta Testing?

Alpha Testing is pre-release testing performed by an end-user representative at the developer’s site.

Beta Testing is the testing performed by customers at their own location.


For eg.: When any new Android version is released, then alpha testing is done first with the developer to verify its functioning.


Once alpha testing is completed, Beta testing is done by the end-user to verify that its working fine without any bugs and crashes.

Q15. What is the difference between Sanity Testing and Regression Testing?

Sanity Testing is a surface level testing in which tester checks whether the whole functionality of the software works in a proper way.


Regression Testing is a process of testing changes to programs to make sure that the older functionality still works with the new changes.

Q16. What is Re-testing?

Retesting is a process of checking the bugs that are fixed by the development team.


For eg.: If in any release, say 1.1, some defect is introduced which is fixed by developers and then released to the tester in 1.2 release. Thus in 1.2 release, the tester will again test the defect to verify whether it’s been fixed or not. This process of checking the defect again is called as Re-testing.

Q17. What is Boundary Value Testing?

Boundary Value Testing is testing on boundary conditions, below and above the edges of input and output equivalence classes.


For eg.: Some text box takes only values from 3 to 8.


Minimum boundary value: 3

Maximum boundary value: 8

Testing with Invalid inputs: 2(below range) and 9(above range)


Testing with valid inputs: 3(min),4(min+1),7(max-1) and 8(max)

Q18. Explain Life-Cycle of Defect?


Q19. What is the Traceability Matrix?

Traceability Matrix is a document that shows the relationship between test cases and requirements.

It is prepared before test case designing.


It ensures that all the requirements and change requests are tested.

Q20. How Requirement Traceability Matrix (RTM) is prepared?

For preparing the Requirement Traceability Matrix, follow below steps:


  • Gather all required documents. Documents include Business Requirement
  • Document, Functional Specification Document, Technical Specification Document.
  • List down all the requirements from Business Requirement Document one by one with  Requirement Id#.
  • Go to Functional Specification Document and list all functional requirement for each business requirement.
  • Open Test Scenario or test case document and link available test case ids to respective functional requirements.

Meet The Author

DevLabs Alliance Author

admin


HOD Neoload


DevLabs Alliance TwitterDevLabs Alliance LinkedInDevLabs Alliance Instagram

Author Bio

DevLabs Alliance conducts career transformation workshops & training in Artificial Intelligence, Machine Learning, Deep Learning, Agile, DevOps, Big Data, Blockchain, Software Test Automation, Robotics Process Automation, and other cutting-edge technologies.

INQUIRY

Want To Know More


Email is valid



Phone


By tapping continuing, you agree to our Privacy Policy and Terms & Conditions

“ The hands-on projects helped our team put theory into practice. Thanks to this training, we've achieved seamless collaboration, faster releases, and a more resilient infrastructure. ”
DevLabs Alliance Blogs Page Review
Vijay Saxena

SkillAhead Solutions

Lets get started today!

and get that DREAM JOB

DevLabs Alliance Footer section
DevLabs Alliance LinkedIn ProfileDevLabs Alliance Twitter ProfileDevLabs Alliance Facebook ProfileDevLabs Alliance Facebook Profile
DevLabs Alliance Logo

Gurgaon

USA

1603, Capitol Avenue, Suite 413A, 2659, Cheyenne, WY 82001, USA

DevLabs Alliance ISO 9001

DevLabs Alliance Footer SectionDevLabs Alliance Footer SectionDevLabs Alliance Footer SectionDevLabs Alliance Footer SectionDevLabs Alliance Footer SectionDevLabs Alliance Footer SectionDevLabs Alliance Footer SectionDevLabs Alliance Footer Section

`Copyright © DevLabs Alliance. All rights Reserved`

|

Refund & Reschedule Policy

Privacy Policy

Terms of Use