Posts

Introduction to JAVA Programming

Introduction To JAVA and Its History Java is very popular programming language which works on different platforms like Windows, Mac, Linux, Raspberry Pi, etc... * It is one among the foremost popular programing language within the world *It is easy to find out and straightforward to use   It is open-source and free *It is secure, fast and powerful *It has an enormous community support (tens of many developers) Java is an object oriented language which provides a transparent structure to programs and allows code to be reused, lowering development costs. As Java is on the brink of C++ and C#, it makes it easy for programmers to modify to Java or the other way around History:: JAVA was created by James Gosling at Sun Microsystems Inc in the year 1991, later gained by Oracle Corporation. It is a straightforward programming language. Java makes composing, gathering, and troubleshooting(debugging) programming simple. It assists with making reusable code and secluded projects. Java is a c...

Introduction and Applications of machine learning / introduction of machine learning

Image
We have considered Machine learning To be as a popular expression for as far back as couple of years, the justification this may be the high measure of information creation by applications, the increment of calculation power in the previous few years and the improvement of better calculations that is development of better and better algorithms.  machine learning  is utilized anyplace from computerizing unremarkable assignments that is automating mundane tasks to offering astute experiences, enterprises in each area attempt to profit with it. such applications like...Image Recognition,Speech Recognition,Traffic prediction, Product recommendations, Self-driving cars, Email Spam and Malware Filtering, Virtual Personal Assistant, Online Fraud Detection.. What Is Machine Learning??? Algorithm: Automated Instructions. Artificial Intelligence: Programs With ability to mimic human behavior. Machine Learning: Algorithms with ability to learn without being explicitly programmed. machine...

Control Flow Statements In Python

Image
Control flow : The control flow is the order where the PC executes statements or instructions in a program. Code is run all together from the main line in the record to the last line, except if the PC stumbles into the (very successive) structures that change the control flow, for example, conditionals and loops Function Calls, Conditional statements and Loops is all are basic control flows in python. Python has basically following control structures: *  Repetition :  This type of control structure used for repeating part of any program or code multiple times.                                                                                                                        ...