Logistic Regression Using PySpark in Python

By Soham Das

In this era of Big Data, knowing only some machine learning algorithms wouldn’t do. One has to have hands-on experience in modeling but also has to deal with Big Data and uti.... Read More

Convert a string into a variable name in JavaScript

By Faruque Ahamed Mollick

Did you ever think to use a JavaScript string as a variable name? For example, suppose we have a string given below: var myString = "number"; Can you use the string “number&#.... Read More

Write a program to print all the LEADERS in an array in C++

By Ayush Singh

This article will guide you on how to write an efficient program to print all the LEADERS in an array in C++ programming. An element is called the leader of an array if there is no.... Read More

C++ Program to print Swastika Pattern

By Anubhav Bansal

In this C++ tutorial, we will see how to print Swastik pattern from given number n, the pattern of n height using loops. Note- N, an odd number (>=5). Print Swastik Pattern Divi.... Read More

Motion Detected Alarm System using OpenCV in Python

By Mir Shaharayan Ali Khan

In this tutorial, we will learn how to build a motion detected alarm system using OpenCV in Python. We will learn how to detect any moving objects using the webcam and sound an ala.... Read More

Check if a given Binary Tree is SumTree in Java

By Aditya Goyal

In this tutorial, we are going to learn to check if a Binary Tree is a Sum Tree or not in Java. It is a Tree in which the root node is equal to the sum of it’s left and right.... Read More

Euler tour of a tree in C++

By Keshav J

In this tute, we will discuss the Euler tour of a tree in C++. Before entering into the topic, let’s see an intro about trees. Euler Tour: Euler Tour of a tree is defined as .... Read More

Use Strict in JavaScript | Strict mode

By Keshav J

In this tute, we will discuss use strict in JavaScript. You can also call it the strict mode. What is Use Strict? The "use strict" is a JavaScript directive used to execute JavaScr.... Read More