2. In SQL Server 2012, no fully contained database, a database is either NONE or partially contained.
from BOL:
CREATE DATABASE database_name
[ CONTAINMENT = { NONE | PARTIAL } ]
[ ON
[ PRIMARY ] <filespec> [ ,...n ]
[ , <filegroup> [ ,...n ] ]
[ LOG ON <filespec> [ ,...n ] ]
]
[ COLLATE collation_name ]
[ WITH <option> [,...n ] ]
[;]
CONTAINMENT
Specifies the containment
status of the database. NONE = non-contained database. PARTIAL = partially
contained database.
In SQL Server 2012 the contained database feature is currently available
only in a partially contained state. A partially contained database is a
contained database that allows the use of uncontained features.