How many clustered and non clustered indexex exists for single table
C
Correct answer
Explanation
SQL Server allows exactly 1 clustered index per table because the clustered index determines the physical order of data storage. A table can have up to 999 non-clustered indexes (older documentation mentioned 249 as a practical limit). Option C correctly shows 1 clustered and 249 non-clustered indexes. The other options show incorrect combinations.