Multiple choice technology databases

What's the maximum value can an INT data type hold?

  1. 2,147,483,647

  2. 2,147,483,648

  3. 4,294,967,295

  4. 4,294,967,296

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

A signed INT in SQL Server holds values from -2,147,483,648 to 2,147,483,647. Option C (4,294,967,295) would be the maximum for an unsigned INT, but SQL Server INT is signed. Option D exceeds even the unsigned maximum.