Make HTTP request from a Java program

By Shantanu Shrivastava

In this tutorial, we will learn how to make HTTP GET/POST request using a Java program with the help of some easy-to-understand examples. As you know, the world nowadays revolves a.... Read More

Rounding BigDecimal values with specific Decimal Places in Java

By Krishna Lakhi

In this tutorial, we will learn how to round BigDecimal values in Java up to specific decimal places. BigDecimal class in Java The BigDecimal class in Java is useful for providing .... Read More

Java Program to find and count a specific word in a Text File

By Krishna Lakhi

Hey everyone! In this article, we will learn how to find a specific word in a text file and count the number of occurrences of that word in the text file. Before taking a look at t.... Read More

Extract Date from a String in Java

By Krishna Lakhi

Hey Everyone! In this article, we will learn how to Extract a Date from a user-entered String in Java. We will be using the date class in Java to parse the String inputted by the u.... Read More

Check whether all digits of a number divide it using Python

By Siddharth Shankar Debata

Today, in this tutorial, we will get to know how to check whether all the digits of a number divide it using a Python program. We will check the divisibility of the given number by.... Read More

Find smallest prime divisor of a number in C++

By Titichh Mishra

Hi there. Today we are going to see how to get the smallest prime divisor of any number using C++. But what if you want to implement this in C? You can do that by replacing input a.... Read More

Convert doc file to PDF in Python

By Lokesh Dandia

In this blog, we will learn how we can convert .docx file into .pdf format using Python and its packages. It is quite a difficult task if we use general libraries and packages for .... Read More

Predictive Models for Ebola using Machine Learning in Python

By Vineet Raj

In this article, you will learn Predictive Models for Ebola using Machine Learning in Python. The Ebola virus spread according to the region and respective climate of countries. On.... Read More

Related Posts