Multiple choice technology testing

If the ETL source is a Mainframe file without any packed decimal fields, then the test file can be

  1. Created in Mainframe

  2. Created in Windows/DOS

  3. Created in Unix/Linux

  4. All of the above

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

When the ETL source lacks packed decimal fields, the test file is platform-independent because packed decimal is a mainframe-specific binary format that requires special handling. Without this complexity, test files can be created on any platform (Mainframe, Windows/DOS, or Unix/Linux) and will be readable by the ETL process.

AI explanation

Packed decimal (COMP-3) fields are EBCDIC/mainframe-specific binary encodings that don't translate cleanly to other platforms without conversion. Since this source file explicitly has none, the data consists only of plain readable fields (character/zoned data), which are portable across platforms. That means the test file can be created on the Mainframe, on Windows/DOS, or on Unix/Linux equally well — there's no platform-dependent binary format to worry about. Hence 'All of the above' is correct: each individual option (Mainframe, Windows/DOS, Unix/Linux) is independently valid, so the umbrella answer covering all of them is the best choice.