Latest Posts

Java

May 29, 2017

tgugnani

Using custom method Following is the Java code to check if your array contains any specific element. public class ArrayContains { public static void main(String args[]){ i...
Read Article

Java

May 28, 2017

tgugnani

Following is the code to calculate the Average of elements in the Array. import java.util.Scanner; public class ArrayChallange { public static Scanner scanner= new Scanner(System.in);...
Read Article

Java

May 27, 2017

tgugnani

Following is the code to sort an int Array in Java in decreasing order. That means the highest will appear first and the smallest will be in last. package info.FiveBalloons.Examples; import java.u...
Read Article

Java

May 27, 2017

tgugnani

Primitive data type in Java can only store a single value of a particular type. Arrays are used to store multiple values of a similar type into a single variable. Let's straight away see an example of...
Read Article

Java

May 27, 2017

tgugnani

Fibonacci Series are number series in which next number is the sum of previous two numbers. For example, if we consider our first two numbers as 0 and 1, then our fibonacci series will look like. 0 1...
Read Article

Java

May 26, 2017

tgugnani

We will see the code in Java of how to determine a prime number, and then we will extend the same code to print prime number series till 100. A number is prime if it is divisible only by itself and...
Read Article

Java

May 26, 2017

tgugnani

In this post we will understand another category of control flow statements which are used to execute some part of your code multiple times until the condition is met. for loop To understand the for...
Read Article

Java

May 26, 2017

tgugnani

Another way of controlling the flow of your program is with switch statement. Switch gives you an option to test the range of your value and depending on the value you can execute a particular case. F...
Read Article

Java

May 26, 2017

tgugnani

As we have now learnt about variables, operators and expression. Now we can dig into the first control statements for Java. Control Statements defines the control of your program and gives you the abi...
Read Article

AWS

May 25, 2017

tgugnani

Following are the steps to create a new EC2 Instance which has the Apache Solr Stack provided by Bitnami. Login to your AWS console, and go to EC2 Management Console. Click on the Button "Laun...
Read Article