Check whether a file/directory exists in Python

By Veda Charitha

We all forget where we store our files and sometimes we forget if the file/ directory exists in our system. In this article, we are going to learn how to find a file/ directory in .... Read More

Sum of secondary diagonal of a matrix in Java

By Akash Tripathi

In the last tutorial, we learned about the sum of the principal diagonal of a matrix, in this tutorial we will see how to find the sum of the secondary diagonal of a matrix in Java.... Read More

Difference between ArrayList.clear() and ArrayList.removeAll()

By Shakshi Parekh

Here we are going to have a brief knowledge Difference between ArrayList.clear() and ArrayList.removeAll() in Java. An ArrayList is a re-sizable array we can also call it a dynamic.... Read More

How To Get Date without Time in Java

By Priyam Patel

In this tutorial, we will be discussing the problem of how to get a date without time in java. Also, we will be displaying the date in a formatted way. We will be understanding how.... Read More

Occurrence of a particular element in an Array – Java

By Akash Tripathi

Today we will see how to count the number of occurrences of a particular element in an Array in Java. Example: If the array is :  10   15   17   19   19    15    10  .... Read More

Introduction to Xgboost algorithm

By Deepshi Sharma

In this tutorial, we are going to discuss a very important algorithm that is in much demand nowadays. This algorithm is none other than Xgboost algorithm. This algorithm is nowaday.... Read More

Python program to calculate the average of all the elements in a list

By Rahul Yadav

In this tutorial, we are going to show how to calculate the average of all the elements in a list in Python by using different methods. As well as average is calculated by the sum .... Read More

Average value of an ArrayList in Java

By Anubhav Srivastava

Hi coders! I am up with a topic known as ArrayList. It is a class which implements List interface of the Collection framework. ArrayList is present in the java package known as uti.... Read More

Related Posts