if-else in Golang

Similar to all other programming languages if-else statements are available in Golang. We can use the if-else statement to execute …

Read more

Java Coding Standards

Whenever we are writing any Java code we have to follow some coding standards, These coding standards are followed in …

Read more

Anonymous Arrays In Java

Sometimes we can declare array without name such type of arrays are known as anonymous arrays. The main purpose of …

Read more

Hello World in Go

Here we are going to write our first Program in Go languages i.e., “Hello world”. We can also say that …

Read more

Array in Java

An Array is a collection of similar types of data with contiguous memory location. An array can store more than …

Read more