CS PROJECT Institute Registration
CS PROJECT Institute Registration
➢ SUBMITTED BY:
➢NAME – ABHAY GUPTA
➢CLASS – 12 B
➢ROLL_NO –
➢ADMN_NO – P5306
CERTIFICATE
SR NO.
TOPIC
1 • INTRODUCTION
ABOUT BILLING SYSTEM
ABOUT PYTHON
ABOUT MYSQL
2. SOURCE CODE:
3. OUTPUT
4. BIBLIOGRAPHY
INTRODUCTION
Billing system
Telecommunication companies need an effective and
accurate billing system to be able to assure their revenue.
Billing systems process the usage of network equipment
that is used during the service usage into a single Call Detail
Record (CDR). The billing process involves receiving billing
records from various networks, determining the billing rates
associated with the billing records, calculating the cost for
each billing record, aggregating these records periodically
to generate invoices, sending invoices to the customer, and
collecting payments received from the customer.
Matplotlib lib
All the libraries that we have discussed are capable
of a gamut of numeric operations but
when it comes to dimensional plotting, Matplotlib
steals the show. This open-source library in Python
is widely used for publication of quality figures in a
variety of hard copy formats and and interactive
environments across platforms.
MODULES
1. Built in
2. User – defined
BENEFITS OF MODULES IN
PYTHON
Structured Code
Reusability
TABLE 1 :
TABLE 2 :
create table cart(product_id
varchar(10),item_name char(10),price int);
Query OK, 0 rows affected (0.27 sec)
insert into cart values('P1004','mango',40);
Query OK, 1 row affected (0.09 sec)
insert into cart
values('P1002','banana',20);
Query OK, 1 row affected (0.04 sec)
TABLE 3 :