## Question 1 Can we find the word $magnanimous$ in the given grid? ```text [['K', 'I', 'C', 'D', 'L', 'J', 'M', 'R'] ['V', 'M', 'S', 'P', 'C', 'F', 'A', 'G'] ['C', 'A', 'G', 'D', 'J', 'O', 'L', 'O'] ['Q', 'Z', 'N', 'T', 'F', 'X', 'C', 'T'] ['R', 'L', 'A', 'N', 'I', 'R', 'G', 'D'] ['J', 'A', 'W', 'Y', 'M', 'O', 'U', 'A'] ['Z', 'A', 'P', 'D', 'R', 'C', 'S', 'D'] ['Y', 'V', 'A', 'F', 'P', 'L', 'Z', 'T']] ``` ### Options 1. Yes Correct We can find the word at [[1, 1], [2, 1], [2, 2], [3, 2], [4, 2], [4, 3], [4, 4], [5, 4], [5, 5], [5, 6], [6, 6]] indices. ---------------------------- 2. No Incorrect ---------------------------- --------------------------------------------- ## Question 2 Can we find the word $callous$ from the given grid? ```text [['D', 'O', 'C', 'A', 'L'] ['O', 'J', 'N', 'L', 'Z'] ['T', 'Z', 'Y', 'L' ,'K'] ['G', 'Y', 'R', 'O', 'U'] ['F', 'K', 'M', 'W', 'P']] ``` ### Options 1. Yes Incorrect ---------------------------- 2. No Correct ---------------------------- ---------------------------------------------