Posts by Shakshi Parekh

Author Biographical Info: Not available

Python program to subtract two complex numbers

By Shakshi Parekh

Here in this context, we are going to learn about the Python program to subtract two complex numbers. A complex number is created from two real numbers. Python complex number can b.... Read More

String split and join in Python

By Shakshi Parekh

Here we explain String split and join in Python. Python provides us with various inbuilt functions, two of which are split and join. String Split in Python Split is a function in w.... Read More

How to remove duplicate elements from a NumPy array in Python

By Shakshi Parekh

In this post, we are going to learn about how to remove duplicate elements from a NumPy array in Python. NumPy in Python: NumPy which stands for Numerical Python is a library for t.... 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 find roots of polynomial in Java

By Shakshi Parekh

Here in this context, we are going to learn how to find roots of a polynomial in Java. So if want to find roots of a quadratic equation we first fetch the coefficient of x2 then x .... Read More

Example program of join method in java

By Shakshi Parekh

Here in this context, we are going to learn an example program of join method in Java. Java is a language which provides built-in support for multithreaded programming. Multithread.... Read More

Convert joule to calorie in Java

By Shakshi Parekh

In this section, we are going to study how to convert joule to calorie in Java. Let us first see the conversion as 1 calorie = 4.184 Joule. Here we are dividing 4.184 and we will g.... Read More

How to move all the capital letters to end of a string in Java

By Shakshi Parekh

In this context, we will learn how to move all the capital letters to the end of a string in Java. So if the user enters Let us Learn Java Output will be et us earn avaLLJ. Java pr.... Read More

Related Posts