Java Tests
Preparation for Java tests, interviews and exams
Monday, November 21, 2016
++ operator on variable used multiple times in single line
Write the output of this code:
long l = 10;
System.out.println( "l " + l++ + "; " + l );
Result:
l 10; 11
Friday, November 18, 2016
Database Partitioning
https://en.wikipedia.org/wiki/Partition_(database)
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)