Multiple choice technology programming languages

1.Which of the following command can be used to call a Module?

  1. CALL command

  2. CALLB command

  3. CALLP command

  4. Module cannot be called

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

In AS/400, modules (*MODULE) are objects created from compiled source that contain executable code but cannot be directly called. To use a module, it must first be bound into a program (*PGM) or service program (*SRVPGM). Once bound, the program can be called using CALL. The CALLB command is for bound procedures in service programs. Modules themselves cannot be directly invoked - option D is correct.