questions ________________________________________ question 1) what will happen when you attempt to compile and run this code? abstract class base{ abstract public void myfunc(); public void another(){ system.out.println(“another method”); } } public class abs extends base{ public static void main(string argv[]){ abs a = new abs(); a.amethod(); } public void .. .. ..
SCJP 1.5 syllabus
how is the scjp 1.5 exam different from the scjp 1.4? ยท exam objectives: several important new language features have been added, including enums, generics, static imports, and autoboxing/unboxing. api features added to the exam include java.lang.stringbuilder, java.util.locale, java.util.formater, java.util.scanner. java.util.regex.pattern, and java.util.regex.matcher. java io features have .. .. ..
