Answer:
Exception abend = new Exception( "ABEND 013");
Explanation:
There are few ways of declaring and initialising a variable.
First, the variable is Initialised along side the declaration statement.
Second, the variable is first declared on a line then Initialised on another line.
The syntax for (1) is
Variable-type Variable-name = new Variable-type ("value");
With this, the question becomes
Exception abend = new Exception( "ABEND 013");