Pranay Arora has Published 45 Articles

Java Program to Demonstrate How User Authentication is Done

Pranay Arora

Pranay Arora

Updated on 06-Apr-2023 10:18:43

2K+ Views

Authentication refers to the process of verifying the identity of an individual to make sure the user is exactly who they are claiming to be before giving access to a system. It is very important to authenticate a user to ensure the security as well as integrity of the system. ... Read More

Implementation of LinkedList in Javascript

Pranay Arora

Pranay Arora

Updated on 10-Mar-2023 11:41:26

8K+ Views

A linked list is a data structure that consists of a sequence of elements, each of which contains a reference (or "link") to the next element in the sequence. The first element is called the head and the last element is called the tail. Linked lists have many advantages over ... Read More

Java Program to Encode a Message Using Playfair Cipher

Pranay Arora

Pranay Arora

Updated on 10-Mar-2023 11:31:25

3K+ Views

Encrypting is the task of transforming information into an unreadable format or cipher text. It is usually done to protect the confidentiality of information. There are many ways and algorithms to encrypt data. One such example is the Playfair cipher algorithm. In this article, we are going to see how ... Read More

Insert a character after every n characters in JavaScript

Pranay Arora

Pranay Arora

Updated on 09-Mar-2023 16:38:08

4K+ Views

Insertion of a specific character after every n characters in Javascript is an easy to understand concept and gives us a better understanding about Javascript's functions. Here n can be any whole number ranging from 1 to less than the length of the string. In this article we will deal ... Read More

Increment a given date in JavaScript

Pranay Arora

Pranay Arora

Updated on 09-Mar-2023 16:31:13

2K+ Views

In this article, we are going to discuss how to increment a given date using JavaScript. First, we will analyse and understand what is meant by this. Given a certain date x = “05-02-2023”, we want to add y = 7 days to this date and print the resulting date ... Read More

Advertisements