NumPy Tutorial Python Scientific library

NumPy is very useful Python library which is used for numerical purposes hence the name “NumPy”. We can do complex scientific calculations very easy and in faster way.It is also known as array processing package of python. Setup: We need to install this package before using it.We can install this python package using below command … Read more

Everything you need to know about Git

GIT is a code maintenance repository. Here we will understand what is a Git repository.How many types of repositories are there. Difference between local and remote repository and also we will try to understand what is the default location of default repository?What is the default location of default repository etc. For example 3 developers are … Read more

Exception Handling in Java(With Examples)

Exception Handling Exception is an abnormal condition in a java program which disrupts the normal flow the program.Few examples are bad coding, wrong input data, network connectivity issue etc. Technically exception is and object that contains the exceptional details like error message and line at which issue has happened etc.When such a situation arise in … Read more

Supervised vs Unsupervised Learning

Supervised vs Unsupervised Learning Explained Supervised learning: Supervised learning uses labelled datasets.Based on this labelled data, system will predict the possible outcome. We train the system by providing labelled data so that when system encounter real & unseen data, it applies the learning from labelled data basis the same, it will predict the possible outcome. … Read more