ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
Which of the following lines should be added to complete the "if(op[pos] == '|')" part of the code?
Correct Answer: D — False[row][col] += False[row][pos] * False[pos+1][col]; True[row][col] += t_row_pos * t_pos_col - False[row][pos] * False[pos+1][col];
The following lines should be added:
False[row][col] += False[row][pos] * False[pos+1][col];
True[row][col] += t_row_pos * t_pos_col + False[row][pos] * False[pos+1][col];