Rushi Javiya has Published 167 Articles

Java Equivalent of C++'s lower_bound() Method

Rushi Javiya

Rushi Javiya

Updated on 24-Jul-2023 12:37:21

1K+ Views

In this problem, we will learn to implement the equivalent algorithm of C++'s lower_bound() method in Java to find the lower bound index of a given element in the sorted array. Lower bound − The lower bound is the index in the sorted array, such that the index contains the ... Read More

Get the YouTube video ID from a URL using JavaScript

Rushi Javiya

Rushi Javiya

Updated on 19-Jul-2023 10:39:52

2K+ Views

Every YouTube video has a unique URL through which we can access it in the browser. Every YouTube video contains a unique video id, which makes the URL unique. Sometimes, developers need to extract the video id from the YouTube URL. We need to play with the YouTube URL ... Read More

Online Group Chat application Using PHP

Rushi Javiya

Rushi Javiya

Updated on 14-Jul-2023 16:42:24

5K+ Views

A web-based tool called an online group chat application enables users to text, phone, or video chat with one another in real-time. Many people are using these programs because they are simple and convenient. A popular server-side programming language, PHP, can create web-based applications like group chat programs. PHP offers ... Read More

What are the restrictions of web workers on DOM in JavaScript?

Rushi Javiya

Rushi Javiya

Updated on 14-Jul-2023 10:12:49

575 Views

JavaScript is a single-threaded programming language. It means it executes all code of the application in a step-by-step manner. In some situations, we need to execute computationally extensive tasks. For example, applications with large databases need to process large amounts of data, which may take more time than usual. To ... Read More

Implode an array with jQuery/JavaScript

Rushi Javiya

Rushi Javiya

Updated on 14-Jul-2023 10:06:40

898 Views

In this tutorial, we will learn to implode a given array using JavaScript and JQuery. In web development, many situations occur where we must implode the array. For example, we have given a list of tags and need to implode them into a single string to insert into the web ... Read More

How to create Calendar in ReactJS?

Rushi Javiya

Rushi Javiya

Updated on 14-Jul-2023 10:05:15

5K+ Views

In some web applications, we require the user to take a date input. For example, we need to take the user's birth date or any other particular date as input. In such cases, it is a good idea to show the calendar to users and ask them to select the ... Read More

How to create bar chart in react using material UI and Devexpress?

Rushi Javiya

Rushi Javiya

Updated on 14-Jul-2023 10:00:16

979 Views

The material UI is a popular CSS library that we can use to style the React application. It contains various pre-styled React components that we can use directly in the application by importing them into the code. The 'dx-react-chart-material-ui’ is an NPM package of Devexpress that can connect the material-ui ... Read More

How to create and download CSV file in JavaScript?

Rushi Javiya

Rushi Javiya

Updated on 14-Jul-2023 09:59:03

5K+ Views

JavaScript has great capability to manipulate various data and handle them with files of different formats. Sometimes, developers require to handle the data with the CSV file while developing web applications using JavaScript. For example, we are building an e-commerce platform where users can buy and sell products. Also, we ... Read More

Explain about rest parameters and arguments in TypeScript

Rushi Javiya

Rushi Javiya

Updated on 14-Jul-2023 09:56:09

597 Views

TypeScript is a feature-rich programming language, and it is necessary to know all features of TypeScript while developing web applications with TypeScript. One such feature is the rest of the parameters and arguments in TypeScript. This tutorial will teach us to use the rest parameters and arguments in TypeScript with ... Read More

Java Program to Find a Good Feedback Edge Set in a Graph

Rushi Javiya

Rushi Javiya

Updated on 04-Jul-2023 16:00:27

248 Views

A feedback edge set in a graph refers to a set of edges that, when removed from the graph, eliminates all cycles or feedback loops. In other words, it is a subset of edges that, when deleted, transforms the original graph into a directed acyclic graph (DAG). A good feedback ... Read More

Previous 1 ... 3 4 5 6 7 ... 17 Next
Advertisements