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.
What is the JAVA Integer value of the below value?
2147493648L
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) );
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);
}
What is the Date and Time for the following Time-In-Milliseconds: 1490172048329 ? (use the format yyMMddHHmmss)
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);