If I type:
void doThis(){ System.out.println(\"Hello Stackoverflow.\"); }
what is the default scope of doThis()?
doThis()
Java 8 now allows implementation of methods inside an interface itself with default scope (and static only).