Please do Part III
Part I
Problem statement:
Given an array of 'n' non-duplicate integers, find pairs of
integers from the array that make the sum equal to K.
Eg. [1, 2, 7, 11, 6, 9, 5] K= 12
Soln: (1,11), (7,5).
Part II
Write an Oracle for testing this program using Data Flow Testing.
As usual, write down test cases in a tabular form with reasons,
inputs, expected output etc.
Part III
1. Identify the basic blocks in
your...