This is a very simple recursive formula. Are the options provided wrong?
$$ T(n) = T\left(\frac{n}2\right) + 2 $$ with $T(1) = 1$. What's the solution when $n=2^k$ ($n$ is a power of $2$)?
The answer I got is: $2\log(n) -1$
The options given were
$a)2(\log(n) + 1)$
$b)2\log(n)$
$c)\log(n) + 1$
$d)2\log(n) +1$
Your answer fails fairly early on, since $$T(2)=T(1)+2=3$$ so $T(2)$ is not $2\log(2) - 1 = 2\cdot 1 -1 = 1$. My advice: always check your solutions.