In Oracle SQL/PL/SQL, adding NULL to a number yields NULL (5 + NULL is NULL, not 5), whereas concatenating NULL with a string ignores the NULL ('PL/' || NULL || 'SQL' evaluates to 'PL/SQL'). Since the first expression evaluates to NULL, the statement is false.