Learning

Bhailang Programming Language

Bhailang

Bhailang is a dynamically typed toy programming language and it is based on an inside joke, written in Typescript, and makes programming more fun. Bhailang is a new programming language introduced by two Indians named Rishabh Tripathi and Aniket Singh, both are software development engineers at Groww and Amazon respectively. You can check the Bhailang… Read More

Complex Number Problem Solved: Coding Ninjas

First Index Of a Number in an Array

Complex Number problems are basically asked in many coding questions. This question is taken from one of the basic challenges in Coding Ninjas. Before starting the actual question, let us know more about the complex numbers for a better understanding of the concepts. Complex numbers are the numbers that are expressed in the form of a+ib where, a,b… Read More

How to create a Maven spring project in Eclipse IDE?

In this blog, we are going to create a simple application of the spring framework using eclipse IDE. Let’s see the simple steps to develop the spring application in Eclipse IDE. 1. Create a new maven project 2. Add spring dependencies in maven project : spring core , spring context 3. Creating beans-java pojo 4.… Read More

Tokens in Java | Explained with Examples

Types of Tokens in Java

Tokens are the smallest individual unit of the program , In other words, they are the building blocks of a language. Basically In Java, the program is a collection of classes and methods, while methods are a collection of various expressions and statements . Moreover, statements and expressions are made up of tokens. Tokens in… Read More