MCQOPTIONS
Saved Bookmarks
| 1. |
Consider the following implementation of the Wagner Fischer algorithm:Which of the following lines should be inserted to complete the below code? |
| A. | Arr[i][j] = min |
| B. | Min = arr[i-1][j-1] 1, |
| C. | Min = arr[i-1][j-1]. |
| D. | Min = arr[i-1][j-1] + 1, |
| Answer» D. Min = arr[i-1][j-1] + 1, | |