Package in Java

The package is an encapsulation mechanism to group related classes and interfaces. Example of package in Java – Package rules …

Read more

for each loop in Java

for each loop is also known as enhanced for loop. for each loop in Java introduced in the 1.5 version. …

Read more

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