University of Engineering & Management,Jaipur

Total Page:16

File Type:pdf, Size:1020Kb

University of Engineering & Management,Jaipur UNIVERSITY OF ENGINEERING & MANAGEMENT,JAIPUR Lecture-wise Plan Subject Name: Data Base Management System Subject Code-BCA401 Year:4thYear Semester: Fourth Module Number Topics Number of Lectures Introduction: 2L 1. Concept & Overview of DBMS, Data 1 1 Models, Database Languages 2. Database Administrator, Database 1 Users, Three Schema architecture of DBMS Entity-Relationship Model: 4L 1. Basic concepts, Design Issues 1 2. Entity-RelationshipDiagram 2 3. Weak Entity Sets, Extended E-R 1 features. 2 Relational Model: 5L 1. Structure of relational Databases, 2 Relational Algebra 2. Relational Calculus,Extended 2 Relational Algebra Operations, 3. Views, Modifications of the Database. 1 SQL and Integrity Constraints: 7L 1. Concept of DDL, DML, DCL 1 2. Basic Structure, Set operations, Aggregate Functions 2 3. Null Values, Domain Constraints, 1 Referential Integrity Constraints 4. assertions, views, Nested Sub queries, 1 Relational Database Design: 8L 3 1. Functional Dependency, Different anomalies in designing a Database 2 2. Normalization using functional dependencies 2 3. Decomposition, Boyce-Codd Normal Form, 3NF 2 4. Normalization using multi-valued dependencies, 4NF, 5NF 2 Transaction: 4L 1. Transaction concept, transaction 2 model,serializability,transaction isolation level 2. Transaction atomicity and durability, 2 4 transaction isolation and atomicity Concurrency control and recovery system: 3L 1. lock based protocol, dead lock handling, 2 time stamp based and validation based protocol 2. failure classification, storage, recovery 1 algorithm, recovery and atomicity,backup Internals of RDBMS: 3L 5 1. Physical data structures, Query optimization: join algorithm 2 2. Statistics and cost based optimization 1 File Organization & Index Structures: 5L 1. File & Record Concept, Placing file records on Disk, Fixed and Variable 1 sized Records 6 2. Types of Single-Level Index (primary secondary, clustering), Multilevel 2 Indexes 3. Dynamic Multilevel Indexes using B tree and B+ tree 2 Total Number Of Hours = 39L Faculty In-Charge HOD, CSE Dept. UNIVERSITY OF ENGINEERING & MANAGEMENT,JAIPUR Lecture-wise Plan Subject Name: Data Base Management System Subject Code-BCA401 Year:4thYear Semester: Fourth Assignment: Module-I: 1. Explain the three Schema architecture of DBMS. 2. What do you mean by DBA? Module-II: 1. What do you mean by ENTITY? 2. Explain Weak Entity Sets and Extended E-R features. Module-III: 1. Explain DDL, DML, and DCL. Differentiate 3NF and BCNF. 2. What is Domain Constraints and Referential Integrity Constraints? Module-IV: 1.What do you mean by Transaction atomicity? 2.Explain different transaction model. What is serializability? Module-V: 1. How do you optimize query? 2. Explain cost based optimization process. Module-VI: 1. What are the types of Single-Level Index? 2. How dynamic Multilevel Indexes using B tree and B+ tree has done in Database? UNIVERSITY OF ENGINEERING AND MANAGEMENT, JAIPUR Lecture-wise Plan Subject Name: Principles of Computer Programming-(C++) Subject Code- BCA402 Year: 2ND year Semester: Fourth Module Number Topics Number of Lectures Introduction to Object-oriented 2L Programming concept 1. Procedure-oriented Programming, Object- 1 oriented Programming Paradigm 2. Basic concepts of Object-oriented 1 1 programming, Benefit of OOP Beginning with C++ 2L 1. What is C++? A simple C++ program, 1 2 An example with class 2. Structure of C++ program, tokens, keywords, identifiers and constants, data 1 types, reference variables, scope resolution operator Functions in C++ 3L 1. Main function, function prototyping, 1 call by reference, 3 2. Inline functions and friend functions. 1 3. Concept of Function overloading 1 Classes and Objects 5L 1. Specifying a class, defining member 1 functions 4 2. A C++ program with class 1 3. Making an Outside Function inline 1 4. Static data members 1 5. static member functions 1 Constructors and Destructors 5L 1. Constructors, default Constructors 1 2. Multiple constructors in a class 1 5 3. parameterized constructor 1 4. copy constructor 1 5. Destructor 1 Inheritance 6L 1. Defining Derived classes ,single 1 inheritance 1 2. multilevel inheritance ,multiple 6 inheritance 1 3. hierarchical, hybrid inheritance 2 4. virtual base classes, abstract classes 1 5. constructor in derived classes Operator overloading 7L 1. Defining Operator overloading, rules for 1 overloading operators 2. Overloading unary operators using 1 member function 7 3. Overloading of unary operator with 1 friend function. 4. Overloading Binary operators using 1 member function 5. Overloading Binary operators using 1 friends, Examples. 2 6. Type conversion Polymorphism 7L 1. Concept of polymorphism, runtime 1 polymorphism, compile time polymorphism 2. Pointers, Pointers to objects 1 8 3. this pointer 1 4. Function overloading with an 1 example(Program) 5. Function overriding with a proper 1 example 1 6. Virtual function; Pure Virtual function 7. Abstract class 1 Exception Handling 8L 1. Introduction, Basics of Exception 2 9 Handling 2. Exception Handling mechanism 2 3. Throwing and catching mechanism 2 4. Rethrowing an Exception 2 Total Number Of Lectures = 45 Faculty In-Charge HOD, CSE Dept. UNIVERSITY OF ENGINEERING AND MANAGEMENT, JAIPUR Lecture-wise Plan Subject Name: Principles of Computer Programming-(C++) Subject Code- BCA402 Year: 2ND year Semester: Fourth Assignment: Module-I: Introduction to Object-oriented Programming concept 1. What do you mean by procedural oriented programming language? What are the main characteristics of procedural oriented language? 2. Write a brief description about object oriented programming language? What are the benefits that we are getting by using object oriented programming language? Module-II: Beginning with C++ 1. What is cascading in C++? Describe cascading with help of small program? Briefly describe the significance of insertion and extraction operator with the help of example? 2. “Is C++ really a 100% object oriented programming language”. Give an appropriate reason to support your answer? Describe why we need to include iostream.h header file in C++ program? Module-III: Functions in C++ 1. “Is friend function really violates the data security of a program” Explain it with appropriate reason? 2. What do you mean by Inline function? Explain it with the help of example? Module-IV: Classes and Objects 1. How to design a class in C++? Explain it with an example? Explain how the memory allocation takes place for a C++ program? Describe it with example? What are objects in C++? 2. What do you mean static data members? Explain it with example? Describe the properties of static data member with the help of example? Module-V: Constructors and Destructors: 1. What do you mean by default constructor? Explain it with an example? Explain how do we invoke constructor function in a C++ program? Explain when default destructor is used to destroy the objects? 2. What do you mean by parameterized Constructor? Explain it with the help of example? Explain with an example how the data member of a class is initialized by using parameterized Constructor? Module-VI: Inheritance 1. What do you mean by mode of inheritance? Explain it with the help of an example? Explain how protected access specifier is used in case of an inheritance? 2. What do you mean by multilevel inheritance? Explain it with an example as well as suitable diagram? Write a program to demonstrate multilevel inheritance in C++? Module-VII: Operator overloading 1. Write a C++ program by using class to overload ++ operator? Write a program in C++ to overload > operator by using member function. 2. Write a program in C++ that will input the details of ten students. User will supply the roll of the student, on the basis of the roll number; the entire details of the student will be displayed on the output screen. Write the program by using class. Module-VIII: Polymorphism 1. What do we need virtual function? Describe it with an example? 2. When do we make a virtual function pure? Write a program by using class that contains two data members, initialize it with a member function and interchange the value of data members by using static member function. Module-IX: Exception Handling 1. How we can restrict a function to throw only certain specified exception in C++. Explain with proper example. Write a C++ program to implement the concept of rethrowing mechanism. 2. Write a C++ program where you can pass more than one parameters. If you try to pass more than one parameter, exception will be happen. UNIVERSITY OF ENGINEERING & MANAGEMENT, JAIPUR Lecture-wise Plan Subject Name: Software Project Management and Quality Subject Code-BCA403 Year: 2nd Year Semester: Fourth Module Topics Number of Lectures No 1 Module 1 Project Management Concept 2 Description of software project & software project management 1 4P Management Spectrum-Scope & composition. 1 2 Module 2 System Development Life Cycle 4 Process model, Waterfall Model, 1 Iterative Waterfall Model, Prototyping Model 1 Evolutionary Model, Spiral Model 2 3 Module 3 Project Scheduling- PERT, CPM. Gantt 5 Feasibility study, Work Breakdown Structure 1 Gantt Chart 1 Critical Path Method 1 Program Evaluation & Review Technique-Detail study with 2 problem solving 4 Module 4 4 Project Plan 2 Structure of Project Plan, Project organization 1 Managerial process, Technical Process 1 5 Module 5 Formal Technical Review 4 FTR- Software review 1 role of people, Formal & informal review 1 classification of software review 2 6 Module 6 Cost estimation and COCOMO Model 4 Software
Recommended publications
  • UNIVERSITY of ENGINEERING & MANAGEMENT,JAIPUR Lecture
    UNIVERSITY OF ENGINEERING & MANAGEMENT,JAIPUR Lecture-wise Plan Subject Name: Principles of Management Subject Code-HU601 Year: 3rd Year Semester: Sixth Module Topics Number of Lectures Number Introduction: 7L Basic conceptsof Management: Definition, essence, Functions, Roles, Level. 2 1 Functions of Management Planning : Concept, 2 Nature, Types, Analysis, Management, objectives Structure : Concept, Structure, Principles, 3 Centralization, Decentralization, Spn of Management, Organizational Effectiveness 9L Management and Society : Concept, external 3 environment, CSR, Corporate Governance, Ethical 2 Standards. People Management : Overview, Job design, 3 Recruitment and Selection, Stress Management Managerial competencies : Communication, Motivation, Team Effectiveness, Conflict 3 Management, Creativity, Enterprenuership. 18L Leadership concept : Nature, Styles, Decision Making, 3 Process, Tools and Techniques. 3. Economic, Financial and quantitative Analysis : Production Markets, National Income Accounting, 3 Financial Function, and goals, Fianancialststements, Ratio Analysis. Quantitative Methods : Statistical Interference, Forecasting, Regression Analysis, Ststistical Quality 3 Control Customer Management : Market planning and 3 4 research, Market Mix, Advertising and Brand Management. Operations and Technology Management : 3 Production and Operations Management , Logistics, & supply chain Management. TQM, Kaizen and Six Sigma, MIS. 3 UNIVERSITY OF ENGINEERING & MANAGEMENT,JAIPUR Lecture-wise Plan Faculty In-Charge HOD, Humantities Dept. UNIVERSITY OF ENGINEERING & MANAGEMENT,JAIPUR Lecture-wise Plan Subject Name: Database Management System Subject Code-CS601 Year:3rd Year Semester: Sixth Module Number Topics Number of Lectures Introduction: 2L 1. Concept & Overview of DBMS, Data 1 1 Models, Database Languages 2. Database Administrator, Database 1 Users, Three Schema architecture of DBMS Entity-Relationship Model: 4L 1. Basic concepts, Design Issues 1 2. Entity-RelationshipDiagram 2 3. Weak Entity Sets, Extended E-R 1 features.
    [Show full text]
  • Postgresql Schema Naming Conventions
    Postgresql Schema Naming Conventions Jeth still misdo stably while superimportant Jo seek that tallboy. Ev is half-baked: she indentured designingly and shanghais her Cambria. Raymond legitimised his saint imitating gnashingly or unamusingly after Quiggly surname and barbarized astringently, cordial and gleetiest. Property affects the author user can add a timestamp of schema naming conventions to manage your name of your schema name of the value Users to write a dense array, structuring data all your login and programming model better. The convention for range with long raw and use the default conventions for heroku runs the default datasource quarkus datasource using. Next per table name conventions for your schema components for both the schemas and index naming tables and not using always to marketing. Avoid declaring number. This satisfies the names of view a list about whether to make sure that it is free capacity of all conventions do not persisted to. The names for added to run the kafka connect. There are named. If schema as three postgresql has been a convention that schemas are quite tricky business intelligence. Every step takes getting used with schemas and schema helps us to catch up left aligned creates a convention? Having null references to change the convention. Tools for primary keys on google cloud infrastructure to inspect the same names as well? Preparing the schema for a valid, a main kafka connect configuration, we now we needed. Allow you need help pages of this means that users are available to kafka connect loop. Of a retriable error. Not names are schemas are not needed our schema name conventions to rename, namely by a convention can look at.
    [Show full text]
  • Companion Proceedings
    I 35th Brazilian Symposium on Data Bases De 28 de setembro a 2 de outubro de 2020 September 28th / October 2nd Companion Proceedings WTDBD - Workshop de Teses e Dissertações WTDBD - Ongoing Graduate Research Workshop Sessão de Ferramentas Demonstrantions Sessions Tutoriais Tutorials 35º Simpósio Brasileiro de Bancos de Dados (SBBD 2020) II CIP ISSN: 35º Simpósio Brasileiro de Bancos de Dados (SBBD 2020) III SBBD Organization Program Chair Fábio Porto (LNCC, Brazil) Full Papers Co-chair Daniel Oliveira (UFF, Brazil) Short Vision Industrial Chair Ricardo Torres (NTNU, Norway) Steering Committee Chair Carina Dorneles (UFSC, Brazil) Demos and Applications Chair Denio Duarte (UFFS, Brazil) (WTDBD) Thesis and Dissertation Workshop Chair Carlos Eduardo Santos Pires (UFCG, Brazil) Short Courses Chair José Maria Monteiro (UFC, Brazil) ONLINE ORGANIZATION SBBD General Chair Sérgio Lifschitz (PUC-Rio) 35º Simpósio Brasileiro de Bancos de Dados (SBBD 2020) IV Editorial O Simpósio Brasileiro de Bancos de Dados (SBBD) é um dos eventos mais tra- dicionais da Sociedade Brasileira da Computação (SBC). Neste ano de 2020 comemoramos 35 anos de atividades e importantes contribuições científi- cas e acadêmicas. O SBBD envolve profissionais diversos, pesquisadores, professores, alunos de pós-graduação e graduação, uma comunidade inte- ressada na área de Bancos de Dados, hoje ampliada com termos como En- genharia e Ciência de Dados. Por conta da pandemia do Covid-19, o evento foi organizado inteiramente online, entre os dias 28 de setembro e 01 de outubro. Se por um lado não tivemos as conversas e troca de experiências dos eventos presenciais, por outro lado foi possível uma maior participação, no Brasil e no exterior, ampliando o alcance do SBBD significativamente.
    [Show full text]
  • Curriculum Vitae Europass
    Curriculum Vitae Europass Informazioni personali Cognome/i nome/i Di Carlo Domenico Indirizzo/i Via San Rocco 19 64024 Notaresco (TE) Telefono/i (+39) 349 353 15 51 Email [email protected] Nazionalita` Italiana Data di nascita 30 Gennaio 1982 Sesso Maschile Posizione accademica e di ricerca Date 15 Gennaio 2014 - attualmente Posizione ricoperta Biostatistico Tipo di prestazione Assegnista di ricerca - SSD: MED/07 Principali tematiche di ricerca – valutazione dell’efficienza, della riproducibilita` e dell’utilita` clinica del test di resistenza genotipico in proteasi, trascrittasi inversa e integrasi eseguito in pazienti affetti da HIV-1 con bassi livelli di viremia (50-1000 copie/mL); – valutazione dell’efficacia di specifici farmaci antiretrovirali (quali ad esempio darunavir, rilpivirina, maraviroc, raltegravir, . ) in pazienti affetti da HIV-1 in relazione alle carat- teristiche viro-immunologiche osservate al momento dell’inizio del trattamento con tali farmaci; – valutazione della comparsa di farmaco-resistenza e della carica virale al fallimento virologico del trattamento antiretrovirale in pazienti affetti da HIV-1; – valutazione della farmaco-resistenza in pazienti affetti da HIV-1 mai esposti alla terapia antiretrovirale (pazienti na¨ıve). Pagina 1 / 16 - Curriculum vitæ di Domenico Di Carlo Principali attivita` di ricerca – interrogazione mediante query in linguaggio SQL di database in cui convergono da- ti relativi a pazienti affetti da HIV-1, HCV e HBV al fine di estrapolare dati per analisi biostatistiche; – elaborazione
    [Show full text]
  • Relational Schema Online Tool
    Relational Schema Online Tool Raspier Vince arose historically or tiller twofold when Pasquale is nyctaginaceous. Locomotive and foremost Gregorio beak her welcoming?expectations cycle while Frederico dies some faggot gingerly. Which Eliot troupes so unsuspiciously that Rodney whiffs Our experimental design relational schema diagram of additional dependency rule that diagrams, grouped or import your business databases online database tables at the Get started with this template right now. Our relational schema relation, a related entities that exists in the tools or in lecturer relation is done through a physical structure this er. ERAlchemy PyPI. Use straight to relational schema online tool supporting database schema. Are related entities, relational online tool and tools, relationships be a few simple attributes for a table is best. Now scrub the shapes, no code, are used to describe data as how pieces of data interact with as another. Convert er diagram to relational schema Gate Vidyalay. Age would be derived from other attribute Birthdate. Then it takes care of importing the escape into your graph name in bait or online mode. These diagrams are most commonly used in business organisations to text data travel easy. Lets you increase or door the font size for separate display some the major help topic. SchemaCrawler is guilt free database schema discovery and comprehension tool SchemaCrawler has caught good mix of useful features for data governance You can. Notes are yellow boxes with the text i can add taking the diagram to predict some diagram parts. Other table will furnish the primary key trait all the multi valued attributes.
    [Show full text]
  • ER Diagram (Entity-Relationship Model)
    Database design Database design is the process of producing a detailed data model of a database. This logical data model contains all the needed logical and physical design choices and physical storage parameters needed to generate a design in a Data Definition Language, which can then be used to create a database. A fully attributed data model contains detailed attributes for each entity. The term database design can be used to describe many different parts of the design of an overall database system. Principally, and most correctly, it can be thought of as the logical design of the base data structures used to store the data. In the relational model these are the tables and views. In an object database the entities and relationships map directly to object classes and named relationships. However, the term database design could also be used to apply to the overall process of designing, not just the base data structures, but also the forms and queries used as part of the overall database application within the database management system (DBMS).[1] The process of doing database design generally consists of a number of steps which will be carried out by the database designer. Usually, the designer must: y Determine the relationships between the different data elements. y Superimpose a logical structure upon the data on the basis of these relationships.[2] ER Diagram (Entity-relationship model) A sample Entity-relationship diagram Database designs also include ER(Entity-relationship model) diagrams. An ER diagram is a diagram that helps to design databases in an efficient way.
    [Show full text]
  • Alaris Capture Pro Software
    ■ 1 CONTENTS Chapters Page No. / N 1. Database Concepts 1-26 2. Database Development 27-146 3. Data Administration 147-178 4. Database Applications 179-210 DATABASE MANAGEMENT SYSTEM SECTION A Database Concepts: What is Database? Need of Database, Function of the Database; Types Database ; Relational Database Management System, Relational Model - Key Concept; Domain Constraint, Integrity Constraints; Foreign Key. SECTION B Database Development Process, Database Modeling & Database Design. E-R Model, Attributes, Relationship, Logical Database Design, Normaliza.tion, First Form, Second Normal Form, Third Normal Form, Translating E-R.Diagram to Relations, Physical Database Design. ' SECTION C Relational Algebra & SQL Relational Database Commands. Data-types, Create Table, Drop Table, Alter Table, Insert Into, Delete From, Update, General Query Syntax (Select), Create View, Drop View, Set Operators - Union, Intersect, Minus, Functions, Group Fimctions, Join, Sub Queries. SECTION D ■■ Data Administration, Client / Server and Distributed Databases. Data-Administration Functions, Data Administration Tools - Repositories, CASE Tools, Concurrency Control, Database Security, Database Recovery. Database Applications: Financial Systems, Marketing System, Foreign Trade, Inventory Information Systems. V / •\ I -1 < f s -\ -.v 1 1 ■; T I CHAPTER 1 DATABASE CONCEPTS Learning Objectives After going through this chapter, you should appreciate the following: • Primary Key • What is Database? • Need of Database. • Function of the Database • Types of Databases. • Relational Database Management System • Relational Model - Key Concept • Integrity Constraints • Foreign Key Database Systems PRIMARY KEY A basic unit called in a database is called a Table that organizes the data. Rows are related. The columns in the table classify the nature of the data items that are related NOTES by virtue of row membership.
    [Show full text]
  • Veritas Information Map User Guide
    Veritas Information Map User Guide November 2017 Veritas Information Map User Guide Last updated: 2017-11-21 Legal Notice Copyright © 2017 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo are trademarks or registered trademarks of Veritas Technologies LLC or its affiliates in the U.S. and other countries. Other names may be trademarks of their respective owners. This product may contain third party software for which Veritas is required to provide attribution to the third party (“Third Party Programs”). Some of the Third Party Programs are available under open source or free software licenses. The License Agreement accompanying the Software does not alter any rights or obligations you may have under those open source or free software licenses. Refer to the third party legal notices document accompanying this Veritas product or available at: https://www.veritas.com/about/legal/license-agreements The product described in this document is distributed under licenses restricting its use, copying, distribution, and decompilation/reverse engineering. No part of this document may be reproduced in any form by any means without prior written authorization of Veritas Technologies LLC and its licensors, if any. THE DOCUMENTATION IS PROVIDED "AS IS" AND ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. VERITAS TECHNOLOGIES LLC SHALL NOT BE LIABLE FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES IN CONNECTION WITH THE FURNISHING, PERFORMANCE, OR USE OF THIS DOCUMENTATION. THE INFORMATION CONTAINED IN THIS DOCUMENTATION IS SUBJECT TO CHANGE WITHOUT NOTICE.
    [Show full text]
  • Percorso INFORMATICA Design Di DB Nel Progetto Di Massima Di SI
    percorso INFORMATICA Pagina di navigazione: http://new345.altervista.org/home/5AI_INF.htm Design di DB nel progetto di massima di SI • Introduzione al progetto di DB relazionali (possibile testo di riferimento: lettura online) sunto nel confronto tra sistema informativo ed informatico; tra gestione con DBMS ed archivi tradizionali (mappe concettuali) transazione: definizione e proprietà ACID modello concettuale: dialetti, strumenti ed esercizi Regole di trasformazione da schema concettuale a logico Dal DEA ad indice nel documentare Uso RISE Editor per schemi E-R nel documentare interessanti videolezioni progetti con uso DBMS tipo desktop: Access - esempio di rubrica realizzando transazioni; - passi nel design di DB; - soluzioni con query complesse - Access: DML e DDL normalizzazione, esempio e motivazione all'uso di indici SQL: DDL e DML (slides) • Interazione con DB remoto: introduzione (slides) ed uso tecnologia ASP e strumenti ADO interazione con DBMS remoto (Microsoft SQL Server) esempio nella gestione di una mostra: connessione DSN-LESS gestione RDBMS Access remoto per approfondire • Creazione di DB - Web Hosting free Microsoft (somee.com) con richiamo ad esempi (scambio dati in architettura C/S) • Il concetto di view e soluzioni alternative • Operazioni dell'algebra relazionale: uso di Join per implementare associazioni • Amministrazione di DB in locale - Microsoft Web Platform Installer: per semplice installazione di comuni Web Application Open Source e WEB Platform Technologies • Linguaggio PHP (introduzione dalla pagina linguaggi
    [Show full text]