Machine Learning: Evolution Types Algorithms Applications Software

An important method of data analysis that helps in automating the analytical model building is known as Machine Learning. Machine Learning, abbreviated as ML, is a branch of Artificial Intelligence; and is based upon the idea that systems can make decisions, identify patterns, and learn from data with minimum human intervention. History and Evolution of … Read more

Polymorphism in PHP with Example

Polymorphism in PHP is one of the important concepts in OOPs. Polymorphism is a Greek word. Polymorphism is created by two different words poly (means many) and morph (means forms). It is another functionality of OOPS. In a programming language, two types of Polymorphism are there. Function overriding (Run time Polymorphism) Function Overloading(Compile time Polymorphism) … Read more

Know More About Nationalized Banks in India

All of us are aware that in today’s fast – moving world, people can safely park their hard – earned money in banks and other financial institutions without worrying much about the safety of these invested funds. Most of us are also reaping the maximum benefits of the banking schemes which are available presently in … Read more

Categories gk

Single and Multidimensional Arrays in C++

Arrays is a kind of data structure that can store a elements of the same type. Arrays stores the elements in a contiguous memory locations. Array is a collection of variables of the same type.  For example: we want to declare 100 integer variable Instead of declaring 100 individual variables, such as int number0, number1,number2,number3, … Read more

Categories C++