InterviewSolution
| 1. |
What is the default value PL/SQL assigns to a variable when it is declared? |
|
Answer» PL/SQL has subtypes of datatypes. This MEANS subtype is a subset of a datatype. The FOLLOWING are the types and subtypes of Numeric data TYPE in PL/SQL
Signed INTEGER in range -2,147,483,648 through 2,147,483,647, represented in 32 bits
Signed integer in range -2,147,483,648 through 2,147,483,647, represented in 32 bits
Single-precision IEEE 754-format floating-point number
Double-precision IEEE 754-format floating-point number
ANSI specific fixed-point type with maximum precision of 38 decimal digits
IBM specific fixed-point type with maximum precision of 38 decimal digits
Floating type with maximum precision of 38 decimal digits
ANSI specific floating-point type with maximum precision of 126 binary digits (APPROXIMATELY 38 decimal digits)
ANSI and IBM specific integer type with maximum precision of 38 decimal digits
Floating-point type with maximum precision of 63 binary digits (approximately 18 decimal digits) |
|