Core java
 14 December 14 December- BigDecimal divide- In this tutorial we will see about BigDecimal‘s divide method. BigDecimal’s divide method is used to divide one BigDecimal by another. You can specify scale and rounding mode to get the output according to your need. There are 6 overloaded versions of divide method. Syntax [crayon-69039eb17edb4713222002/] Return type returns BigDecimal BigDecimal round example Let’s understand […] 
 14 December 14 December- BigDecimal round- In this tutorial, we will see about BigDecimal‘s round method. BigDecimal’s round method is used to round the BigDecimal based on MathContext setting. Syntax [crayon-69039eb17f579231770501/] Return type returns BigDecimal rounded with MathContext setting BigDecimal round example Let’s understand BigDecimal method with the help of example [crayon-69039eb17f580851430111/] Above program will generate below output. 80.23776 is rounded […] 
 13 December 13 December- Java Random nextDouble- In this tutorial, we will see Java Random nextDouble method.It is used to generate random double. It returns the next pseudorandom, uniformly distributed double value between 0.0 and 1.0 from this random number generator’s sequence. Syntax [crayon-69039eb17faf7435728007/] Here random is object of the java.util.Random class. Return returns random double. Example Let’s understand with the help […] 
 13 December 13 December- Java Random nextInt- In this tutorial, we will see Java Random nextInt method.It is used to generate random integer. There are two overloaded versions for Random nextInt method. nextInt() Syntax [crayon-69039eb17ffaf013483206/] Here random is object of the java.util.Random class. Return returns random integer. Example Let’s see a very simple example: [crayon-69039eb17ffb4722698106/] Output: Random Integer: 1326186546 Random Integer: 203489674 […] 
 13 December 13 December- Java – generate random String- In this tutorial, we will see how to generate random String in java. There are many ways to generate random String.Let’s explore some of ways to generate random String. Using simple java code with Random You can use SecureRandom class to generate random String for you. Let’s understand with the help of example. [crayon-69039eb180416352904525/] Output: […] 
 13 December 13 December- Random number generator in java- In this tutorial, we will see about random number generators.You might have requirement where you want to generate random numbers to perform some operation. For example: Let’s say you are creating a game which uses dice for each player’s turn. You can put logic to generate random number whenever the player uses dice. There are […] 
 17 November 17 November- Java program to print floyd’s triangle- In this post, we will see how to print Floyd’s triangle in java. Problem You need to print Floyd’s triangle as below for n=5. Floyd’s triangle **************** 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Floyd’s triangle in java Let’s create class "FloydTriangleMainExample.java" as below [crayon-69039eb180e9f100375037/] When you […] 
 17 November 17 November- Print Numbers Using Multiple Threads in Java- In this post, we will see how to print numbers using multiple threads in java.It is similar to printing odd-even numbers using two threads in java. Problem You are given 3 threads. You need to print sequence using these 3 threads.You need to print in natural order up to MAX. For example: Let’s say you […] 
 10 November 10 November- Java String matches example- In this post, we are going to see String’s matches method. String’s matches method String matches method is used to check whether the string is matched with the given regular expression.In normal terms, we can pass various regular expressions to check if the specified string matches with that regular expression.If the matches get successful return […] 
