Multiple choice technology databases

Identifiers defined only in the package body are public constructs. These are visible outside the package body

  1. True

  2. False

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

Identifiers defined only in the package body (not in the package specification) are PRIVATE constructs, not public. They are invisible outside the package body and can only be used by other subprograms within the same package body. To make identifiers public and visible outside the package, they must be declared in the package specification. Therefore, the statement in the question is false, making option B the correct answer.