JavaScript Control Statements – Conditional Statements

By Akanksha Musham

Here, we will learn Control statements – conditional statements in JavaScript. Control Statements decide according to the condition whether a statement should be executed or .... Read More

What is Quickhull Algorithm for Convex Hull? Explain using program in Python

By Karan Mittal

In this tutorial, we’ll be discussing the Quick hull algorithm for finding a convex hull in Python. Before starting first let’s discuss what a convex hull is: The conve.... Read More

Z algorithm in Python

By Karan Mittal

In this tutorial, we’ll be learning about the Z algorithm in Python. Before looking at the code let’s talk about what exactly the Z algorithm is about. Z algorithm help.... Read More

Use of \r in C++ – Carriage return to escape special characters

By Sanam Sahoo

Hello, Coders! In this section, we will discuss the escape sequence \r and its uses in C++ through example. Escape Sequence The Escape sequences are generally used in C and C++ pro.... Read More

Create prompt dialog box and take dynamic input from user in JavaScript

By Himaja Battina

In this tutorial, we will understand how to create a prompt dialog box and also how to take dynamic input from the user using prompt(). We will also save the entered prompt box dat.... Read More

How to remove elements from a vector inside a loop in C++

By Sanam Sahoo

Hello, Coders! In this section, we will learn and discuss the vector and how to remove elements from a vector inside a loo in C++. Let’s cover up the following topics briefly.... Read More

Decode URL in Java

By Pratiksha Bhandari

In Java, there is a predefined class for decoding as well as for encoding any URL. For decoding URL, ‘URLDecoder’ class is present and for encoding URL, ‘URLEncod.... Read More

Create a confirm popup box in JavaScript with “Ok” and “Cancel” option

By Himaja Battina

In this tutorial, we will learn how to create confirm pop-up box in JavaScript. We can use confirm(parameter string) method with parameter as message. It returns a boolean value (T.... Read More

Related Posts