You are on page 1of 9

2014

[SUBMITTED BY]
DEEPAK ARORA

[SUBMITTED TO] | [SIR RAVI GOYAL]

Acknowledgement
I would like to express my special thanks of gratitude to my teacher SIR RAVI
GOYAL as well as our principal DR. R.K. SRIVASTAVA who gave me the golden
opportunity to do this wonderful project on the topic MASCO, which also helped me
in doing a lot of Research and I came to know about so many new things
I am really thankful to them.
Secondly I would also like to thank my parents and friends who helped me a lot in
finishing this project within the limited time.
I am making this project not only for marks but to also increase my knowledge.
THANKS AGAIN TO ALL WHO HELPED ME.

1|Page

Certificate
This is to certify that this project MASCO has been made by Deepak Arora of class
XII-A under the guidance of our IP teacher SIR RAVI GOYAL and HAVE BEEN
completed it successfully. The given project had been completed by his fulfilling all
the partial requirements of All India Senior Secondary Exams (AISSE) for the
session (2014-15) to be conducted by the CBSE New Delhi, This is to certify that
this project is up to my expectations.

2|Page

Platform Required
Introduction To Java
Java is a high-level, third generation programming language, like C, FORTRAN,
Smalltalk, Perl, and many others. You can use Java to write computer applications
that play games, store data or do any of the thousands of other things computer
software can do. Compared to other programming languages, Java is most similar to
C. However although Java shares much of C's syntax, it is not C. Knowing how to
program in C or, better yet, C++, will certainly help you to learn Java more quickly,
but you don't need to know C to learn Java. A Java compiler won't compile C code,
and most large C programs need to be changed substantially before they can
become Java programs. What's most special about Java in relation to other
programming languages is that it lets you write special programs called applets that
can be downloaded from the Internet and played safely within a web browser. Java
language is called as an Object-Oriented Programming language and before
beginning for Java, we have to learn the concept of OOPs(Object-Oriented
Programming).

3|Page

Introdc

4|Page

My-SQL Tables

Accounts
To take advantage of this templates design, use the Styles gallery on the Home tab. You
can format your headings by using heading styles, or highlight important text using other
styles, like Emphasis and Intense Quote. These styles come in formatted to look great and
work together to help communicate your ideas.
Go ahead and get started.

Drop Table If Exists Accounts;


Create table Accounts (
User_Name varchar (20) primary key,
First_Name varchar (25),
Last_Name varchar (25),
Gender varchar (10),
DOB date,
Mobile double,
Password varchar (40),
Email varchar (30),
Department varchar (20),
Designation varchar (30),
Manager varchar (50),
Hire_Date date,
Salary int (10),
Commission int (6));

5|Page

Current Status

Drop Table If Exists Current_Status;


Create table Current_Status (
Order_No varchar (20) primary key,
Date_of_booking_order date,
Date_of_order date,
Total_Amount int,
Name_of_Customer varchar (50),
Contact_No int,
Venue varchar (100),
Address varchar (100));

Customers

Drop Table If Exists Customers;


Create table Customers (
First_Name varchar (25),
Last_Name varchar (25),
Gender varchar (10),
Mobile int,
6|Page

Email varchar (30),


Address varchar (200),
No_Of_Visits int);

Future Orders

Drop Table If Exists Future_Orders;


Create table Future_Orders (
Order_No varchar (20) primary key,
Date_of_booking_order date,
date_of_order date,
Total_Amount int,
Customer_Name varchar (50),
Contact_No int,
Venue varchar (100),
Address varchar (100));

New Accounts

Drop Table If Exists New_Accounts;


Create table New_Accounts (
User_Name Varchar (20) primary key,

7|Page

First_Name Varchar (25),


Last_Name Varchar (25),
Gender Varchar (10),
DOB date,
Mobile double,
Password Varchar (40),
Email Varchar (30));

Net Beans Coding


Frames-

8|Page

You might also like