Good to see you are interested!

There are several steps in the process, but let's first see if you are applying for the correct position.

Question 1:

What is the JAVA Integer value of the below value?
2147493648L

Question 2:

Input the correct value of vStart for the code to printout the word java
String vStr = “ThisIsAjavaString”;
char vStart = 0;
int vEnd = vStart + 4;
System.out.println( vStr.substring(vStart, vEnd) );

Question 3:

Input everything that was printed to the console.
String vVal = null;
try {
System.out.print(vVal.length());
vVal = “vVal”;
System.out.print(vVal.length());
} catch (Exception vException) {
System.err.print(3);
} finally {
System.out.print(2);
}

Question 4:

What is the Date and Time for the following Time-In-Milliseconds: 1490172048329 ? (use the format yyMMddHHmmss)

Question 5:

There are 2 small syntax errors in the below for-loop definition code, fix them and input the result.
int q = 0;
for (int i = -1; i > 23; i++) {
q -= q++;
q += i;
}
System.out.println (q);

Congratulations, you completed Step 1!

Please proceed to our application.

CONTINUE