Okay, no cheating now. That is, no running the code until you’ve guessed. What is the output of this code? program Project90; {$APPTYPE CONSOLE} {$R *.res} uses System.SysUtils; var S: TObject; begin try S := nil; if S is TObject then begin Writeln(‘Yup’); end else begin Writeln(‘Nope’); end; except on E: Exception do Writeln(E.ClassName, ‘:…