• 10 October

    Java program to print table of number

    In this post we will see how to print table of number in java. It is good program to practice for loop in java. [crayon-6a297511a536e250156793/] Output: Enter a Number : 8 Table of 8 is 8 * 1 = 8 8 * 2 = 16 8 * 3 = 24 8 * 4 = 32 […]

  • 09 October

    Java program to calculate grade of students

    In this post, we will see how to calculate grade of students in java. Student’s grade is decided by average of marks.It is good program to practice execution of if statements in java. Here is simple program to calculate grade of students [crayon-6a297511a7710922082575/] Output: Enter Marks for 5 Subjects : 50 60 70 80 90 […]

  • 09 October

    Find Vowels in a String

    In this post, we will see how to find and count vowels in a string. Find Vowels in a String If any character in String satisfy below condition then it is vowel and we will add it to Hashset. character==’a’ || character==’A’ || character==’e’ || character==’E’ || character==’i’ || character==’I’ || character==’o’ || character==’O’ || […]

  • 09 October

    [Fixed] Reached end of file while parsing

    In this post, we will see how to solve reached end of file while parsing in java. We generally get this error when we forgot to end code of block(class/method) with }. Let’s understand this with the help of example. [crayon-6a297511ad7c6088822513/] When you compile above java file, you will get below error. java:8: reached end […]

  • 06 October

    Java remove last character from string

    Learn about how to remove last character from String in java using different ways.

  • 06 October

    2d Arraylist java example

    In this post, we will see how to create 2d Arraylist in java. Best way to create 2d Arraylist is to create list of list in java. [crayon-6a297511adabe324803070/] Let’s create a program to implement 2d Arraylist java. [crayon-6a297511adac7850588093/] Output: 2nd element in list3 : List3_Str2 3nd element in list1 : List1_Str3 1st element in list2 […]

  • 06 October

    Java isNumeric method

    In this post, we will see how to implement isNumeric method in java. There are many way to check if String is numeric or not. Let’s see one by one. Using regular expressions You can use below regular expression to check if string is numeric or not. [-+]?\\d*\\.?\\d+ [crayon-6a297511ae183219471033/] Output: 223 is numeric : true […]

  • 06 October

    Convert char to lowercase java

    You can use Character class’s toLowerCase method to convert char to lowercase in java. Method signature [crayon-6a297511ae52a851927600/] Parameters ch is primitive character type. Return type return type is char. If char is already lowercase then it will return same. [crayon-6a297511ae533018832367/] When you run above program, you will get below output: a y b z That’s […]

  • 06 October

    Convert char to uppercase java

    You can use Charater class’s touppercase method to convert char to uppercase in java. Method signature [crayon-6a297511afb55755580288/] Parameters ch is primitive character type. Return type return type is char. If char is already uppercase then it will return same. [crayon-6a297511afb60067013481/] When you run above program, you will get below output: A Y F U That’s […]