Multiple choice technology programming languages What do the variable $? contains? Page length of a particular output file The input end-of-line character The return code returned by a command called by the system function. The error code generated by a system library routine. Reveal answer Fill a bubble to check yourself C Correct answer Explanation In Perl, the special variable $? stores the return code (exit status) from the last system function call, child process, or backtick command. A value of 0 typically indicates success, while non-zero values signal errors or specific exit statuses.