cout and cin in C++

By Ranjeet V

This tutorial will teach you about the popularly used standard input and output streams cout and cin in C++. cout keyword is used to print the output on the screen and cin keyword .... Read More

Find and print the factors of the number in Python

By Ashutosh Srivastava

Learn how to find the factors of a number in Python with this simple program. Finding the factors of the number in Python There are several ways to find and print the factors of th.... Read More

Count Number Of Occurrences Of A Word In A Text File In Java

By Shubham Kumar

In this tutorial, we are going to figure out how many times a word is repeated in the text file using a map interface method through a Java program. If you don’t know how to .... Read More

Statistics Module in Python with Examples

By Kunal Gupta

Hello everyone, In this tutorial, we’ll be learning about Statistics Module in Python which provides many functions to perform the various statistical operations on the real-.... Read More

News category prediction using Natural language processing [NLP]

By Nikita Pande

In this tutorial, we will work on the news articles dataset and categorize the articles based on the content. So let’s learn how to predict news category using NLP (Natural L.... Read More

Read and Write Image file In Java

By Sanjay Adhikari

In this tutorial, we will find out the way to Read and Write images in Java. For performing read and write operation we will import multiple classes. There are two ways to read and.... Read More

main() function in C++

By Ranjeet V

In this tutorial, we are going to learn about the main() function in C++. As you know, in almost every C++ program there is a main() function and every other function is called or .... Read More

Fast Exponentiation in Python

By Arijit Roychaudhury

Topic: Fast exponentiation in Python. What is Exponentiation? Well, if you want to compute the power of some number in respect to some other number, that is called exponentiation. .... Read More

Related Posts