I know it is the Fibonacci recurrence relation and I looked at these two posts.
How many $N$ digits binary numbers can be formed where $0$ is not repeated
How many length n binary numbers have no consecutive zeroes ?Why we get a Fibonacci pattern?
But I don't understand how i can apply it to this particular problem.
How do i know what all the 9 digit binary numbers are and how many of them do not contain consecutive zeros? How would i do it for 12 digit binary numbers?

Facts:
Solution technique:
Therefore, the closed form of $a(n)$ is:
$$a(n)=f(n+2)=\frac{1}{\sqrt5}(\frac{1+\sqrt5}{2})^{n+2}-\frac{1}{\sqrt5}(\frac{1-\sqrt5}{2})^{n+2}$$
How many possible 9-bits strings?
$2^9$
How many of 9-bits strings do not contain consecutive zeros?
$$a(9)=f(11)=\frac{1}{\sqrt5}(\frac{1+\sqrt5}{2})^{11}-\frac{1}{\sqrt5}(\frac{1-\sqrt5}{2})^{11}$$