Question: Which option?when placed in the blank space?establishes the PersonlD column as the primary key for the table with a nonclustered index?

  1. `INDEX ON PersonID (PRIMARY KEY PK_People)`
  2. `ADD NONCLUSTERED PRIMARY KEY CONSTRAINT PK_People ON PersonID`
  3. `CONSTRAINT PK_People PRIMARY KEY NONCLUSTERED (PersonID)`
  4. `PRIMARY KEY CONSTRAINT (PersonID) NONCLUSTERED INDEX`

Answer: The correct answer of the above question is Option D:`PRIMARY KEY CONSTRAINT (PersonID) NONCLUSTERED INDEX`