Expected results for test: P3-04.pl460 P3-04.pl460 : (define (main) (display "SSU") (newline) (display "Hello World") (newline) (display "The car of '(0 1 2) is 0") (newline) (display "+ - / * modulo round = > < >= < = cond else") (newline) (display "hello 01.2 append if display newline car define number? list? zero? null? string?") (newline) (display "0 'ac 1 '(and or not)") (newline) ) (main) Input file: P3-04.pl460 0 errors found in input file P3-04.cpp : // Autogenerated PL460 to C++ Code // File: P3-04.cpp #include #include "Object.h" using namespace std; int main () { Object __RetVal; cout << Object("SSU"); cout << endl; cout << Object("Hello World"); cout << endl; cout << Object("The car of '(0 1 2) is 0"); cout << endl; cout << Object("+ - / * modulo round = > < >= < = cond else"); cout << endl; cout << Object("hello 01.2 append if display newline car define number? list? zero? null? string?"); cout << endl; cout << Object("0 'ac 1 '(and or not)"); cout << endl; return 0; } PL460 program output: SSU Hello World The car of '(0 1 2) is 0 + - / * modulo round = > < >= < = cond else hello 01.2 append if display newline car define number? list? zero? null? string? 0 'ac 1 '(and or not) C++ program output: SSU Hello World The car of '(0 1 2) is 0 + - / * modulo round = > < >= < = cond else hello 01.2 append if display newline car define number? list? zero? null? string? 0 'ac 1 '(and or not) Differences: < pl460 | cpp > SSU SSU Hello World Hello World The car of '(0 1 2) is 0 The car of '(0 1 2) is 0 + - / * modulo round = > < >= < = cond else + - / * modulo round = > < >= < = cond else hello 01.2 append if display newline car define number? list? hello 01.2 append if display newline car define number? list? 0 'ac 1 '(and or not) 0 'ac 1 '(and or not)