Choose the data type not supported by SQL Server
-
varchar
-
int
-
text
-
binary
-
Image
C,E
Correct answer
Explanation
SQL Server has deprecated the legacy 'text' and 'Image' data types in favor of varchar(max) and varbinary(max). While still functional for backward compatibility, they are not recommended for new development. Varchar, int, and binary are fully supported modern types.