Author name: vasu

Interesting Facts about PHP

PHP is one of the most popular and well-known programming languages in the world. It has been around since 1995 and continues to be a popular choice for web developers. Here are some interesting facts about PHP that you may not have known: PHP was originally created by Rasmus Lerdorf as a general-purpose scripting language for

Interesting Facts about PHP Read More »

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 model based on sample data

What is Machine Learning? Read More »

What is SDLC? Phases and Models

Software Development Life Cycle (or SDLC in short) is the representation of the life cycle of a software. It is a structured process that ensures the production of high-quality software with minimum possible production time. SDLC outlines the basic plan with different stages, which the developers should follow in order to build the software that

What is SDLC? Phases and Models 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 Operators Bitwise Operators Arithmetic operators

Python Operators Read More »