You can put this solution on YOUR website! Find the number of seven digit numbers that can be formed from the two digit set {0,1}.
---
The left-most digit has to be a 1.
The other 6 positions can be either 0 or 1.
---
# of numbers: 1*2^6 = 64
===============================
cheers,
stan H.