You are on page 1of 41

DIGITAL CONTENT DEVELOPMENT

FOR THE DEPARTMENT

Under the guidance of- Presented By-


Mr. M. HANDIQUE, NILU DAS
Asst. Professor,
ABHAY KUMAR
NILOTPAL
Deptt. Of Information Technology
CHAKRABORTY
CONTENTS
Introduction
System Analysis
Technologies
System design and coding
Database and tables
Snapshots
Testing
Remarks and conclusion
References
INTRODUCTION

•Digital contents are the multimedia elements


such as audio, video, graphics, animations etc.

•Digital Content Creation is a modern term denoting


the creation and modification of digital contents as part
of the production process before presentation in its final
medium.

•Digital content development is the creation,


design, management and distribution of digital
products and services and the enabling
technologies
SYSTEM ANALYSIS
DRAWBACKS OF THE PRESENT SYSTEM

◦ Less efficient
◦ Error probability is more
◦ Representation is not good
◦ Cost is more
◦ High effort is required to maintain data
◦ Requires more storage capacity
◦ Human load is more
SYSTEM ANALYSIS
continued..
PROPOSED SYSTEM—
◦ Contents are represented digitally
◦ Provides security
◦ Much more reliable
◦ Representation is nice
◦ Data can be well managed
◦ Maintenance is easy
◦ Low cost
◦ Information can be easily and effectively handled
over internet.
◦ Effective storage of large amount of data
◦ Less uses of hardware
TECHNOLOGIES
Software cycle
◦ Prototyping Model
Architecture
◦ 3-tier Architecture
Application program
◦ HTML/ XHTML
◦ JavaScript
◦ JSP/ JSP with JDBC
Database
◦ Oracle 10g
SYSTEM DESIGN
Also called top-level design
Identifies the modules that should be in
the system
Finally, all the important data structures,
file formats, output formats and the
major modules in the system and their
specifications are decided.
E-R DIAGRAM
Month
sports of Total
Magazi Exam marks
ne
Examinatio No of
Activity n interna
ls
No. of
Semest Extern
er
Perform ap ars als
s p conduc
e ts
Regd.
No. contac
ts
S_nam Departme
Student has nt
e
Semest N
er S_ID ID ame
E-R DIAGRAM E-
Conta mail
ct No
St_I
ha Departmen Staff
has D
s t
P
ost
St_nam
Qualificati e
on
Studen ha
s
t Associate
d with
Name of
student S
admitted _ID
Department
take Admissio proces al
s n s Administrati
Regd. Y on
No. ear
E-R DIAGRAM

T&P Year
T&P
Status
T&P
Officer
Departme ha
s T & P Cell
nt
Highest
Student recruiter
Placed Student
Trained
E-R DIAGRAM
No. of L_nam
Books e

No. of
Journal has Librarian
s
L
_ID
Library
ha Associat
s ed with
Specializati F_nam
on e

Departmen ha F
Faculty
t s _ID

Qualificati Designati
on on
E-R DIAGRAM
Library

ha
s

Author Book_nam
N e
ame
Journal
s Book_N Books
J_No o Author
Publicati Publicati
on on
E-R DIAGRAM
File
Detail
categor
s
y
Departmenta
F_No Files ha l
s Administratio
F_nam n
Sub_cod
e e

Syllabus has Departme ha


nt s
semest
er L_nam No. of
e machin
Sub_nam
ha
ha

e es
s
s

Credi
t Studen u Laborato
t ses ry
L Detail
_No es
E-R DIAGRAM
Roll_no Regn.
No.

Studen check Result


Result
t s

Semest
er

ha
s Departme declares

nt
USE-CASE DIAGRAM
USE-CASE DIAGRAM
CODING
XHTML codes

Java Scripts

JSP
DATABASE AND TABLES
Application software—
◦ ORACLE 10g
Architecture—
◦ 3-tier architecture
Internal schema
Conceptual schema
External or view schema

Continued

DATABASE AND TABLES
continued..
 SQL> desc DEPARTMENT
Name Null? Type
----------------------------------------- -------- ----------------------------
DEPT_NAME NOT NULL CHAR(50)
DEPT_ID NOT NULL
VARCHAR2(30)

 SQL> desc FACULTY


Name Null? Type
----------------------------------------- -------- ----------------------------
DEPT_ID
VARCHAR2(30)
FACULTY_NAME CHAR(50)
F_ID NOT NULL
VARCHAR2(30)
POST
VARCHAR2(30)
QUALIFICATION VARCHAR2(50)
RESEARCH_AREA
VARCHAR2(200)
DATABASE AND TABLES
continued..
 SQL> desc STAFF
Name Null?
Type
----------------------------------------- --------
---------------------------
DEPT_ID
VARCHAR2(30)
STAFF_NAME CHAR(50)
STAFF_ID NOT NULL VARCHAR2(30)
POST
VARCHAR2(30)
QUALIFICATION
VARCHAR2(50)
DOJ
DATABASE AND TABLES
continued..
 SQL> desc STUDENT
Name Null? Type
----------------------------------------- -------- --------------------
DEPT_ID
VARCHAR2(30)
STUDENT_NAME CHAR(50)
STUDENT_ID
VARCHAR2(30)
REGISTRATION_NO NOT NULL NUMBER(30)
SEMESTER
VARCHAR2(50)
E_MAIL
VARCHAR2(100)
PHONE_NO
NUMBER(15)
DATABASE AND TABLES
continued..

 SQL> desc DOCUMENT


Name Null?
Type
----------------------------------------- -------- ------------------
DEPT_ID
VARCHAR2(30)
FILE_NAME CHAR(50)
FILE_NO NOT NULL
VARCHAR2(30)
FILE_CATEGORY
VARCHAR2(30)
DETAILS_ENCLOSED
DATABASE AND TABLES
continued..

 SQL> desc LABORATORY


Name Null? Type
----------------------------------------- -------- ------------------
DEPT_ID
VARCHAR2(30)
LAB_NAME CHAR(50)
LAB_NO NOT NULL VARCHAR2(30)
NO_OF_PC NUMBER(35)
DETAILS_ENCLOSED
VARCHAR2(1000)
DATABASE AND TABLES
continued..

 SQL> desc LIBRARY


Name Null?
Type
----------------------------------------- -------- ------------------
DEPT_ID
VARCHAR2(30)
LIBRARY_NAME CHAR(50)
LIBRARY_ID NOT NULL
VARCHAR2(30)
NO_OF_BOOKS
NUMBER(35)
NO_OF_JOURNALS
NUMBER(36)
DETAILS_ENCLOSED
DATABASE AND TABLES
continued..

 SQL> desc BOOK


Name Null? Type
----------------------------------------- -------- ------------------
DEPT_ID VARCHAR2(30)
BOOK_NAME CHAR(50)
BOOK_NO NOT NULL VARCHAR2(30)
NAME_OF_AUTHOR CHAR(35)
PUBLICATION VARCHAR2(36)
DATABASE AND TABLES
continued..

 SQL> desc JOURNALS


Name Null? Type
----------------------------------------- -------- ------------------
DEPT_ID
VARCHAR2(30)
JOURNAL_NAME CHAR(50)
JOURNAL_NO NOT NULL
VARCHAR2(30)
NAME_OF_AUTHOR CHAR(35)
PUBLICATION
VARCHAR2(36)
DATABASE AND TABLES
continued..

 SQL> desc ADMISSION


Name Null? Type
----------------------------------------- -------- -------------------------
DEPT_ID
VARCHAR2(30)
NAME_OF_STUDENT_ADMITTED CHAR(50)
YEAR
VARCHAR2(30)
STUDENT_ID NOT NULL
VARCHAR2(35)
REGISTRATION_NO
NUMBER(30)
DATABASE AND TABLES
continued..

 SQL> desc EXAMINATION


Name Null?
Type
----------------------------------------- --------
---------------------------
DEPT_ID
VARCHAR2(30)
SEMESTER NOT NULL
VARCHAR2(50)
NO_OF_THEORYPAPERS NUMBER(30)
NO_OF_PRACTICALS NUMBER(35)
TOTAL_MARKS
NUMBER(35)
DATABASE AND TABLES
continued..

 SQL> desc RESULT


Name Null? Type
----------------------------------------- -------- ------------------
DEPT_ID
VARCHAR2(30)
REGISTRATION_NO NUMBER(30)
RESULT
VARCHAR2(20)
SEMESTER
VARCHAR2(20)
ROLL_NO NOT NULL NUMBER(20)
DATABASE AND TABLES
continued..

 SQL> desc TNP


Name Null? Type
----------------------------------------- -------- ------------------
DEPT_ID
VARCHAR2(20)
TNP_YEAR NOT NULL NUMBER(20)
TNP_STATUS
VARCHAR2(20)
STUDENTS_TRAINING NUMBER(20)
STUDENTS_PLACED NUMBER(20)
HIGHEST_RECRUITERS VARCHAR2(20)
SNAPSHOTS

Figure: Snapshot for


SNAPSHOTS

Figure: Snapshot for Teaching &Nonteaching Staff


SNAPSHOTS

Figure: Snapshot for


SNAPSHOTS

Figure: Snapshot for Digital


SNAPSHOTS

Fig:5 Snapshot for Retrieval for Faculty


SNAPSHOTS

Figure: Snapshot for Faculty Information after


result of Query
TESTING
Software testing is the execution of
the software with actual test data.
TYPES—
◦ Unit
◦ Integration
◦ System
◦ Acceptance
TESTING continued..
METHODS—
◦ White box testing
◦ Black box testing

USED—
◦ White box testing
REMARKS & CONCLUSION
This developed digital content
representation system increases the
storage capacity.
All the information can be handled
easily and with effective cost.
As multimedia is included, the
representation of data is very
attractive.
REFERENCES
 www.uohyd.ernet.in
 dli.iiit.ac.in
 www.greenstone.org
 en.wikipedia.org/wiki/Content_management
 www.bitpipe.com/tlist/Content-Management.html
 Gustafson, D.2002. Software Engineering, TMH.
 Godbole,A ;Kahate,A. 2004, Web Technology,
Second Edition, TMH
THANK YOU!!

You might also like