Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

9- One of the fields on a website validates numeric values as follows: values le

ID: 3836420 • Letter: 9

Question

9- One of the fields on a website validates numeric values as follows: values less than 0 (zero) are rejected, values between 1 and 100 are accepted, values greater than 100 are rejected. Design Test Cases to cover the described scenarios, use a table and actual input values for the Test Cases.

10. How do you test the login feature on a banking online web site? (provide real examples to cover functional and non-function testing)

11.Suppose you search for classes to register for on UNCC.EDU. How can you verify that the results you see are actual values that you are supposed to see?

12.How do you perform Integration Testing? Support your answer with an example of a system that contains multiple components.

13.Using the following code, how many test cases are required for 100% decision coverage? Provide actual values to support your answer:

14-Using the following code, draw a control-flow diagram:

3,0 1 if width length 2 then biggest dimension width 3 if height width thenbiggest dimension height s end if 6 else 7 biggest dimension length 8 if height length thenbiggest dimension height 10 end if 11 end if

Explanation / Answer

Test Id

Test Scenario

Test Input

Accepted/Rejected

T1

Check TextField with valid numerical value

1

Accepted

T2

Check TextField with valid numerical value

50

Accepted

T3

Check TextField with valid numerical value

100

Accepted

T4

Check TextField with Invalid numerical value

0

Rejected

T5

Check TextField with Invalid numerical value

-6

Rejected

T6

Check TextField with Invalid numerical value

-99

Rejected

T7

Check TextField with Invalid numerical value

101

Rejected

T8

Check TextField with Invalid numerical value

500

Rejected

T9

Check TextField with Invalid alpha value

Abc

Rejected

T10

Check TextField with Invalid Special character value

@#$#^$%&$

Rejected

T11

Check TextField with Invalid alphanumeric value

Fdgfd33

Rejected

Test Id

Test Scenario

Test Input

Accepted/Rejected

T1

Check TextField with valid numerical value

1

Accepted

T2

Check TextField with valid numerical value

50

Accepted

T3

Check TextField with valid numerical value

100

Accepted

T4

Check TextField with Invalid numerical value

0

Rejected

T5

Check TextField with Invalid numerical value

-6

Rejected

T6

Check TextField with Invalid numerical value

-99

Rejected

T7

Check TextField with Invalid numerical value

101

Rejected

T8

Check TextField with Invalid numerical value

500

Rejected

T9

Check TextField with Invalid alpha value

Abc

Rejected

T10

Check TextField with Invalid Special character value

@#$#^$%&$

Rejected

T11

Check TextField with Invalid alphanumeric value

Fdgfd33

Rejected