Team EasyExamNotes
PHP Switch Statement
PHP (Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML. PHP … Read more
PHP Constant
Constants are variables that except once they are defined they cannot be undefined or changed. A constant is an identifier or a name.The value cannot … Read more
PHP Data types
DATATYPES IN PHP Data Types: Data types defines the type of values a variable can store. PHP supports the following data types:· String· Integer· Float … Read more
PHP Variables
Variables in PHP Variables are like a container to store data.Variables in php starts with Dollar sign ($). Example: $a = “Hello”;$b = 50;$c = … Read more
INSTALLATION OF MYSQL ON WINDOWS
This article is about the installation of MySQL 5.5. Firstly check the configuration of a system is either 32 bit or 64 bit. Download the setup … Read more
How to get MySQL
MySQL MySQL is an open source relational database management system (RDBMS) based on Structured Query Language (SQL). From where we can download the MySQL setup … Read more
Python program Merge sort
To write a Python Program to perform Merge sort. OUTPUT:Enter the list of numbers: 1 3 2 4 5 6 7 9 8 Sorted list: … Read more
Python program to find first n prime numbers
To write a Python program to find first n prime numbers. # change the values of lower and upper for a different resultlower = int(input(“Enter … Read more
Python Program to perform insertion sort
To write a Python Program to perform insertion sort. OUTPUT:Enter the list of numbers: 1 4 5 3 6 7 8 Sorted list: [1, 3, … Read more