Semester-V

BCA – 501: RELATIONAL DATABASE MANAGEMENT SYSTEM

Total Lectures = 50

Unit – I

Introduction & features: Concept of RDBMS, Properties of RDBMS, CODD commandments

Table

Unit II: Data constraints

Unit III: Computations in Expression Lists used to Select Data

Joins

Unit IV: Indexes Views

Unit V: PL/SQL

Unit VI:

Text Books:

  1. SQL & PL/SQL For Oracle 11g Black Book, Dr. P.S. Deshpande, Dreamtech Press
  2. SQL, PL/SQL The Programming Language Of Oracle, Ivan Bayross
  3. Commercial Application Development using Oracle Developer 2000, Ivan Bayross, BPB Publ.
  4. Learning Oracle SQL and PL/SQL - A Simplified Approach, Rajeev C. Chatterjee, PHI
  5. Oracle - The Complete Reference, Oracle Press, TMH Edition
  6. SQL-A Complete Reference, Alexis Leon & Mathews Leon, TMH

BCA – 502: ARTIFICIAL INTELLIGENCE THROUGH PYTHON

Total Lectures = 50

Unit – I: Introduction to Python

Unit – II: Python Functions, Modules And Packages

Unit – III: Python File Operation

Unit – IV: Python Exception Handling and Data Base

Artificial Intelligence

Unit – V: Search

Unit – VI:

Text Books:

  1. Dan. W. Patterson, Introduction to A.I and Expert Systems – PHI, 2010
  2. Russell & Norvig, Artificial Intelligence - A Modern Approach, LPE, Pearson Prentice Hall, 2005
  3. Mark Pilgrim, A press, “Dive Into Python”
  4. Swati Saurav, Ekraspes (2018), Learn and Practice Python
  5. Rajendra Akerkar, Introduction to Artificial Intelligence, PHI
  6. Stuart Russel, Peter Norvig, Artificial Intelligence-A Modern Approach, Pearson
  7. N.P. Padhy, Artificial Intelligence and Intelligent Systems, Oxford Univ. Press

BCA – 503: WEB TECHNOLOGY (HTML, JAVA SCRIPT, CSS)

Total Lectures = 50

Unit – I: Fundamentals

WWW, Internet, Web Browsers, Web Servers, URLs, MIME, HTTP.

Unit – II: HTML

Origins of HTML, Basic syntax, Standard HTML page structure, Text markup, Images, HyperLinks, Lists, Tables and Form.

Unit – III: CSS

Introduction, Selectors, Font attributes, List attributes, Color, Alignment of text, The Box model, Background images, The <span> and <div> tags.

Unit - IV: Java Script

Overview: Object notation, Operations, expressions, browser output, keyboard input, Control statements, Object creation, Arrays, Functions, Pattern matching using expressions, error handling, The Document Object Model, Element access, Events and event handling.

Text Books:

  1. Robert W. Sebesta, “Programming the World Wide Web” Pearson Education
  2. M. Deitel, P. J. Deitel, A. B. Goldberg, “Internet & World Wide Web How to Program”, Pearson
  3. Chris Bates, “Web Programming Building Internet Applications”, Wiley India
  4. Jibitish Mishra, Joel Sklar, Don Gosselin, “The Web Warrior Guide to Web Design Technologies”, Cengage Learning India
  5. Uttam K. Roy, “Web Technologies”, Oxford Press

BCA – 504: COMPUTER NETWORK, SECURITY AND CYBER LAW

Total Lectures = 50

Unit – I: Computer Network

Introduction: Definition, its use, goals and structure, network architecture, ISO reference model,
Network Model, Connecting Devices, TCP/IP, UDP
Network Topology: Topology Design process, connectivity analysis, Delay analysis, Backbone design,
Logical Access Design.

Unit – II: Physical Link Layer

Theoretical basis for data communication, Data and signal, Digital and Analog transmission, transmission media, Switching, multiplexing.

Unit – III: Data Link protocols

Data Link controls, Sliding window protocols, Virtual circuits, Routing algorithms, Congestion, Examples of network layers, selected examples,
Error detection and correction, Multiple Access, Congestion control, Framing, MAC Sublayer. IPv4, IPv6 Address, ICMP, IGMP

Unit – IV: Network Security

Introduction: Security Overview, Cyber security fundamentals, Security System design architecture,
The OSI Security Architecture tools and techniques, Current Vulnerabilities - Different Security attacks, Countermeasures,
Security Services, Model for Network Security.

Symmetric Cipher: Classical Encryption techniques, Symmetric Cipher Model, Block Cipher Design principles –
Feistel Structure, DES, Triple DES, Advanced Encryption Standard (AES), Stream Cipher and RC4.

Unit – V:

Public Key Encryption: Message Authentication, RSA Algorithm, Digital Signature.
Network Security Algorithms: Kerberos, X.509, Authentication Services.
System Security: Intrusion Detection, Password management, Virus countermeasure, Firewall.

Unit – VI: Introductory Concept of Cyber Laws

IT Laws, policies and Government Regulations – Global, IT Act – India.

Text Books:

  1. Computer Networks, A.S. Tanenbaum, Pearson
  2. Data Communications and Networking, Behrouz, Forouzan, TMH
  3. Computer Networks, William Stallings, Pearson
  4. Computer Networks and Internets, Douglas E. Comer, Pearson
  5. Data Communications and Computer Networks, Prakash C. Gupta, PHI
  6. Network Security Essentials – Applications and standards, William Stallings, Pearson
  7. Cryptography and Network Security– Principles and Practices, W. Stallings, Pearson, 2018
  8. Cryptography and Network Security, Behrouz Forouzan, TMH
  9. Introduction to Cryptography, Johannes A. Buchmann, Springer
  10. Security in Computing, Charles P. Pfleeger and S.L. Pfleeger, Pearson, 4e, 2011
  11. Cyber Law – The Indian Perspective, Pawan Duggal, Saakshar Law Publications
  12. CYBER SECURITY LAW Kindle Edition, by Pavan Duggal
  13. Cyber Law Simplified, by Vivek Sood, TMH

BCA – 505: LAB ON ORACLE

Total Lab Class = 60

SQL Commands:

Create, alter, drop, truncate, rename
Constraints - Primary key, unique, null, foreign key, default, check
Select, insert, update, delete, connect, revoke, grant, rollback, commit
Oracle functions, index, views (creation, deletion, updating, inserting)
Locking, Making Procedure, Making functions, Cursor programs, Triggers programs

Text Books:

  1. SQL & PL/SQL For Oracle 11g Black Book, Dr. P.S. Deshpande, Dreamtech Press
  2. SQL, PL/SQL The Programming Language Of Oracle, Ivan Bayross

BCA – 506: LAB ON PYTHON & WEB TECHNOLOGY

Total Lab Class = 60

Python Programming

Programming in Python Lab Practical:

  1. Using for loop, print a table of Celsius/Fahrenheit equivalences. Let c be the Celsius temperatures ranging from 0 to 100, for each value of c, print the corresponding Fahrenheit temperature.
  2. Using while loop, produce a table of sins, cosines and tangents. Make a variable x in range from 0 to 10 in steps of 0.2. For each value of x, print the value of sin(x), cos(x) and tan(x).
  3. Write a program that reads an integer value and prints — leap year or — not a leap year.

Python Lab Practical Continued:

  1. Write a program that takes a positive integer n and then produces n lines of output shown as follows.
    For example enter a size: 5
    *
    **
    ***
    ****
    *****
                
  2. Write a function that takes an integer n as input and calculates the value of 1 + 1/1! + 1/2! + 1/3! + ... + 1/n.
  3. Write a function that takes an integer input and calculates the factorial of that number.
  4. Write a function that takes a string input and checks if it's a palindrome or not.
  5. Write a list function to convert a string into a list, as in list("_abc") gives [a, b, c].
  6. Write a program to generate Fibonacci series.
  7. Write a program to check whether the input number is even or odd.
  8. Write a program to compare three numbers and print the largest one.
  9. Write a program to print factors of a given number.
  10. Write a method to calculate GCD of two numbers.
  11. Write a program to create Stack Class and implement all its methods. (Use Lists).
  12. Write a program to create Queue Class and implement all its methods. (Use Lists).
  13. Write a program to implement linear and binary search on lists.
  14. Write a program to sort a list using insertion sort and bubble sort and selection sort.

Web Technology:

HTML:

CSS:

JavaScript Program to: