Optimized solutions in Python for All Divisors and Prime Number

In the previous article we explored programs for obtaining all divisors of a given number. Let us see the ways in which we can discuss optimize the programs in the previous article as well as the program for Prime Numbers. Optimizing programs in recent usage or legacy code is important as we gain new knowledge … Read more

Check for Palindrome in Python

In the previous article we explored pattern searching in Python, on this article we will see how we can check for Palindrome in Python logic. Before we delve further, think of the date 10-02-2001 which can be expressed as 10022001. From either side, left to right or right to left we arrive at the same … Read more

For Loop in Python

In the previous article we explore the use of the range( ) function in Python, in this article we will explore another important kind of loop, that is the For Loop. A  for loop in the Python programming language is designed to iterate over the elements of data structures and some other objects. It is not … Read more

Complete Java Tutorial for Beginners

In this tutorial post, I am going to cover all the core java concepts that is necessary for getting started in the java programming language. I will start from the bare basics assuming that this is the first time you will be interacting with java programming language. After completing this tutorial you will be ready … Read more