Online Scheduling System

Submitted by razormist on
Online Scheduling System with Source Code is a PHP project that designed to solve the timetable and scheduling problems of some schools. The system was created using PHP, HTML, MYSQLi and Javascript. This system has the capability to show the room schedule, courses and subject in order to avoid conflict within the class schedule. You can dynamically create your user account to access and manage

Python Input

Submitted by moazkhan on

In this tutorial you will learn:

  • Input Function
  • Input in Python 2.7
  • Input in Python 3.6
  • Making a simple Calculator

Input Function

This is an important function in programming languages almost all programming languages offer some kind of input function to take values from the user.

Input in Python 2.7

Food Ordering System

Submitted by razormist on
Food Ordering System with Source Code is a C++ program that can make the ordering of food easier and convenient to customer. The system was developed using C++ language. The system is easier to use you just need to enter a certain key to transact your order. The user is already given after you open the program. This program has a feature in which it can generate a receipt after purchasing an order

Python For Loop

Submitted by moazkhan on

In this tutorial you will learn:

  • Loop in Python
  • For loop in Python
  • Nested for loop in Python
  • Break statement in for loop
  • Continue statement in for loop

Loop in Python

In programming we sometimes need to execute a block of code again and again and for that we need to use something called loop. Loop helps us to repeat a block of code do something multiple times until a particular condition is satisfied.

For loop in Python