isLetter method in java with example
isLetter method belongs to java.lang.Character class. It is a static method which takes a character as argument and tells if…
isLetter method belongs to java.lang.Character class. It is a static method which takes a character as argument and tells if…
Java string split In this article, we will take a look at how to split or divide a string based…
What is a marker interface An interface which has no methods is called a marker interface in java. In other…
What is switch statement A switch statement in java is a decision making statement in which one or more block…
Java ternary operator Literal meaning of ternary is three. As the name suggests, a ternary operator is an operator which…
Java static keyword static is a reserved word(or keyword) in java. It can be applied before a Writing static keyword…
Instance variables Instance variables belong to an object and each object has its own copy of instance variables.Thus, they represent…
Abstract method in java is a method which does not have an implementation or a body where it is declared.It…
Java object Object is a fundamental entity of any java application and every developer creates objects while coding.An object is…