• Articles

Design the test cases and test the program of Quadratic Equation by using Decision Table Based testing

6 years ago

Program If you're interested to see "Quadratic Equation Problem " code, then the link is here with tested test cases. Decision Table Based Testing In… Read More

  • Articles

Wap to convert degree to radian?

5 years ago

Program: #include<stdio.h> int main() { int degree; printf("Enter degrees = "); scanf("%d",&degree); printf("\n %d degrees are equivalent to %.2f radians\n\n",degree,(float)(3.14*degree)/180); return 0; } Output:   Read More

  • Articles

Software Testing Practical Questions

3 years ago

1. Design the test cases and test the program of following problems by using BVT/Robustness testing Quadratic Eqn BVT Robustness testing Triangle problem BVT Robustness… Read More

  • Articles

Design the test cases and test the program of Triangle problem by using Equivalence Class testing

1 year ago

You can check out the "Triangle problem" program along with its tested test cases here. In triangle problem, we require to identify output and input… Read More

  • Articles

Design the test cases and test the program of previous date problem by using Equivalence Class testing

4 years ago

In this article we'll be creating test cases for previous date problem using Equivalence Class testing. In this technique, we split input domain into two… Read More

  • Articles

C Program for Quadratic Equation

3 years ago

The program calculates whether a quadratic equation has real roots or imaginary roots. A quadratic equation is a polynomial equation, having highest degree of two.… Read More

  • Articles

Design the test cases and test the program of Quadratic Equation problem by using Equivalence Class testing

6 years ago

In Equivalence class testing, we require to separate valid input and output domain from invalid inputs and outputs. And then after test cases are formed.… Read More

  • Uncategorized

Design the test cases and test the program of Previous Date problem by using Robustness Testing

6 years ago

In previous date problem, we will test our code using Robustness Testing to check whether it can provide expected the previous date as an output… Read More

  • Articles

Design the test cases and test the program of Previous Date problem by using Boundary Value Analysis

6 years ago

In this, we will test our program to check whether it can give the previous date as an output or not. We are supposing interval… Read More

  • Articles

Design the test cases and test the program of Triangle problem by using Robustness Testing

6 years ago

A polygon with 3 sides having any of the side greater than the sum of its other two sides cannot be considered as triangle. On… Read More