Engineering Full Stack Apps with Java and JavaScript
Notes:
Inner class: https://javajee.com/book/java-core-classes-objects-variables-and-methods
Create an interface InterA with a single method. Create an anonymous inner class that implement that interface and invoke that method.
Notes: https://javajee.com/book/java-core-exception-handling
Create a program to demonstrate the keywords throw, throws, try, catch and finally.
With answers: set-32, set-34
https://javajee.com/book/java-core-working-with-arrays
LinkedList notes can be found at: data-structures-and-algorithms-coding-problems-in-java.
Notes: https://javajee.com/book/java-core-object-oriented-programming
Create class Abc in a package with a protected variable. Create another class Def in another package extending the class Abc and print the value of inherited protected variable.
With answers: set-20, set-22
https://javajee.com/book/java-core-operators-decision-and-looping-constr...
Program with instance variable and local variable.
Write a program with an instance variable and local variable with same name.
Assign different values along with their declarations.