Convert string to array in JavaScript

By Manoj Srinivas

In this tutorial, we will learn how to convert string to array in JavaScript. Converting String to a character array in JavaScript Variables used in code str – string const s.... Read More

String equals( ) function in Java

By Subhojeet Ghosh

In this tutorial, we will learn about the equals function in Java and its application in String variable fields. So let’s start with the definition of equals function. String equ.... Read More

Generate random numbers without repetition in Python

By Manam Sampath Kumar Reddy

In this tutorial, we will learn how to get non-repeating random numbers in Python. There is no in-built function to perform this task. But, we can use some techniques to do this. W.... Read More

Confusion matrix using scikit-learn in Python

By Shamik Lahiri

In this tutorial, we will learn how to plot a confusion matrix using the scikit-learn library in Python. We will be using some easy-to-go examples, getting down to the basics, and .... Read More

Deque in Java with examples

By Abhi Tiwari

What is java.util.Deque? In this blog, you will learn about Java Deque Interface also its declaration, Constructors, etc. Deque (double-ended queue) is generally pronounced as a de.... Read More

Swap two elements in an array in Java

By Abhi Tiwari

In this blog, you will see simple logic to swap the elements of the array, and also you can learn about Java.util.Collections Swap method. Simple Swapping logic in Java public clas.... Read More

How to create a module in Python and import it?

By Varsha Neelamma

Python modules are files containing python codes that define methods, classes and variables. These files have the .py extension and increase the reusability of codes. You must be f.... Read More

C++ String find() function

By Ankur Sinha

In this tutorial, We will be learning about the C++ string find() function. First, let us know something about it. String find() function in C++ String find() function is used to f.... Read More

Related Posts