What will be the output of the following scripts?
SET NUMERIC_ROUNDABORT ON SET ARITHABORT ON GO DECLARE @c NUMERIC(5, 2), @a NUMERIC(5, 4), @b NUMERIC(5, 4) SET @a = 1.1234 SET @b = 1.1234 SELECT @c = @a + @b SELECT @c
A. 2.24
B. 2.25
C. Error message: Arithmetic overflow error converting numeric to data type numeric.
D. 2.2468
Answer:[C]
Highlight to find out the answer.
No comments:
Post a Comment