Assume we are testing a function with 3 variables: Variable…
Assume we are testing a function with 3 variables: Variable A: has values 0 and 1 Variable B: has values 0 and 1 Variable C: has values 0 and 1 What is the total 2-way variable value configuration coverage achieved by the following tests: A=0; B=0; C=0 A=0; B=1; C=1 A=1, B=1, C=1
Read DetailsAn e-commerce application uses a decision table to calculate…
An e-commerce application uses a decision table to calculate the final shipping cost and estimated delivery date based on three dependent inputs for a given order: Customer Loyalty Tier (Bronze, Silver, Gold, Platinum, Diamond) Product Category (Electronics, Clothing, Home, Books, Toys, Beauty, Sports, Automotive) Shipping Method (Standard, Expedited, Next-Day, Same-Day, In-Store Pickup) Assuming every possible combination of these inputs triggers a unique business rule, how many total test cases are required to achieve 100% exhaustive coverage of this decision table?
Read DetailsSuppose that you have four inputs: P1 with values X, and Y;…
Suppose that you have four inputs: P1 with values X, and Y; P2 with value Z; P3 with values A, and B; and P4 with values C, D, E. Given this information, which table contains the correct tests for a pairwise combination design of experiments?
Read DetailsSuppose that parking rates for a permit are calculated based…
Suppose that parking rates for a permit are calculated based on the type of vehicle owner (faculty or students) and the location of the parking (garage, lot, street). Faculty may park in the lot or garage for $200. Students may pay $100 for a garage spot and $50 for a street spot. Any other combination is not allowed. Which decision table *best* captures these requirements?
Read Details