You cannot use the '<>' operator when considering NULL. This behavior is defined in the ANSI SQL-92 standard.
use standard syntax to check for NULL - "IS NULL"
DELETE FROM Entry WHERE EmployeeId = 474 AND Entry_Date = '2016-10-01'
AND (: NULL OR Notes < > 'Invalid Process')