Short class in Java

By Pratiksha Bhandari

In Java, there is a concept called Wrapper Classes. Short is from wrapper class. There are some methods with the help of which we can operate with tasks. If we talk about an objec.... Read More

How to delete only empty folders in Python

By Nikhil Vaddipati

Hello folks, in this tutorial we are going to discuss how to delete only empty folders in Python. This is very useful because we can delete multiple empty folders at a time. Librar.... Read More

Finding the Frequency of every word from an Input using Dictionary in Python

By Sai Mukesh Reddy Gutha

Hey Coder, In this article we will learn to find the frequency of all words from the input using the Dictionary Data structure. Counting words using Dictionary in Python Dictionary.... Read More

Java String.charAt(int index) with an example

By Pratiksha Bhandari

Strings are objects. Everything in Java is an object so a string. String in Java is a class that is used to operate with strings and is available in java.lang package. The string c.... Read More

How to calculate percentage in Python

By Animesh Arya

In this tutorial, we are going to learn about finding the percentage in Python. Example 1 : A student got 91 marks in Math, 100 on the computer, 98 in Science, out of 100. Find the.... Read More

Calculate Feels Like Temperature in Python

By Animesh Arya

In this tutorial, we will learn how to calculate the Feels like Temperature in Python. What is Feels Like Temperature? Wind Chill factor is so-called as feels like temperature. The.... Read More

Arrays.sort() in Java with examples

By Pratiksha Bhandari

Today we’ll learn about Arrays.sort() in Java. Technically, Arrays.sort() is a very handy method in Java. It comes under java.util.Array package. Handling sort logics is easi.... Read More

How to change JLabel font style and size in Java

By Anirudh Jakhotia

Hello folks! In this tutorial, we will discuss how to change the JLabel font style and font size in Java. I will discuss thoroughly each of them. Firstly, let us discuss changing o.... Read More

Related Posts