Ateev Duggal

I am Ateev Duggal, a front-end web developer, and a blogger. I write blogs mainly on React JS and have an experience of over 1.5 years of freelancing. I have worked on both static and dynamic projects again using React JS like a table to show clients data which was fetched using API, a review slider, pagination component, etc, and many websites like Parent, landing pages for Ataota, and many more. Some of my blogs have been published on freecodecamp, dev.to, Medium, geeks for geeks, and many other blogging platforms and developer's communities. My Primary skills not only include React JS but HTML5, CSS3, JS, Jquery, Git, and Bootstrap also. You can visit my GitHub Profile and LinkedIn profile for more information about me or you can visit my Website at tekolio.com

What is Inheritance in Java and why is it important?

Inheritance in Java is a mechanism of creating a new class or interface from an existing one. The class that…

2 months ago

Understanding the Fundamentals of OOPS in Java

In this blog, we will not only understand the concepts of OOPS in Java in short but the four pillars…

3 months ago

OOPS Concepts 101: What Are the Key Concepts You Need to Know?

Object-Oriented Programming System (OOPS) is a programming paradigm built around the concept of objects — self-contained units that represent real-world…

3 months ago

What is abstraction in Java and how to achieve it?

Abstraction in Java is one of the four pillars of OOPs which is used to hide complex details while displaying…

1 year ago

How to Detect a Click Outside of a React Component using Hooks?

In this blog, we will learn How to Detect a Click Outside of a React Component using useEffect and useRef…

2 years ago

How to Implement Infinite Scrolling in React by Making a Custom Hook

learn How to Use Hooks to Create Infinite Scrolling in React by making a custom hook in React.

2 years ago

How to build a Movie App in React using TMDB API?

React Movie App or Movie App in React is a fun project that every React developer should make once, in…

2 years ago

A Guide to React Context API and useContext hook

React Context API was mainly introduced to solve one of the major problems that React developers like us were facing…

3 years ago

Explaining TreeMap in Java in Simple English

TreeMap in Java, just like the HashMap, is part of the java collection framework. It is a red-black tree-based implementation…

3 years ago

How to Calculate the Factorial of a given number

In this blog, we will see how to calculate the factorial of a given number even if that number is…

3 years ago

How to Merge Two Sorted Arrays

In this blog, we're going to learn how to merge two sorted arrays into a single sorted array using different…

3 years ago

Explaining Selection Sort Algorithm in Simple English

Selection Sort Algorithm is an in-place comparison-based sorting algorithm that sorts the array by repeatedly finding and...

3 years ago

How to make Fireworks in React with Particle JS React

In this blog, we will use the TypeScript version of Particle JS React which is a package for creating 2Danimations…

3 years ago

How to solve nCr%p using Fermat’s Little Theorem?

Given three numbers n, r and p, compute the value of nCr%p. Here p is a prime number greater than…

3 years ago

How to Solve nCr%p using Dynamic Programming

We are given three integers n, r, and p, we have to find the value of nCr%p. Here p is…

3 years ago

HashMap in Java Explained in Simple English with Examples.

HashMap in Java is a part of the Java Collection Framework which stores data in the form of Key and…

3 years ago

How to Sort an Array of 0s, 1s and 2s in Java

Given an array A[] of 0s, 1s, and 2s of size N, the task is to write a function that…

3 years ago

How to Rotate an Array in Java

In this blog, we will learn what exactly array rotation is? And how to rotate an array either in the…

3 years ago

How to Calculate the leaders in an Array

Leaders in an array are those elements that are greater than the elements on their right-hand side in the array.…

3 years ago

<strong>How to Add and Remove an Element from an array at a Specific Index in Java</strong>

Arrays can only store a fixed number of elements in it thus making it impossible to either add or remove…

3 years ago