Suppose a reference variable of type Long called myLong is already declared. Create an object of type Long with the initial value of two billion and assign it to the reference variable myLong.

LANGUAGE: JAVA

CHALLENGE:

Suppose a reference variable of type Long called myLong is already declared. Create an object of type Long with the initial value of two billion and assign it to the reference variable myLong.

SOLUTION:

myLong = new Long(2000000000);