*If we a class has 20 fields like id,location,exits etc etc then instead of writing all fields to a ... Read More
Quantifiers are used to replace how many times a character is present in the String ``` Str ... Read More
Telehpone number validator reg expression is below For a telephone number validator we need a reg ... Read More
More examples of regular expressions in java ``` String challenge1 = "I want a bike."; /* ... Read More
Differences between abstract classes and interfaces * Abstract classes can have variables that ar ... Read More
Wrapper Classes are used to convert from primitive data types to objects or vice versa Example i ... Read More
If we use hashmap items will not be added to the map in an order ``` Map myMap = new Hash ... Read More
There are two ways to write a program in Java 1.Look before you leap - check all the conditions ... Read More
Try with resources is available since java 7. So in order to use try with resources we need to go to ... Read More
* We know that Buffered reader and writers read and write data in big chunks * Byte Streams can be ... Read More