Analyze the provided worksheet to identify errors in VLOOKUP syntax and their corresponding reasons:
\[
\begin{array}{|c|c|c|}
\hline
\textbf{VLOOKUP Syntax} & \textbf{Error} & \textbf{Reason} \\
\hline
\texttt{=VLOOKUP(B5, C3:F10, 2, 0)} & \texttt{\#N/A} & The lookup value in cell \texttt{B5} (Kabir) is not found in the first column of the specified range \texttt{C3:F10}. The initial column of the range must contain the lookup value. \\
\hline
\texttt{=SQRT(VLOOKUP(B3, B3:F10, 2, 0) - 100)} & \texttt{\#N/A} & The lookup value in cell \texttt{B3} (Kiara) is absent from the first column of the range \texttt{B3:F10}, leading to VLOOKUP failure. \\
\hline
\texttt{=VLOOKUP(B2, B3:F10, 5, 0)} & \texttt{\#REF!} & The specified column index (5) is out of bounds because the range \texttt{B3:F10} only contains 4 columns. \\
\hline
\texttt{=VLOOKUP(B3, B3:B10, 2, 0)} & \texttt{\#VALUE!} & The column index (2) is greater than the total number of columns in the range \texttt{B3:B10}, which has only 1 column. \\
\hline
\texttt{=VLOOKUP(B6, B3:F10, 0, 0)} & \texttt{\#VALUE!} & The column index (0) is invalid. This value must be a positive integer, starting from 1. \\
\hline
\texttt{=VLOOKUP(B6, B3:F10, 2, 0)/0} & \textbf{Error: Division by zero} & The formula attempts to divide the VLOOKUP result by zero, an mathematically undefined operation. \\
\hline
\end{array}
\]