Friday Java Quiz: Know Your java.beans Classes
Adam reminded me that I haven't posted my Friday Java Quiz yet. So here's a quick one: What will this program print:
public class Foo {
public static void main(String[] args) {
System.out.println(
java.beans.Introspector.decapitalize("HTMLParser"));
}
}
The same rules: no actually using the compiler or searching the internet for answers.