Correct answer is 11.
Suppose you have n points in a plane making a polygon. In order to create a diagonal you will have to select any one point (from n points), and then select another point which is not adjacent to the previously selected point (n-3 choices).
nC1 × n-3C1
In this expression we are gonna have repeated diagonals (Eg: AB is no different from BA), so we'll divide it by 2
nC1 × n-3C1 = 2 × 44
n × (n-3) = 11 × 8
n = 11
No. of points = No. of sides = 11