Neelakandan R

Neelakandan R @neelakandan_ravi

About: I have worked in bank for 8 month and after some gap in my career,now currently started learning full stack java to restart my career...😜

Location:
Chennai
Joined:
Dec 19, 2024

Neelakandan R
articles - 83 total

Java Challenge: Can You Explain This Bitwise + Recursive Arithmetic Program?

Given the following Java class containing four custom methods — findsum(), findsub(), multi(), and...

Learn More 0 2Aug 5 '25

Happy Numbers,Trapping of Rainwater

While scrolling through LinkedIn, I came across a question about Happy Numbers. I solved it, and it...

Learn More 7 1Jul 31 '25

simple ATM Project in Java-covering full CRUD (without DB, using console + Java basics).

Here's a simple ATM Project in Java that includes Account Creation, View, Deposit, Withdraw, and...

Learn More 6 1Jul 27 '25

How the insert Method Works in This Java Linked List Functionality of insert

Can you explain how the insert method works in this Java linked list implementation, and what role...

Learn More 9 0Jul 23 '25

CURD Operation in java using JDBC

First Create Database: neelakandan@neelakandan-HP-Laptop-15s-eq2xxx:~$ sudo -i -u postgres [sudo]...

Learn More 6 1Jul 20 '25

Java 8 Features

Lambda Expression:()-> It is a way to write method in short way and create anonymous...

Learn More 6 2Jul 5 '25

Multiplication Table Generator using HTML, CSS, and JavaScript

Introduction In this blog, I’ll walk you through a simple web project I created — a Multiplication...

Learn More 11 0Jun 5 '25

DOM and Array in JavaScript

What is the DOM? The DOM is a programming interface provided by the browser that represents the...

Learn More 6 0Jun 2 '25

Global variables

Global Variables Global variables in JavaScript are those declared outside of any function or block...

Learn More 5 0May 29 '25

JavaScript,Method,Datatype

What is JavaScript ? JavaScript is the world's most popular programming language. JavaScript is the...

Learn More 6 0May 28 '25

NumberGuessingGame with springBoot and java

NumberGuessingGame package pratice; import java.util.Scanner; import java.util.Random; public...

Learn More 6 0May 17 '25

Remove Vowel-java,PasswordValidator,Regex,Password Valitation

1)Remove Vowel package pratice; import java.util.Scanner; public class Vowel { public static...

Learn More 6 0May 15 '25

Login page using HTML AND CSS

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> ...

Learn More 5 0May 12 '25

Portfolio page using HTML AND CSS

Tag Used: <!DOCTYPE html> <html lang="en"> <head> <meta...

Learn More 8 0May 12 '25

GIT

Step 1: Create a group Step 2:After creating group Create a project STEP 1:git status STEP...

Learn More 5 0May 12 '25

java-8 Features,Functional Interface,Lambda Expressions

What is a Functional Interface? A Functional Interface is a special kind of interface in Java that...

Learn More 7 1May 1 '25

Spring boot Ecommerce project frontend using ReactJS

1.Entity: package com.example.demo.entity; import jakarta.persistence.Entity; import...

Learn More 9 3Apr 28 '25

React js-Axios,usestate,useeffect

What is Axios? Axios is a promise-based HTTP client for JavaScript that simplifies making HTTP...

Learn More 5 1Apr 25 '25

Decimal to binary,Binary to decimal,Fibonacci series without third variable

binary to decimal==>1001 to 9 package new_practice; //8421 public class bi_dec_pro { static...

Learn More 12 0Apr 22 '25

React JS

What is React? React is a front-end JavaScript library. React was developed by the Facebook...

Learn More 11 0Apr 22 '25

Annotation in SpringBoot

**1.@SpringBootApplication **is a key annotation in Spring Boot, used to mark the main class of a...

Learn More 12 1Apr 21 '25

Random Quotes Generator in spring Boot

Quotes Generator 1.controller package com.example.demo.controller; import...

Learn More 17 5Apr 14 '25

My First interview in Suave Technologies as Fresher

It was the first interview I attended as a Java Developer. I had some fear inside me before attending...

Learn More 18 0Apr 12 '25

background color change and product display using Spring boot

1) File --> New --> Spring Starter Project 2) Name --> Calculator 3) Select Maven as Type 4)...

Learn More 9 0Apr 10 '25

Spring boot-java-project_calc

Using Html 1) File --> New --> Spring Starter Project 2) Name --> Calculator 3) Select...

Learn More 12 0Apr 8 '25

mvc architecture

MVC Architecture (Model-View-Controller) MVC (Model-View-Controller) is a software architectural...

Learn More 11 0Apr 4 '25

Spring Boot,Annotation

What is Spring Boot? Spring boot is a framework for building enterprise java application. Spring...

Learn More 17 1Apr 3 '25

Map Interface

Map Interface The map interface in Java is a structure that holds a set of key-value pairs where...

Learn More 12 0Mar 31 '25

Set in Java

Set in Java In Java, the set is an interface that belongs to java.util package. The Set interface...

Learn More 16 0Mar 31 '25

Java Comparable

Comparable: It is used to define the natural ordering of the objects within the...

Learn More 15 0Mar 30 '25