Multiple choice technology mainframe Complete correctly: When calling a subroutine with the clause CALL 'SUBROUT1',... the external subroutine SUBROUT1 will be executed, bypassing any internal subroutines. the internal subroutine SUBROUT1 will be executed; external subroutines aren't called. the internal subroutines will be searched for SUBROUT1; only if there isn't an internal one, the external SUBROUT1 will be executed. an error will occur; subroutine names must never be coded between quotes. Reveal answer Fill a bubble to check yourself A Correct answer Explanation In COBOL, when calling a subroutine using a literal string like CALL 'SUBROUT1', the compiler resolves this as a call to an external program or subroutine, bypassing any internal program structure.