Engineering Full Stack Apps with Java and JavaScript
This page contains a set of basic exercises that you need to complete along with your beginning Java notes. Exercises are divided into topics similar to the topics mentioned in the multiple choice questions. Practice these alongside reading notes and answering the multiple choice questions.
Notes: https://javajee.com/book/java-101-getting-started-with-java
Write a HelloWorld program. Write a simple program with a main method that prints Hello World.
Use package and import statement.
Create a class Hello1 that is part of a package com.javajee.package1.
Add the standard main method that will be invoked by JVM.
Add one more method main with same signature as the standard main class, but with no arguments.
Compile and execute it.
Create another class Hello2 that is part of another package com.javajee.package2.
Import the class Hello1
Add the standard main method that will be invoked by JVM.
Invoke the main method of Hello1 that does not take any arguments from this main method as: Hello1.main();
Remove the import statement and invoke the same method using the fully qualified name of the class.
Without answers: set-2
Notes: https://javajee.com/book/java-core-classes-objects-variables-and-methods
Write a program with static, instance and local variables.
Write a class that has 2 variables of type int: myStaticVar, myInstanceVar and myLocalVar as a static instance and local variable respectively.
Assign values to static and instance variables through appropriate initialization blocks, and local variable within the method where it is defined.
Print their values from main method in most appropriate way.
Write a program to demonstrate static import.
Create class Abc in package com.javajee.examples.First with a static variable myStaticVar.
Assign it a value of 10.
Create another class Def in the package com.javajee.examples.second.
Import myStaticVar of class Abc through static import and print its value from a main method.
Without answers: set-5
Create a Calculator class.
Create a class Calculator with two static methods add and subtract, that accept two integers and does addition/subtraction and return an integer result.
Pass values, get the result and print them all from main method.
Without answers: set-8
Create a class with overloaded constructors.
Create a class with two overloaded constructors: one that accept an int and other that accept two int.
Invoke the one that accept only one int from the main method for creating an object.
The constructor should then call the other constructor passing in the passed in argument as the first argument and some default value for the second argument.
Constructor 1 should print "I am constructor that accept an int: value" where value is the value passed in and constructor 2 should print "I am a constructor that accept two int: value1, value2" where value1 and value2 are the values passed in as parameters.
With answers: set-10
Without answers: set-11
Notes: 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.
Print both values from the method where the local variable is defined in the order: local variable, instance variable.
With answers: set-12
Without answers: set-13
Create a program that demonstrates a switch statement with default case. Add appropriate break statements.
Create a program that demonstrates an if, else if and else.
Without answers: set-15
Create a for loop, while loop and do-while loop that print from 1 to 10.
Without answers: set-18
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.
Without answers: set-21
Create an interface InterA with a single method. Create a class that implement that interface.
Create an Abstract class with one abstract and one concrete method. Create a concrete child class that extend the abstract class.
Without answers: set-24
Write a program to demonstrate casting. Create class Abc. Create class Def that extend from Abc. Create a method m1() that print "I am m1 in Def" only in Def. Create an object of Def and assign it to a reference of Abc. Use casting to invoke the method m1() using the reference of type Abc using casting.
With answers: set-26
Without answers: set-27
Write a method that accept two strings and check if two strings are anagrams (or permutations of each other). Example: "aaba" and "aaab" should return true. But "aaba" and "aabb" should return false. Test the method by passing positive and negative cases from the main method.
Without answers: set-29
Create an ArrayList object for holding String objects and an assign it to a List reference type. Add 5 string values to it. Print it using a for each loop.
Create an ArrayList object for holding String objects and an assign it to a List reference type. Add 5 string values to it. Print it using an Iterator without using the for each loop.
With answers: set-31
Notes: https://javajee.com/book/java-core-exception-handling
Create a program to demonstrate the keywords throw, throws, try, catch and finally.
Without answers: set-33, set-35
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.