Author name: vasu

What is machine learning?

What is Machine Learning?

Machine learning is the branch of computer science that focuses on making computers learn by past experiences and by using a set of data. It is a subset of Artificial intelligence. This is done by designing algorithms that can make computers imitate the way humans learn. Machine learning algorithms make a

What is Machine Learning? Read More »

Python Operators

An operator is used to perform some sort of operation on variables and values. For example- a = 4 b = 7 c = a + b print(c) Output 11 Python has the following type of operators     Arithmetic operators Assignment operators Comparison operators Logical Operators Membership Operators Identity

Python Operators Read More »

Variables in C++

In C++, a variable is something that can be used to store some value. The variables can be of different types to store different types of values. For example- An ‘int’ type variable stores an integer value whereas ‘char’ stores character type value. A variable is actually a name given

Variables in C++ Read More »