Multiple choice technology programming languages

For a COBOL program -

  1. EXE is created for the called program and DLL is created for the calling program

  2. EXE is created for the calling program and DLL is created for the called program

  3. EXE is created for the both, called program and calling program

  4. DLL is created for the both, called program and calling program

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

In COBOL compilation on Windows, the calling (main) program is compiled into an EXE file, while the called (sub) program is compiled into a DLL for dynamic linking. This separates the executable logic from reusable subroutine modules.