Is default
keyword in default methods in Java an optional specifier ?
If not , then what type of specifier is it ?
interface TestInterface
{
// abstract method
public void square(int a);
// default method
default void show()
{
System.out.println("Default Method Executed");
}
}