SCJP is a certification for programmers experienced using the Java programming language.
In the following program class ZiggyTest2 { public static void main(String[] args){ double x = 123.456; char c = 65; int i = 65; System.out.…
java formatting scjp ocpjpI am reading for SCJP and I have a question regarding this line: Identifiers must start with a letter, a …
java unicode identifier scjpI was just studying OCPJP questions and I found this strange code: public static void main(String a[]) { System.out.…
java floating-point nan scjp ocpjpWhy in Java can we catch an Exception even if it is not thrown, but we can't catch it's subclass (…
java scjpIf you have an enum such as enum Coffee { BIG, SMALL } and a class that has an instance variable like …
java enums scjpOk I know this might sound a bit silly, as it depends on the person, but on average how much …
java scjpI am currently studying for the SCJP certification using the Sierra and Bates Study Guide and in many of the …
java exception compilation scjpI'm practising for the SCJP exam using cram notes from the Internet. According to my notes the >> operator …
java bit-shift scjppublic class Java{ public static void main(String[] args){ final byte x = 1; final byte y = 2; byte z = x + y;//ok …
java int variable-assignment scjp ocpjp