Problem :
Number of non zero integer values of $k$ for which the points ($k,k^2)$ lies inside the triangle formed by the lines $11x+6y+14=0$, $9x+y-12=0$, $2x+5y-17=0$
(a) $0$
(b) $2$
(c) $3$
(d) $4$
I have no clue on this how to solve this problem, request you to please suggest thanks.

First of all you have to calculate all the vertices by intersecting each line with the other ones.
Once you have the vertices, you have the bounding box of the triangle: max and min in x and max and min in y. With that you can discard any $(k, k^2)$ where $k > x_{max}$ or $k < x_{min}$ or $k^2 > y_{max}$ or $k^2 < y_{min}$.
With the remaining pairs $(k, k^2)$ you can calculate the barycentric coordinates for each one to know if they are inside the triangle.