How to make a C++ program crash

By Ramneeq Sodhi

In this article, we are going to learn about what are C++ crashes and what is the reason behind the crashes. While writing codes we come across certain crashes in C++. Many a time,.... Read More

negative _binomial_distribution in C++ with examples

By Ramneeq Sodhi

In this article, we are going to learn what is negative binomial distribution and how we can implement it in C++ Bernoulli Trials are experiments in which there are two possible ou.... Read More

Implementation of Perceptron Algorithm for NOT Logic in Python

By Prantik Sarkar

Fig: NOT gate In this article, you’ll learn how to implement the perceptron algorithm for NOT logic in python. The steps that we’ll follow will also enable you to easily implem.... Read More

Gender Identifier in Python using NLTK

By Amal Mathew

In this tutorial, we will learn about creating a gender identifier classification model using NLTK in Python. Natural Language Processing is one of the fascinating fields of study .... Read More

Tkinter destroy() method | Python

By Pavan Sai Koneru

In this article, you will know about Tkinter destroy() function in Python programming. The Tkinter is a predefined module that is defined by Python. The module is mainly used to cr.... Read More

How to Configure Image Data Augmentation in Keras TensorFlow

By Prantik Sarkar

Training deep convolutional neural networks on more data can lead to an increase in its performance and generalization capacity. Limited training data can cause the model to overf.... Read More

How to plot pie chart in excel sheet using Python

By Mariya Banatic J

After this tutorial, you will be able to plot a pie chart in an excel sheet using Python. We will use the xlsxwriter module that is available in Python. First, you have to know abo.... Read More

Converting CSV to HTML table in Python

By Mariya Banatic J

In this post, we are going to see how to convert a CSV file to an HTML table in Python. Here, we will discuss two methods that are available in Python. 2 Methods: Using pandas. Usi.... Read More