Multiple choice technology programming languages

1.Which of the below is correct about Procedures?

  1. Procedures without EXPORT Keyword can be accessed by other modules within the program.

  2. Procedures with EXPORT Keyword can be accessed ONLY by the module in which it resides.

  3. Procedures can ONLY access local variables.

  4. None of the Above

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

Procedures without the EXPORT keyword are internal to the module and cannot be accessed by other modules, making option 1 incorrect. Procedures with EXPORT can be accessed by other modules, making option 2 incorrect. Procedures can access global variables, making option 3 incorrect. Thus, 'None of the Above' is correct.