Q17Single correct5 Marks1 Sep 2024
Consider the pseudocode discussed in the previous question (Question 6).
When will the procedure checksomething(B, i) return True?
```
Procedure checksomething(B, i)
foreach j in columns(B){
if((i != j) and (B[i][j] == 0)){
return(False)
}
}
return(True)
End checksomething
```