1.Which of the following command can be used to call a Module?
-
CALL command
-
CALLB command
-
CALLP command
-
Module cannot be called
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.