Functional Testing Question:
Download Questions PDF

Suppose I have three text fields, one should accept a string as input,
second text box should accept a float as input and
the third text box is for output.
the output should be an integer. what are the possible test cases we can write for the above functionality?

Functional Testing Interview Question
Functional Testing Interview Question

Answer:

1.verify that the first field is accepting string.
2.verify that the first field is not accepting any thing other than a text(numbers(purely numbers with out any string data type) null characters, special characters)
3.verify that the second field is accepting float values.
4. verify that the second field is not acepting any thig other than float.
5.verify the output when the above conditions are met, o not.

Download Functional Testing Interview Questions And Answers PDF

Previous QuestionNext Question
Suppose a Page/Form has 4 Mandatory fields to be entered before you Submit.
How many no. of test cases are required to verify this?And What are they?
Tell me how the Functional Test Cases could be mapped?