• Prime Number

    Prime Number is a number greater than 1 and divided by 1 or itself only. Prime number can be divided only by itself or 1 and not by any other number. 0 and 1 are not a Prime Number and 2 is the only even Prime Number. Example of Prime Number : 2, 3, 5,…

    Learn More

  • Palindrome

    For a String if the reverse of a String is the same as the original String, then that String is called a Palindrome String Example : Malayalam For a Number if the reverse of a Number is equal to the same Number, then that number is called a Palindrome Number Example : 4554, 1221 Following programs illustrate…

    Learn More

  • Fibonacci Series

    Number series in which next number is the sum of previous two numbers is called Fibonacci Series Example : 0, 1, 1, 2, 3, 5, 8, 13, etc. Fibonacci Series in Java can be written in following two ways : 1) Without Recursion2) With Recursion Following two programmes illustrate Fibonacci Series Using Recursion & without…

    Learn More

  • Method

    Java Method Method in Java is a block of code which is used to execute specific tasks for which it is written and return the result to the caller.A Java method can perform some specific task without returning anything.It is used for code reusability and also increases code readability. It also allows to break program…

    Learn More

  • Naming Convention

    Java Naming Convention Java naming convention is a set of rule to follow to name the identifiers such as class,variable,package,constant, method, etc. Java follows CamelCase naming convention for writing names of methods, variables, classes, packages, and constants.It consists of compound words or phrases such that each word or abbreviation begins with a capital letter or…

    Learn More

  • Keywords

    Java Keywords Java keywords are the reserved words which have a predefined meaning to the Java compiler. These predefined words cannot be used as a variable or object name or class name and if we use it we will get a compile error. List of Java Keywords : abstract: It is used to declare an…

    Learn More

anagram (1) anagramstring (1) android (2) array (2) arraycomparator (1) arrayssort (1) break (1) charactercount (1) chararray (1) collections (1) continue (1) decisionmaking (1) decisionmakingstatements (1) dowhileloop (1) evenlength (1) evenlengthwords (1) forloop (2) goto (1) hashmap (1) heapsort (1) if (1) ifelse (1) ifelseif (1) ifelseifladder (1) insertstring (1) iteration (2) java (36) javaarray (1) javabreak (1) javacharactercount (1) javacollections (1) javacontinue (1) javadowhileloop (1) javaforloop (1) java garbage collector (1) javagoto (1) javahashmap (1) javaheapsort (1) javaif (1) javaifelse (1) javaifelseif (1) javaifelseifladder (1) javainsertstring (1) javaiteration (1) javajumpstatement (1) javajumpstatements (1) java keyword (4) javakeyword (2) javakeywords (2) javalabel (1) javaloop (1) javaloops (1) javamergesort (1) javanestedif (1) java oops (2) javapalindrome (1) javaprogram (25) javaprogramming (17) javaquicksort (1) javareturn (1) javareversestring (1) javareversingstring (1) javasearching (2) javasorting (6) java static (1) javastring (7) javastringcount (1) javastringintostring (1) javastringpalindrome (1) javastringprogram (6) javastringsort (1) javaswitchcase (2) javawhileloop (1) jump (1) jumpstatement (1) jumpstatements (1) kernel (1) keyword (5) label (1) loop (3) mergesort (2) nestedif (1) oops (2) palindrome (2) quicksort (1) recursion (2) return (1) reversestring (1) reversingstring (1) searching (2) set (1) sort (1) sorting (7) string (7) stringbuffer (1) stringbuilder (2) stringintostring (1) stringpalindrome (1) switchcase (2) whileloop (1)

Scroll to Top