Digital Content Development for the Department_final

Embed Size (px)

Citation preview

  • 8/14/2019 Digital Content Development for the Department_final

    1/41

    DIGITAL CONTENT DEVELOPMENTDIGITAL CONTENT DEVELOPMENT

    FOR THE DEPARTMENTFOR THE DEPARTMENT

    Under the guidance of-

    Mr. M. HANDIQUE,Asst. Professor,

    Presented By-

    NILU DASABHAY KUMARNILOTPAL

  • 8/14/2019 Digital Content Development for the Department_final

    2/41

    CONTENTSCONTENTS

    IntroductionSystem AnalysisTechnologies

    System design and codingDatabase and tables

    Snapshots

    TestingRemarks and conclusionReferences

  • 8/14/2019 Digital Content Development for the Department_final

    3/41

    INTRODUCTIONINTRODUCTION

    Digital contents are the multimedia elementssuch as audio, video, graphics, animations etc.

    Digital Content Creation is a modern term denotingthe creation and modification of digital contents as partof the production process before presentation in its finalmedium.

    Digital content development is the creation,design, management and distribution of digitalproducts and services and the enabling

  • 8/14/2019 Digital Content Development for the Department_final

    4/41

    SYSTEM ANALYSISSYSTEM 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

  • 8/14/2019 Digital Content Development for the Department_final

    5/41

    SYSTEM ANALYSISSYSTEM ANALYSISntin ..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 handledover internet.

    Effective storage of large amount of data

    Less uses of hardware

  • 8/14/2019 Digital Content Development for the Department_final

    6/41

    TECHNOLOGIESTECHNOLOGIES

    Software cycle Prototyping Model

    Architecture

    3-tier Architecture

    Application program

    HTML/ XHTML

    JavaScript

    JSP/ JSP with JDBCDatabase

    Oracle 10g

  • 8/14/2019 Digital Content Development for the Department_final

    7/41

    SYSTEM DESIGNSYSTEM 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.

  • 8/14/2019 Digital Content Development for the Department_final

    8/41

    E-R DIAGRAME-R DIAGRAM

    DepartmentStudent

    Examination

    conducts

    appears

    has

    Regd.

    No.

    S_name

    S_IDSemest

    er ID Name

    Performs

    Activity

    sports Magazine

    Totalmarks

    No. ofExtern

    als

    No ofinterna

    ls

    Month

    ofExam

    contacts

    Semester

  • 8/14/2019 Digital Content Development for the Department_final

    9/41

    E-R DIAGRAME-R DIAGRAM

    Staff

    Departmental

    Administration

    Admission

    Department

    Student Associate

    d with

    process

    has

    ha

    s

    has

    takes

    Regd.No.

    Name of

    studentadmitted

    Year

    S_ID

    Qualification

    St_name

    St_ID

    Post

    E-mailConta

    ct No

  • 8/14/2019 Digital Content Development for the Department_final

    10/41

    E-R DIAGRAME-R DIAGRAM

    Department

    has T & P Cell

    StudentTrained

    StudentPlaced

    Highestrecruiter

    T&P Year

    T&PStatus

    T & POfficer

  • 8/14/2019 Digital Content Development for the Department_final

    11/41

    E-R DIAGRAME-R DIAGRAM

    Facultyhas

    Department

    Library

    Librarian

    has

    has

    Associated with

    F_ID

    Designati

    on

    F_name

    Specializati

    on

    Qualificati

    on

    L_ID

    L_nameNo. ofBooks

    No. ofJournal

    s

  • 8/14/2019 Digital Content Development for the Department_final

    12/41

    E-R DIAGRAME-R DIAGRAM

    Library

    ha

    Journals Books

    J_No

    Author

    Name

    Publicati

    on

    Author

    Publication

    Book_No

    Book_nam

    e

  • 8/14/2019 Digital Content Development for the Department_final

    13/41

    E-R DIAGRAME-R DIAGRAM

    Student

    Department

    Laboratory

    Departmental

    Administration

    Files

    Syllabus

    ha

    s

    uses

    ha

    s

    has has

    has

    L_name

    Detailes

    L_No

    No. ofmachin

    es

    F_nam

    e

    File

    category

    F_No

    Detail

    s

    Credit

    semest

    erSub_nam

    e

    Sub_cod

    e

  • 8/14/2019 Digital Content Development for the Department_final

    14/41

    E-R DIAGRAME-R DIAGRAM

    Departme

    Student

    Result

    has

    declares

    checks

    Result

    Semester

    Regn.No.

    Roll_no

  • 8/14/2019 Digital Content Development for the Department_final

    15/41

    USE-CASE DIAGRAMUSE-CASE DIAGRAM

  • 8/14/2019 Digital Content Development for the Department_final

    16/41

    USE-CASE DIAGRAMUSE-CASE DIAGRAM

  • 8/14/2019 Digital Content Development for the Department_final

    17/41

    CODINGCODING

    XHTML codes

    Java Scripts

    JSP

  • 8/14/2019 Digital Content Development for the Department_final

    18/41

    DATABASE AND TABLESDATABASE AND TABLES

    Application software ORACLE 10g

    Architecture

    3-tier architectureInternal schema

    Conceptual schema

    External or view schema

    Continued

  • 8/14/2019 Digital Content Development for the Department_final

    19/41

    DATABASE AND TABLESDATABASE AND TABLEScontinued..continued..

    SQL> desc DEPARTMENTName Null? Type----------------------------------------- -------- ----------------------------DEPT_NAME NOT NULL CHAR(50)DEPT_ID NOT NULL

    VARCHAR2(30)

    SQL> desc FACULTYName Null? Type----------------------------------------- -------- ----------------------------DEPT_ID

    VARCHAR2(30)

    FACULTY_NAME CHAR(50)F_ID NOT NULLVARCHAR2(30)

    POSTVARCHAR2(30)

    QUALIFICATION VARCHAR2(50)

    RESEARCH_AREAVARCHAR2(200)

  • 8/14/2019 Digital Content Development for the Department_final

    20/41

    DATABASE AND TABLESDATABASE AND TABLEScontinued..continued..

    SQL> desc STAFF

    Name Null?Type

    ----------------------------------------- -----------------------------------

    DEPT_IDVARCHAR2(30)

    STAFF_NAME CHAR(50)

    STAFF_ID NOT NULL VARCHAR2(30)

    POSTVARCHAR2(30)

    QUALIFICATIONVARCHAR2(50)

    DO

  • 8/14/2019 Digital Content Development for the Department_final

    21/41

    DATABASE AND TABLESDATABASE AND TABLEScontinued..continued..

    SQL> desc STUDENTName Null? Type----------------------------------------- -------- --------------------DEPT_ID

    VARCHAR2(30)STUDENT_NAME CHAR(50)STUDENT_ID

    VARCHAR2(30)REGISTRATION_NO NOT NULL NUMBER(30)

    SEMESTERVARCHAR2(50)E_MAIL

    VARCHAR2(100)PHONE_NO

    NUMBER(15)

  • 8/14/2019 Digital Content Development for the Department_final

    22/41

  • 8/14/2019 Digital Content Development for the Department_final

    23/41

    DATABASE AND TABLESDATABASE AND TABLEScontinued..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)

  • 8/14/2019 Digital Content Development for the Department_final

    24/41

    DATABASE AND TABLESDATABASE AND TABLEScontinued..continued..

    SQL> desc LIBRARYName 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)

  • 8/14/2019 Digital Content Development for the Department_final

    25/41

    DATABASE AND TABLESDATABASE AND TABLEScontinued..continued..

    SQL> desc BOOKName Null? Type----------------------------------------- -------- ------------------

    DEPT_ID VARCHAR2(30)BOOK_NAME CHAR(50)BOOK_NO NOT NULL VARCHAR2(30)NAME_OF_AUTHOR CHAR(35)PUBLICATION VARCHAR2(36)

  • 8/14/2019 Digital Content Development for the Department_final

    26/41

    DATABASE AND TABLESDATABASE AND TABLEScontinued..continued..

    SQL> desc JOURNALS

    Name Null? Type

    ----------------------------------------- -------- ------------------

    DEPT_IDVARCHAR2(30)

    JOURNAL_NAME

    JOURNAL_NO NOT NULL

    VARCHAR2(30)NAME_OF_AUTHOR CHAR(35)

    PUBLICATIONVARCHAR2(36)

  • 8/14/2019 Digital Content Development for the Department_final

    27/41

    DATABASE AND TABLESDATABASE AND TABLEScontinued..continued..

    SQL> desc ADMISSION

    Name Null? Type

    ----------------------------------------- -------- -------------------------

    DEPT_IDVARCHAR2(30)

    NAME_OF_STUDENT_ADMITTED CHAR(50)

    YEAR

    VARCHAR2(30)STUDENT_ID NOT NULL

    VARCHAR2(35)

    REGISTRATION_NONUMBER(30)

  • 8/14/2019 Digital Content Development for the Department_final

    28/41

    DATABASE AND TABLESDATABASE AND TABLEScontinued..continued..

    SQL> desc EXAMINATION

    Name Null?

    Type----------------------------------------- --------

    ---------------------------

    DEPT_IDVARCHAR2(30)

    SEMESTER NOT NULLVARCHAR2(50)

    NO_OF_THEORYPAPERS NUMBER(30)

    NO_OF_PRACTICALS NUMBER(35)

    TOTAL_MARKSNUMBER(35)

  • 8/14/2019 Digital Content Development for the Department_final

    29/41

    DATABASE AND TABLESDATABASE AND TABLEScontinued..continued..

    SQL> desc RESULTName Null? Type----------------------------------------- -------- ------------------

    DEPT_IDVARCHAR2(30)

    REGISTRATION_NO NUMBER(30)RESULT

    VARCHAR2(20)

    SEMESTERVARCHAR2(20)

    ROLL_NO NOT NULL NUMBER(20)

  • 8/14/2019 Digital Content Development for the Department_final

    30/41

    DATABASE AND TABLESDATABASE AND TABLEScontinued..continued..

    SQL> desc TNP

    Name Null? Type

    ----------------------------------------- -------- ------------------DEPT_IDVARCHAR2(20)

    TNP_YEAR NOT NULL NUMBER(20)

    TNP_STATUS

    VARCHAR2(20)STUDENTS_TRAINING NUMBER(20)

    STUDENTS_PLACED NUMBER(20)

    HIGHEST_RECRUITERS VARCHAR2(20)

  • 8/14/2019 Digital Content Development for the Department_final

    31/41

    SNAPSHOTSSNAPSHOTS

    Figure: Snapshot for

  • 8/14/2019 Digital Content Development for the Department_final

    32/41

    SNAPSHOTSSNAPSHOTS

    Figure: Snapshot for Teaching &Nonteaching Staff

  • 8/14/2019 Digital Content Development for the Department_final

    33/41

    SNAPSHOTSSNAPSHOTS

    Figure: Snapshot for

  • 8/14/2019 Digital Content Development for the Department_final

    34/41

    SNAPSHOTSSNAPSHOTS

    Figure: Snapshot for Digital

  • 8/14/2019 Digital Content Development for the Department_final

    35/41

    SNAPSHOTSSNAPSHOTS

    Fig:5 Snapshot for Retrieval for Faculty

  • 8/14/2019 Digital Content Development for the Department_final

    36/41

    SNAPSHOTSSNAPSHOTS

    Figure: Snapshot for Faculty Information after

  • 8/14/2019 Digital Content Development for the Department_final

    37/41

    TESTINGTESTING

    Software testing is the execution ofthe software with actual test data.

    TYPES

    Unit

    Integration

    System

    Acceptance

  • 8/14/2019 Digital Content Development for the Department_final

    38/41

    TESTINGTESTING continued..continued..

    METHODS White box testing

    Black box testing

    USED

    White box testing

  • 8/14/2019 Digital Content Development for the Department_final

    39/41

    REMARKS & CONCLUSIONREMARKS & CONCLUSION

    This developed digital conte

    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

  • 8/14/2019 Digital Content Development for the Department_final

    40/41

    REFERENCESREFERENCES

    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

    http://www.bitpipe.com/tlist/Content-Management.htmlhttp://www.greenstone.org/
  • 8/14/2019 Digital Content Development for the Department_final

    41/41

    THANK YOU!!THANK YOU!!