GUJARAT TECHNOLOGICAL UNIVERSITY DIPLOMA IN COMPUTER ENGINEERING Semester: 4

Size: px
Start display at page:

Download "GUJARAT TECHNOLOGICAL UNIVERSITY DIPLOMA IN COMPUTER ENGINEERING Semester: 4"

Transcription

1 GUJARAT TECHNOLOGICAL UNIVERSITY DIPLOMA IN COMPUTER ENGINEERING Semester: 4 Subject Name System analysis and Design Sr. No. Course content Introduction 1.1. The Software Engineering Discipline - evolution and Impact 1.2. Programs vs. Software Products 1.3. Software process and software engineering methods 1.4. Attributes of good software Professional and ethical responsibility System Development Life Cycle 2.1 Introduction to system development life cycle (SDLC). 2.2 Various phases Study Analysis Design Development Implementation and Maintenance 2.3 System Documentation considerations Principles of system Documentation Types of documentation and their importance Enforcing documentation discipline in an Organization Software Life cycle Models 3.1. Introduction of Life Cycle Model 3.2. Life Cycle Models CLASSICAL WATERFALL MODEL ITERATIVE WATERFALL MODEL PROTOTYPE MODEL EVOLUTIONARY MODEL SPIRAL MODEL 3.3. Comparison between different life cycle models System requirement specification and System Planning 4.1. Requirements gathering and analysis 4.2. Software requirement specification ( SRS ) Content of SRS Document Functional requirement Traceability Characteristics of good SRS Document Techniques of representing Complex Logic 4.3. Formal System Development Techniques What is a formal technique? Model vs. Property oriented methods

2 Operational Semantics Merits and Limitations of Formal Methods 4.4. Data and fact gathering techniques Interviews Group Communication Presentation Site visits Feasibility study and its importance System Design and Modeling 5.1. Process modeling 5.2. Logical and Physical Design Design representation System Flowchart and structured charts Data Flow Diagram Common diagramming concentration and guidelines using DFD ERD for data modeling and system Analysis Object Modeling using UML AND User Interface Design 6.1. Use Case Model Actors Use cases Use case diagram 6.2. Sequence Models 6.3. Activity Models Activities Branches Initiation and termination Concurrent Activities Executable Activity Diagram 6.4. Classification of forms Input/Output forms design User-interface Design Graphical Interface Modular and structured Design 7.1. Module Specification Module Coupling and cohesion Top-Down and bottom-up design System Implementation and Maintenance 8.1. Planning Consideration Conversion methods, Procedure and controls System Acceptance criteria System evaluation and performance Testing and validation System Quality control and Assurance Maintenance activities and issues

3 LABORATORY EXPERIENCES : Case studies 1. Pay roll 2. Customer order processing & invoicing. 3. Account Receivable. 4. Account Payable. 5. Financial Accounting System. 6. Inventory Management. 7. Purchase system. 8. Library Automation. 9. Student registration system. 10. Vehicle registration system. 11. Laboratory system. A standard layout is to be adopted for all Case studies 1. Key Information needs. 1.1 Analysis of Existing or New System. 1.2 Create Manual Reports. 2. Transaction processing and management control. 3. Report design and data collection methods, routing, frequency etc:- 3.1 Input 3.2 Output 3.3 Control Reports. 4. Data Flow Diagram (DFD) of System. 5. Computer System Design:- 5.1 Master Files. 5.2 Transaction Files. 5.3 Checks & Controls. Reference Books: 1. Structured system analysis and design. Madhulika Jain 2. Fundamentals of Software Engineering, second edition, Rajib Mall PHI 3. Object Oriented Modeling and design with UML, second edition, By Michael R Blaha and James R Rambaugh 4. Software engineering for students forth ed. Dougless Bell Pearson 5. System Analysis and Design, Elias M. Awad, GP. 6. Software engg. Deepak Jain Oxford

4 GUJARAT TECHNOLOGICAL UNIVERSITY DIPLOMA IN COMPUTER ENGINEERING Semester: 4 Subject Name Visual Basic Sr. No. Course content 1. Introduction to Visual Basic 1.1. Programming Languages Procedural, Object Oriented & Event Driven 1.2. The Visual Basic Programming Environment Menu bar Toolbar Toolbox Form Window Project Container Window Project Window Properties Window Form Layout Window Object Model Objects, Methods, Properties, Events 2. Standard Controls of Visual Basic 2.1 Clicking Buttons to Perform Actions 2.2 Controls For Displaying and Entering the Text Textbox Label 2.3 Controls That Presents choices to Users Selecting Individual Options with Check Boxes Grouping Options with Option Buttons Using List Boxes & Combo Boxes Using Scrolling Bars As Input Devices Controls That Display Pictures & Graphics Picture Box Image, Shape & Line Controls 2.4 Data Access Controls Data Controls, ADO data control, Datalist, Datacombo, Datagrid, Microsoft Hierarchical Flexgrid Control 2.5 File System Controls DriveListBox DirListBox FileListBox 2.6 Miscellaneous Controls Timer OLE Common Dialog Control

5 (Properties should be covered: Backcolor, Controlbox, Height, width, scalemode, windowstate, showintaskbar, visible, name, caption, text, forecolor, Icon, cancel, enabled, style, Tabindex, tabstop, tooltiptext, locked, passwordchar, scrollbars, autosize, font, borderstyle, value, wordwrap, columns, list, listcount, multiselect, newindex, selected, sorted, picture, interval, largechange, smallchange, drive, path. Etc.) (Events: Activate, Deactivate, DragDrop, Load, Resize, Unload, Paint, Initialize, QueryUnload, Terminate, Click, Mousedown, Mouseup, Change, Validate, DblClick, Dropdown, Timer, Change, Scroll, Pathchange, Patternchange, gotfocus, lostfocus, keypress, keydown, change etc.) (Methods: Hide, show, unload, setfocus, additem, clear, refresh, removeitem, circle, cls, line, paintpicutre, Zorder, etc.) 3. Working with Menus 3.1 Basics of menu Menu title, Menu Item, Menu bar, Separator Bar, Menu 3.2 Pop-up Menus 3.3 Add an access key to menu item 3.4 Assign shortcut key to a menu item 3.5 Disable menu & Enable a menu command by using program code 4. The Structure of a Visual Basic Project 4.1 Types Of Modules 4.1.1Form Modules 4.1.2Class Modules 4.1.3Standard Modules 4.2 MDI 4.2.1Parent-Child Relationship 5. Variables, Constants, Data Types, Operators 5.1 Variables 5.1.1Declaring Variables 5.1.2Storing and Retrieving Data in Variables 5.1.3Implicit & Explicit Declaration 5.2 Scope of Variables Private, Public & Local Variable Variables Used within a Module

6 5.2.3 Variables Used by all Modules 5.3 Static Variables 5.4 Constants 5.5 Data Types Numeric, String, Byte, Boolean, Date, Object, Variant, Currency, Floating Point Converting Data Types User Defined Data Types (Type. End Type) 5.6 Arrays Fixed Size Array Declaring Fixed Size Array Setting Upper and Lower Bound Multidimensional Array Dynamic Arrays To Create a Dynamic Array Preserving the contents of Dynamic Array 5.7 Operators Arithmetic Operators Comparison Operators Concatenation Operators Logical Operators 6. Procedures & Control Structures 6.1 Sub Procedures 6.1.1General Procedure 6.1.2Event Procedure 6.2 Function Procedure 6.3 Working with Procedure 6.3.1Creating a New Procedure 6.3.2Calling Procedures, Sub Procedures, Function Procedure, Calling procedure in Other Modules, Procedures in Form, Procedures in Class Modules, Procedures in Standard Modules 6.4 Passing Arguments to Procedures Passing Arguments By Value & Passing Arguments By Reference Named Argument Parameter Array : Variable no of arguments 6.5 Control Structure 6.6 Decision Structures If Then If.Then.Else Select Case 6.7 Loop Structures Do.Loop (Do While Loop, Do. Loop While) For.Next For Each.Next

7 6.8 Exiting From Control Structures, Sub or Function Procedures 7. Inbuilt Functions 7.1 System Clock Functions Time, Date, Now, Hour, Minute, Second, Day, Month, Year, Weekday 7.2 String Functions Ucase, Lcase, Len, Right, Left, Mid, Instr, String, Asc,Chr, Xor 7.3 Math Functions Abs, Atn, Cos, Exp, Rnd, Sgn,,Sin, Sqr, Str, Tan, Val 7.4 InputBox & MsgBox 7.5 Format function 8. Error Handling & Debugging 8.1 With Error Statement 8.1.1On Error Goto line 8.1.2On Error Resume Next 8.1.3On Error Goto Err Object 8.2 Debugging Tools Immediate Window Local Window Watch Window Call Stack Step into, Step out, Step Over Break Point 8.3 Debug Object Print & Assert Methods 9. Database Handling 9.1 Use of ADO to build bound forms 9.2 Use of ADO to build unbound forms (Active X Data object) (Use all Data Access Controls which is given ) 9.3 Using the Data Environment Designer Steps to Design Report Creating Connection in the Data Environment Creating Command Objects Binding Data Controls on the Form Creating Child Command Objects Using Data Reports (Also Use parameterized query to call report) LABORATORY EXPERIENCES: 1. Design a simple application which enhance the use of textbox, label, command button, option button, check boxes, frame controls 2. Design a simple application which enhance the use of ComboBox,

8 ListBox (To add an item, Remove an item, to search the item etc.) 3. Design a simple application which make use of image control, picture box, timer controls, Scroll bars 4. Make use of Line & Shape control 5. Make an application which is relevant to File system controls & Common dialog box control 6. Explore the OLE control 7. Develop an application which enhance the standard module, class modules & Form modules 8. Develop a menu with MDI forms 9. Develop some error handling routines in your application 10. Develop a small database management system using ADO. 11. ActiveX objects. 12. Reports using Data Environment Reference Books: 1 Visual Basic Breadly THM BPB 2 Mastering VB 6 3 Peter Norton s Guide To Visual Basic 6 Peter Norton Techmedia QUE 4 Using Visual Basic 6 Special Edition

9 GUJARAT TECHNOLOGICAL UNIVERSITY DIPLOMA IN COMPUTER ENGINEERING Semester: 4 Subject Name Computer Organization and Architecture Sr. No. Course content 1. REGISTER-TRANSFER AND MICRO-OPERATIONS: 1.1 Register - Transfer-Language 1.2 Register Transfer 1.3 Bus Transfer and Memory Transfer 1.4 Arithmetic Micro-Operations 1.5 Logic micro operations 1.6 Shift Micro operation. 1.7 Arithmetic Logic Shift Unit 2. BASIC COMPUTER ORGANISATION: 2.1 Instruction Codes 2.2 Computer Registers 2.3 Computer Instructions 2.4 Timing and Control 2.5 Instruction Cycle 2.6 Memory Reference Instructions 2.7 Input-Output and Interrupt 2.8 Complete Computer Description 3. CENTRAL PROCESSOR ORGANIZATION: 3.1 Introduction 3.2 General Register Organization 3.3 Stack Organization 3.4 Instruction Formats 3.5 Addressing Modes 3.6 Data Transfer and manipulation: 3.7 Program Control 3.8 RISC CISC Characteristics RISC Characteristics

10 4. MICROPROGRAMMED CONTROL: 4.1 Control Memory 4.2 Address Sequencing 4.3 Microprogram Example 4.4 Design of Control Unit 5. PIPELINE AND VECTOR PROCESSING: 5.1 Parallel Processing 5.2 Pipelining 5.3 Arithmetic Pipeline 5.4 Instruction Pipeline 5.5 RISC Pipelining 5.6 Vector Processing 6. INPUT/OUTPUT ORGANIZATION: 6.1 Input-Output Interface 6.2 Asynchronous Data Transfer Strobe Control Handshaking Asynchronous Serial Transfer 6.3 Modes of Data Transfer 6.4 Input-Output Processor (IOP) 7. MEMORY ORGANIZATION: 7.1 Memory Hierarchy 7.2 Main Memory and Auxiliary Memory 7.3 Associative Memory 7.4 Cache Memory 7.5 Virtual memory Reference Books: (1) Computer System Architecture Third Edition By M. Morris Mano, PHI. (2) Computer Architecture Behrooz Parhami Oxford

11 GUJARAT TECHNOLOGICAL UNIVERSITY DIPLOMA IN COMPUTER ENGINEERING Semester: 4 Subject Name OPERATING SYSTEM Sr. No. Course content 1. Introduction Operating System Concept OS Services Types of Operating Systems Batch Operating System Multiprogramming Multiuser Multiprocessing Distributed Operating System Network Operating System Multithreading Operating System 2. Booting process of Windows XP 3. Process Management Process Concept : Definition, Process States, Process Control Box Process Scheduling Types of Schedulers : Long-term, Medium-term, Short-term Scheduling criteria and performance Scheduling algorithms : FCFS, SRTN, SJN, RR, Priority based preemptive, MLQ Interprocess communication and synchronization Concept and need for interprocess synchronization Mutual Exclusion : Concept and Solution with Semaphore Deadlock Concept Necessary conditions for deadlock to occur 4. Memory Management Single Process Monitor Partitioned Memory allocation : Static, Dynamic Paging Segmentation Virtual Memory

12 5. File and Disk Management File and Directory Concept Disk Organization Disk Allocation Methods : Contiguous, Noncontiguous Disk Scheduling : FCFS, SSTF, SCAN 6. UNIX Overview Features, Components, File Types and Access, Permission, Disk Structure of root, Structure of File System Commands General Purpose : banner, cal, date, who, tty, uname, passwd, be, echo, ps, kill Navigating File System : pwd, cd, mkdir, rmdir, ls File Handling : cat, cp, rm, mv, more, lp, file, wc, split cmp, comm., diff, head, tail, grep, sort, cut, paste, nl, tr, chmod, chown, chgrp Pipelining, Redirection, Tees and Shell Variables Shell environment and programming The if statement, the case statement, looping with for, while and until statements 7. LABORATORY EXERCISES Shell Commands and programming Reference Books: 1. Unix Concepts And Application Sumitabha Da 2. Operating Systems Milan Milenkovic 3. Operating System Concepts James Peterson Wesley Abraham Silberschatz 4. Introduction to Unix & Shell Programming Venkateshmurthy Pearson

13 GUJARAT TECHNOLOGICAL UNIVERSITY DIPLOMA IN COMPUTER ENGINEERING Semester: 4 Subject Name Relational Database Management System Sr. No. Course content Advanced SQL 1.1 Transaction control and DCL Transaction control COMMIT,SAVEPOINT,ROLLBACK DCL GRANT AND REVOKE 1.2 Locks Types of locks Row level locks,table level,locks, share LOCK, EXCLUSIVE LOCK, Exclusive lock, deadlock 1.3 Database Object Synonym Create synonym Sequences Create and alter sequences Views Create/Replace views, Update and alter views Index Unique and composite PL/SQL 2.1 Introduction 2.2 Advantages 2.3 Datatypes 2.4 Control structures Conditional, Iterative, Sequential 2.5 Concepts of error handling Predefined Exceptions User defined exceptions. 2.6 Exception and Cursor Management Static (Implicit & Explicit) Dynamic 2.7 Sub packages and Packages Procedures & Functions Package specification, Package body, Advantage of package.

14 3. 3. TRIGGERS 3.1 Data base Triggers 3.2 Creating Triggers Types of Triggers Before, after for each row, for each statement Functional Dependency and Decomposition 4.1 Introduction 4.2 Functional Dependency Functional dependency diagram and examples Full function dependency (FFD) Armstrong s Axioms for functional dependencies Redundant functional dependencies Closures of a set of functional dependencies 4.3 Decomposition Lossy Decomposition Lossless join decomposition Dependency-Preserving Decomposition Normalization 5.1 Introduction 5.2 Normalization 5.3 Normal Forms First Normal Form Second Normal Form Third Normal Form 5.4 Boyce-codd Normal Forms (BCNF) 5.5 Multi-valued dependencies and Fourth Normal Form Properties of MVDs Fourth Normal Form Problems with MVDs and 4NF 5.6 Join Dependencies and Fifth Normal Forms (5NF) Join Dependency Fifth Normal Form Transaction Processing and Concurrency Control 6.1 Introduction 6.2 Transaction Concepts 6.3 Concurrency 6.4 Locking Methods for concurrency control 6.5 Timestamp methods for concurrency control 6.6 Optimistic methods for concurrency control Database Recovery System 7.1 Introduction 7.2 Database Recovery Concepts Database backup 7.3 Types of database failures 7.4 Types of database recovery 7.5 Recovery techniques 7.6 Buffer management

15 8. 8. Database Security 8.1 Introduction 8.2 Goals of Database Security Threats to database security Types of database security issues Authorization and authentication 8.3 Discretionary Access Control Granting/Revoking Privileges Audit Trails 8.4 Mandatory Access Control 8.5 Firewalls 8.6 Statistical Database Security 8.7 Data Encryption LABORATORY EXPERIENCES : 1. Create synonyms, sequence and index. 2. Create, alter and update views. 3. Create PL/SQL programmes using crushers, control structures, exception handling. 4. Create simple triggers. 5. Create package using procedure and functions. 6. Create users, Grant and revoke privileges. 7. Practice on Normalizations Reference Books: 1. Database Systems Concepts, design and Applications S. K. Singh Pearson Education 2. Database System Concepts, Henry Korth, MGH 3 Database Systems Design, Implementation And Management Seventh or higher ed. Peter Rob /Carlost Coronel Cengage Learning 4 An Introduction to Database Systems C. J. Date Pearson Education 5 Sql/ Pl/SQL Ivan Bayross BPB 6. Oracle Pl/sql by example Rosenzweig & Rakhimov Pearson

16

GUJARAT TECHNOLOGICAL UNIVERSITY DIPLOMA IN INFORMATION TECHNOLOGY Semester: 4

GUJARAT TECHNOLOGICAL UNIVERSITY DIPLOMA IN INFORMATION TECHNOLOGY Semester: 4 GUJARAT TECHNOLOGICAL UNIVERSITY DIPLOMA IN INFORMATION TECHNOLOGY Semester: 4 Subject Name VISUAL BASIC Sr.No Course content 1. 1. Introduction to Visual Basic 1.1. Programming Languages 1.1.1. Procedural,

More information

GUJARAT TECHNOLOGICAL UNIVERSITY DIPLOMA IN INFORMATION TECHNOLOGY Semester: 4

GUJARAT TECHNOLOGICAL UNIVERSITY DIPLOMA IN INFORMATION TECHNOLOGY Semester: 4 GUJARAT TECHNOLOGICAL UNIVERSITY DIPLOMA IN INFORMATION TECHNOLOGY Semester: 4 Subject Name OPERATING SYSTEM Sr.No Course content 1.. Introduction Operating System Concept OS Services Types of Operating

More information

Teaching and Examination Scheme: PAPER HRS TH TU PR TH PR OR TW TOTAL

Teaching and Examination Scheme: PAPER HRS TH TU PR TH PR OR TW TOTAL Course Name : Computer Engineering Group Course Code : CO/CD/CM/CW/IF Semester : Fifth for CO/CM/CW/IF and Sixth for CD Subject Title : Operating System Subject Code : 17512 Teaching and Examination Scheme:

More information

Contents. More Controls 51. Visual Basic 1. Introduction to. xiii. Modify the Project 30. Print the Project Documentation 35

Contents. More Controls 51. Visual Basic 1. Introduction to. xiii. Modify the Project 30. Print the Project Documentation 35 Contents Modify the Project 30 Introduction to Print the Project Documentation 35 Visual Basic 1 Sample Printout 36 Writing Windows Applications The Form Image 36 The Code 37 with Visual Basic 2 The Form

More information

Answer: C. 7. In window we can write code A. Immediate window B. Locals window C. Code editor window D. None of these. Answer: C

Answer: C. 7. In window we can write code A. Immediate window B. Locals window C. Code editor window D. None of these. Answer: C 1. Visual Basic is a tool that allows you to develop application in A. Real time B. Graphical User Interface C. Menu Driven D. None Of These 2. IDE stands for.. A. Internet Development Environment B. Integrated

More information

VEER NARMAD SOUTH GUJARAT UNIVERSITY SURAT B. Com. (Computer Application) 3 rd Year Vocational Course Syllabus SEMESTER 5 Effective From: June 2013

VEER NARMAD SOUTH GUJARAT UNIVERSITY SURAT B. Com. (Computer Application) 3 rd Year Vocational Course Syllabus SEMESTER 5 Effective From: June 2013 Paper No.: 7 Teaching Hours: 3 Hrs./Week Paper Title: Computer Application Paper-VII Credits: 3 (GUI TOOLS) Basic knowledge of computer programming language. To make students aware of programming using

More information

Visual Basic.NET. 1. Which language is not a true object-oriented programming language?

Visual Basic.NET. 1. Which language is not a true object-oriented programming language? Visual Basic.NET Objective Type Questions 1. Which language is not a true object-oriented programming language? a.) VB.NET b.) VB 6 c.) C++ d.) Java Answer: b 2. A GUI: a.) uses buttons, menus, and icons.

More information

Course Contents/Syllabus: Weightage (%) Module I: Introduction to operating system: 15

Course Contents/Syllabus: Weightage (%) Module I: Introduction to operating system: 15 U T T A R P R A D E S H Course Title: Operating Systems Credit Units: 04 Course Level: UG Course Code: CSE202 L T P/ S SW/F W TOTAL CREDIT UNITS 2 1 2 0 4 Course Objectives: After successfully completing

More information

DR. JIVRAJ MEHTA INSTITUTE OF THECHNOLOGY

DR. JIVRAJ MEHTA INSTITUTE OF THECHNOLOGY DR. JIVRAJ MEHTA INSTITUTE OF THECHNOLOGY Name of Faculty :- Assistant Professor Sunita Murjani Subject Code :- 2140705 Subject Name :- OOPC++ Semester :- 4 th Branch :- Computer Engineering No Name Of

More information

Main Points of the Computer Organization and System Software Module

Main Points of the Computer Organization and System Software Module Main Points of the Computer Organization and System Software Module You can find below the topics we have covered during the COSS module. Reading the relevant parts of the textbooks is essential for a

More information

LIST OF EXPERIMENTS. (1) (Office Automation)

LIST OF EXPERIMENTS. (1) (Office Automation) LIST OF EXPERIMENTS (1) 310042 (Office Automation) 1 Computer Fundamentals 2 DOS Command 3 Execute DOS Command using examples. 4 Introduction to windows & familarity with controls. 5 Introduction of Ms-Office

More information

Deccan Education Society s FERGUSSON COLLEGE, PUNE (AUTONOMOUS) SYLLABUS UNDER AUTONOMY. FIRST YEAR B.Sc. COMPUTER SCIENCE SEMESTER I

Deccan Education Society s FERGUSSON COLLEGE, PUNE (AUTONOMOUS) SYLLABUS UNDER AUTONOMY. FIRST YEAR B.Sc. COMPUTER SCIENCE SEMESTER I Deccan Education Society s FERGUSSON COLLEGE, PUNE (AUTONOMOUS) SYLLABUS UNDER AUTONOMY FIRST YEAR B.Sc. COMPUTER SCIENCE SEMESTER I SYLLABUS OF COMPUTER SCIENCE Academic Year 2016-2017 Deccan Education

More information

Name of chapter & details

Name of chapter & details Course Title Course Code Operating Systems CE410 Theory : 03 Course Credit Practical : 01 Tutorial : 00 Credits : 04 Course Learning Outcomes On the completion of the course, students will be able to:

More information

GURU NANAK DEV UNIVERSITY, AMRITSAR

GURU NANAK DEV UNIVERSITY, AMRITSAR FACULTY OF ENGINEERING & TECHNOLOGY SYLLABUS FOR DIPLOMA COURSE IN COMPUTER APPLICATIONS (FULL TIME) (SEMESTER I & II) SESSION: 2016 17 GURU NANAK DEV UNIVERSITY, AMRITSAR Note: (i) Copy rights are reserved.

More information

Start Visual Basic. Session 1. The User Interface Form (I/II) The Visual Basic Programming Environment. The Tool Box (I/II)

Start Visual Basic. Session 1. The User Interface Form (I/II) The Visual Basic Programming Environment. The Tool Box (I/II) Session 1 Start Visual Basic Use the Visual Basic programming environment Understand Essential Visual Basic menu commands and programming procedure Change Property setting Use Online Help and Exit Visual

More information

Introduction p. 1 Who Should Read This Book? p. 1 What You Need to Know Before Reading This Book p. 2 How This Book Is Organized p.

Introduction p. 1 Who Should Read This Book? p. 1 What You Need to Know Before Reading This Book p. 2 How This Book Is Organized p. Introduction p. 1 Who Should Read This Book? p. 1 What You Need to Know Before Reading This Book p. 2 How This Book Is Organized p. 2 Conventions Used in This Book p. 2 Introduction to UNIX p. 5 An Overview

More information

(MCQZ-CS604 Operating Systems)

(MCQZ-CS604 Operating Systems) command to resume the execution of a suspended job in the foreground fg (Page 68) bg jobs kill commands in Linux is used to copy file is cp (Page 30) mv mkdir The process id returned to the child process

More information

SCHEME OF EXAMINATION FOR MASTER OF COMPUTER APPLICATIONS (MCA)

SCHEME OF EXAMINATION FOR MASTER OF COMPUTER APPLICATIONS (MCA) SCHEME OF EXAMINATION FOR MASTER OF COMPUTER APPLICATIONS (MCA) Semester III Paper Title of the Paper Duration Maximum Marks Total No. Of Exam Theory Sessional* MCA-301 Data Base Systems 3 Hours 80 20

More information

CHAPTER NO - 1 : Introduction:

CHAPTER NO - 1 : Introduction: Sr. No L.J. Institute of Engineering & Technology Semester: IV (26) Subject Name: Operating System Subject Code:21402 Faculties: Prof. Saurin Dave CHAPTER NO - 1 : Introduction: TOPIC:1 Basics of Operating

More information

END-TERM EXAMINATION

END-TERM EXAMINATION (Please Write your Exam Roll No. immediately) END-TERM EXAMINATION DECEMBER 2006 Exam. Roll No... Exam Series code: 100274DEC06200274 Paper Code : MCA-207 Subject: Front End Design Tools Time: 3 Hours

More information

Mid Term from Feb-2005 to Nov 2012 CS604- Operating System

Mid Term from Feb-2005 to Nov 2012 CS604- Operating System Mid Term from Feb-2005 to Nov 2012 CS604- Operating System Latest Solved from Mid term Papers Resource Person Hina 1-The problem with priority scheduling algorithm is. Deadlock Starvation (Page# 84) Aging

More information

Code No. Name of the Paper Semester III Marks (Theory + CCE) FC as applicable in other courses BCA 301 Object Oriented Programming using C++ 35+15 BCA 302 Database Management and Design 35+15 BCA 303 Organizational

More information

SEMESTER 4. BCA401: Operational Research (Complementary) ( Syllabus as approved by Board of Studies of Mathematics ( UG)

SEMESTER 4. BCA401: Operational Research (Complementary) ( Syllabus as approved by Board of Studies of Mathematics ( UG) SEMESTER 4 BCA401: Operational Research (Complementary) ( Syllabus as approved by Board of Studies of Mathematics ( UG) BCA402 : Microprocessors and PC Hardware (Core) Unit1: Introduction to the concept

More information

SCHEME OF EXAMINATION FOR B.Sc.(COMPUTER SCIENCE) SEMESTER SYSTEM (Regular Course) w.e.f Scheme for B.Sc.-I. Semester-I. Internal Assessment

SCHEME OF EXAMINATION FOR B.Sc.(COMPUTER SCIENCE) SEMESTER SYSTEM (Regular Course) w.e.f Scheme for B.Sc.-I. Semester-I. Internal Assessment SCHEME OF EXAMINATION FOR B.Sc.(COMPUTER SCIENCE) SEMESTER SYSTEM (Regular Course) w.e.f. 2013-14 Scheme for B.Sc.-I Sr. No. Paper 1 Paper-I Computer And Programming Fundamentals Semester-I Internal Assessment

More information

B.Sc. Computer Science (Ancillary)

B.Sc. Computer Science (Ancillary) Session - 03- onwards.. B.Sc. Computer Science (Ancillary) About the Course Technology is defined as the application of scientific knowledge for practical purposes. The radical changes in technologies

More information

CS 101 Advanced Computer System Architecture 100 ( ) CS 102 Operating System 100 ( )

CS 101 Advanced Computer System Architecture 100 ( ) CS 102 Operating System 100 ( ) Syllabus for M.Sc. Computer Science Programme Semester I External/ Internal CS 101 Advanced Computer System Architecture 100 ( 75 + 25 ) CS 102 Operating System 100 ( 75 + 25 ) CS 103 Mathematical Foundation

More information

On successful completion of the course, the students will be able to attain CO: Experiment linked. 2 to 4. 5 to 8. 9 to 12.

On successful completion of the course, the students will be able to attain CO: Experiment linked. 2 to 4. 5 to 8. 9 to 12. CIE- 25 Marks Government of Karnataka Department of Technical Education Bengaluru Course Title: Linux Lab Scheme (L:T:P) : 0:2:4 Total Contact Hours: 78 Type of Course: Tutorial, Practical s & Student

More information

Tilak Maharashtra University Bachelor of Computer Applications (BCA) Second Year BCA 321- C++ Examination 1

Tilak Maharashtra University Bachelor of Computer Applications (BCA) Second Year BCA 321- C++ Examination 1 Tilak Maharashtra University Bachelor of Computer Applications (BCA) Second Year BCA 321- C++ Examination 1 INTRODUCTION C++ programming Basic Object Oriented programming, Characteristics, Advantages of

More information

Visual Basic 6 (VB6 Comprehensive) Course Overview

Visual Basic 6 (VB6 Comprehensive) Course Overview Visual Basic 6 (VB6 Comprehensive) Course Overview Course Code: VB60010 Duration: 5 Days - custom / on-site options available - please call. Who should attend: Prerequisite Skills: IT professionals who

More information

Visual Programming 1. What is Visual Basic? 2. What are different Editions available in VB? 3. List the various features of VB

Visual Programming 1. What is Visual Basic? 2. What are different Editions available in VB? 3. List the various features of VB Visual Programming 1. What is Visual Basic? Visual Basic is a powerful application development toolkit developed by John Kemeny and Thomas Kurtz. It is a Microsoft Windows Programming language. Visual

More information

UNIX Essentials Featuring Solaris 10 Op System

UNIX Essentials Featuring Solaris 10 Op System A Active Window... 7:11 Application Development Tools... 7:7 Application Manager... 7:4 Architectures - Supported - UNIX... 1:13 Arithmetic Expansion... 9:10 B Background Processing... 3:14 Background

More information

3 rd Year V Semester

3 rd Year V Semester MAULANA ABUL KALAM AZAD UNIVERSITY OF TECHNOLOGY, WEST BENGAL INFORMATION TECHNOLOGY 3 rd Year V Semester Course Structure: Code Paper Contact Periods Per Week L T P Total Contact Hours Credit IT503 Operating

More information

Syllabus for Computer Science General Part I

Syllabus for Computer Science General Part I Distribution of Questions: Part I Q1. (Compulsory: 20 marks). Any ten questions to be answered out of fifteen questions, each carrying two marks (Group A 3 questions, Group B, Group C and Group D 4 questions

More information

BACHELORS IN COMPUTER APPLICATIONS COMPUTER NETWORKS PAPER CODE: BCA-401

BACHELORS IN COMPUTER APPLICATIONS COMPUTER NETWORKS PAPER CODE: BCA-401 BACHELORS IN COMPUTER APPLICATIONS COMPUTER NETWORKS PAPER CODE: BCA-401 SECTION-A Answer the following questions in around 100 words. 1. What information is contained in the control field of HDLC protocol?

More information

Exam Guide COMPSCI 386

Exam Guide COMPSCI 386 FOUNDATIONS We discussed in broad terms the three primary responsibilities of an operating system. Describe each. What is a process? What is a thread? What parts of a process are shared by threads? What

More information

DATABASE MANAGEMENT SYSTEM SUBJECT CODE: CE 305

DATABASE MANAGEMENT SYSTEM SUBJECT CODE: CE 305 DATABASE MANAGEMENT SYSTEM SUBJECT CODE: CE 305 Teaching Scheme (Credits and Hours) Teaching scheme Total Evaluation Scheme L T P Total Credit Theory Mid Sem Exam CIA Pract. Total Hrs Hrs Hrs Hrs Hrs Marks

More information

UNIX Shell Programming

UNIX Shell Programming $!... 5:13 $$ and $!... 5:13.profile File... 7:4 /etc/bashrc... 10:13 /etc/profile... 10:12 /etc/profile File... 7:5 ~/.bash_login... 10:15 ~/.bash_logout... 10:18 ~/.bash_profile... 10:14 ~/.bashrc...

More information

Post-Graduate Diploma in Computer Application Examination,2008 ELECTRONIC DATA PROCESSING

Post-Graduate Diploma in Computer Application Examination,2008 ELECTRONIC DATA PROCESSING 1 Post-Graduate Diploma in Computer Application Examination,2008 ELECTRONIC DATA PROCESSING DCA -103 Time Allowed: Three hours Maximum Marks: 100 Attempt any five questions. All question carry equal marks.

More information

ADIKAVI NANNAYA UNIVERSITY B. A Computer Applications / B.Sc Computer Science/B.Sc IT Syllabus Under CBCS w.e.f

ADIKAVI NANNAYA UNIVERSITY B. A Computer Applications / B.Sc Computer Science/B.Sc IT Syllabus Under CBCS w.e.f Course Objective: Paper-V: Data Base Management System Design & develop database for large volumes & varieties of data with optimized data processing techniques. Course Outcomes On completing the subject,

More information

Bachelor in Computer Application (BCA)

Bachelor in Computer Application (BCA) Bachelor in Computer Application (BCA) INTODUCTION TO INFORMATION TECHNOLOGY Computer Fundamentals: Block structure of a computer, characteristics of computers, generation of computers, and classification

More information

CHEME OF EXAMINATION FOR B.Sc. (COMPUTER SCIENCE) SEMESTER SYSTEM (Regular Course) w.e.f Scheme for B.Sc.-III.

CHEME OF EXAMINATION FOR B.Sc. (COMPUTER SCIENCE) SEMESTER SYSTEM (Regular Course) w.e.f Scheme for B.Sc.-III. CHEME OF EXAMINATION FOR B.Sc. (COMPUTER SCIENCE) SEMESTER SYSTEM (Regular Course) w.e.f. 2015-16 Scheme for B.Sc.-III Semester-V Sr. No. Paper Internal Assessment External Marks Exam Duration 1 Paper-I

More information

Institute of Engineering & Management. Course:CS603- Operating System. Course pre-requisites

Institute of Engineering & Management. Course:CS603- Operating System. Course pre-requisites Course:CS60- Operating System PROGRAMME: COMPUTERSCIENCE&ENGINEERING DEGREE:B. TECH COURSE: Operating Systems SEMESTER: 6 CREDITS: COURSECODE: CS60 COURSE TYPE: Theory COURSE AREA/DOMAIN: CONTACTHOURS:

More information

Unit 2. Unit 3. Unit 4

Unit 2. Unit 3. Unit 4 Course Objectives At the end of the course the student will be able to: 1. Differentiate database systems from traditional file systems by enumerating the features provided by database systems.. 2. Design

More information

Operating Systems Overview. Chapter 2

Operating Systems Overview. Chapter 2 Operating Systems Overview Chapter 2 Operating System A program that controls the execution of application programs An interface between the user and hardware Masks the details of the hardware Layers and

More information

MAHARAJA KRISHNAKUMARSINHJI BHAVNAGAR UNIVERSITY NAAC Accreditation Grade B (With effect from Academic Year: )

MAHARAJA KRISHNAKUMARSINHJI BHAVNAGAR UNIVERSITY NAAC Accreditation Grade B (With effect from Academic Year: ) Structure for B.C.A. CBCS Programme Semester-IV (SY) COURSE NO. COURSE TYPE SUBJECT CREDIT BCA-EC-401 ELECTIVE 02 BCA-FC-401 FOUNDATION 02 BCA-CC-401 CORE Advanced Operating System and Linux 03 BCA-CC-402

More information

Fundamentals of. Database Systems. Shamkant B. Navathe. College of Computing Georgia Institute of Technology PEARSON.

Fundamentals of. Database Systems. Shamkant B. Navathe. College of Computing Georgia Institute of Technology PEARSON. Fundamentals of Database Systems 5th Edition Ramez Elmasri Department of Computer Science and Engineering The University of Texas at Arlington Shamkant B. Navathe College of Computing Georgia Institute

More information

II/IV B.Tech. DEGREE EXAMINATIONS, NOV/DEC-2017

II/IV B.Tech. DEGREE EXAMINATIONS, NOV/DEC-2017 CSE/IT 223 (CR) Total No. of Questions :09] [Total No. of Pages : 02 II/IV B.Tech. DEGREE EXAMINATIONS, NOV/DEC-2017 Second Semester CSE/IT COMPUTER ORGANIZATION Time: Three Hours Answer Question No.1

More information

Guess Paper Class XII Subject Informatics Practices TIME : 1½ HRS. M.M. : 50

Guess Paper Class XII Subject Informatics Practices TIME : 1½ HRS. M.M. : 50 Guess Paper 2009-10 Class XII Subject Informatics Practices Answer the following questions 1. Explain the following terms: 2x5=10 a) Shareware b) PHP c) UNICODE d) GNU e) FLOSS 2 Explain the following

More information

CLASS: II YEAR / IV SEMESTER CSE SUBJECT CODE AND NAME: CS6401 OPERATING SYSTEMS UNIT I OPERATING SYSTEMS OVERVIEW

CLASS: II YEAR / IV SEMESTER CSE SUBJECT CODE AND NAME: CS6401 OPERATING SYSTEMS UNIT I OPERATING SYSTEMS OVERVIEW CLASS: II YEAR / IV SEMESTER CSE SUBJECT CODE AND NAME: CS6401 OPERATING SYSTEMS SYLLABUS UNIT I OPERATING SYSTEMS OVERVIEW Computer System Overview-Basic Elements, Instruction Execution, Interrupts, Memory

More information

Department of Computer Science and Technology

Department of Computer Science and Technology M.Sc. (CA) (2 nd Semester) 040020202 : UNIX Internals and Shell Programming Teaching Schedule Objective: To acquaint the students with the basic internal structure & operations of UNIX operating system,

More information

CSE Linux VM. For Microsoft Windows. Based on opensuse Leap 42.2

CSE Linux VM. For Microsoft Windows. Based on opensuse Leap 42.2 CSE Linux VM For Microsoft Windows Based on opensuse Leap 42.2 Dr. K. M. Flurchick February 2, 2017 Contents 1 Introduction 1 2 Requirements 1 3 Procedure 1 4 Usage 3 4.1 Start/Stop.................................................

More information

Kumaun University Nainital Proposed Syllabus for B. Sc. Semester program to be implemented from session Subject: Computer Science

Kumaun University Nainital Proposed Syllabus for B. Sc. Semester program to be implemented from session Subject: Computer Science Kumaun University Nainital Proposed Syllabus for B. Sc. Semester program to be implemented from session 2016-17 Subject: Computer Science Semester system course structure: 1. The course work shall be divided

More information

ADMINISTRATIVE MANAGEMENT COLLEGE

ADMINISTRATIVE MANAGEMENT COLLEGE First Semester ADMINISTRATIVE MANAGEMENT COLLEGE BACHELOR OF COMPUTER APPLICATION COURSE OUTCOME (CO) Problem solving techniques Using C CO 1: Understand the basic concepts of programming, software and

More information

CERTIFICATE IN WEB PROGRAMMING

CERTIFICATE IN WEB PROGRAMMING COURSE DURATION: 6 MONTHS CONTENTS : CERTIFICATE IN WEB PROGRAMMING 1. PROGRAMMING IN C and C++ Language 2. HTML/CSS and JavaScript 3. PHP and MySQL 4. Project on Development of Web Application 1. PROGRAMMING

More information

Course Description: This course includes the basic concepts of operating system

Course Description: This course includes the basic concepts of operating system Operating Systems Course Title: Operating Systems Full Marks:60+ 20+20 Course No: CSC259 Pass Marks: 24+8+8 Nature of the Course: Theory + Lab Credit Hrs: 3 Course Description: This course includes the

More information

Introduction to the UNIX command line

Introduction to the UNIX command line Introduction to the UNIX command line Steven Abreu Introduction to Computer Science (ICS) Tutorial Jacobs University s.abreu@jacobs-university.de September 19, 2017 Overview What is UNIX? UNIX Shell Commands

More information

BIOINFORMATICS POST-DIPLOMA PROGRAM SUBJECT OUTLINE Subject Title: OPERATING SYSTEMS AND PROJECT MANAGEMENT Subject Code: BIF713 Subject Description:

BIOINFORMATICS POST-DIPLOMA PROGRAM SUBJECT OUTLINE Subject Title: OPERATING SYSTEMS AND PROJECT MANAGEMENT Subject Code: BIF713 Subject Description: BIOINFORMATICS POST-DIPLOMA PROGRAM SUBJECT OUTLINE Subject Title: OPERATING SYSTEMS AND PROJECT MANAGEMENT Subject Code: BIF713 Subject Description: This course provides Bioinformatics students with the

More information

Processor : Intel Pentium D3.0 GigaHtz

Processor : Intel Pentium D3.0 GigaHtz CHALAPATHI INSTITUTE OF ENGINEERING & TECHNOLOGY CHALAPATHI NAGAR LAM,GUNTUR DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING INTRODUCTION ABOUT 'L2' LAB There are 30 systems (HCL) installed in this Lab.

More information

Prentice Hall CBT Systems X In A Box IT Courses

Prentice Hall CBT Systems X In A Box IT Courses Prentice Hall CBT Systems X In A Box IT Courses We make it click Visual Basic 5 In A Box Gary Cornell and Dave Jezak Prentice Hall PTR Upper Saddle River, NJ 07458 http://www.phptr.com Part of the Prentice

More information

AFN-1255 PCA131 P.G.D.C.A. DIPLOMA EXAMINATION, MAY 2011 First Semester Computer Applications FUNDAMENTALS OF DIGITAL COMPUTER (Non-CBCS 2004 onwards) Time : 3 Hours Maximum : 100 Marks Part A (15 1 =

More information

Unix Introduction to UNIX

Unix Introduction to UNIX Unix Introduction to UNIX Get Started Introduction The UNIX operating system Set of programs that act as a link between the computer and the user. Developed in 1969 by a group of AT&T employees Various

More information

Department of Computer applications. [Part I: Medium Answer Type Questions]

Department of Computer applications. [Part I: Medium Answer Type Questions] Department of Computer applications BBDNITM, Lucknow MCA 311: OPERATING SYSTEM [Part I: Medium Answer Type Questions] UNIT 1 Q1. What do you mean by an Operating System? What are the main functions of

More information

15CS53: DATABASE MANAGEMENT SYSTEM

15CS53: DATABASE MANAGEMENT SYSTEM 15CS53: DATABASE MANAGEMENT SYSTEM Subject Code: 15CS53 I.A. Marks: 20 Hours/Week: 04 Exam Hours: 03 Total Hours: 56 Exam Marks: 80 Objectives of the Course: This course will enable students to Provide

More information

Unix System Architecture, File System, and Shell Commands

Unix System Architecture, File System, and Shell Commands Unix System Architecture, File System, and Shell Commands Prof. (Dr.) K.R. Chowdhary, Director COE Email: kr.chowdhary@iitj.ac.in webpage: http://www.krchowdhary.com JIET College of Engineering August

More information

Chapter 1 SQL and Data

Chapter 1 SQL and Data Chapter 1 SQL and Data What is SQL? Structured Query Language An industry-standard language used to access & manipulate data stored in a relational database E. F. Codd, 1970 s IBM 2 What is Oracle? A relational

More information

Advanced Diploma in Computer Science (907) Computer Systems Architecture

Advanced Diploma in Computer Science (907) Computer Systems Architecture Advanced Diploma in Computer Science (907) Computer Systems Architecture Prerequisites: Good computing knowledge Corequisites: A pass or better in Diploma in System Analysis & Design or equivalence. Aim:

More information

UNIVERSITY POLYTECHNIC B.I.T., MESRA, RANCHI. COURSE STRUCTURE (W.E.F Batch Students) (Total Unit 7.0) Sessional Unit Code. Theory Unit Course

UNIVERSITY POLYTECHNIC B.I.T., MESRA, RANCHI. COURSE STRUCTURE (W.E.F Batch Students) (Total Unit 7.0) Sessional Unit Code. Theory Unit Course COURSE STRUCTURE (W.E.F. 2011 Batch Students) (Total Unit 7.0) Course Theory Unit Course Sessional Unit Code Code DCP 5001 Data Communication and 1.0 DCP 5002 Networking Lab. 0.5 Networking DCP 5003 Introduction

More information

ORACLE DATABASE 12C INTRODUCTION

ORACLE DATABASE 12C INTRODUCTION SECTOR / IT NON-TECHNICAL & CERTIFIED TRAINING COURSE In this training course, you gain the skills to unleash the power and flexibility of Oracle Database 12c, while gaining a solid foundation of database

More information

CSI3131 Final Exam Review

CSI3131 Final Exam Review CSI3131 Final Exam Review Final Exam: When: April 24, 2015 2:00 PM Where: SMD 425 File Systems I/O Hard Drive Virtual Memory Swap Memory Storage and I/O Introduction CSI3131 Topics Process Computing Systems

More information

QUESTION BANK UNIT I

QUESTION BANK UNIT I QUESTION BANK Subject Name: Operating Systems UNIT I 1) Differentiate between tightly coupled systems and loosely coupled systems. 2) Define OS 3) What are the differences between Batch OS and Multiprogramming?

More information

COURSE OUTLINE & WEEK WISE BREAKAGE

COURSE OUTLINE & WEEK WISE BREAKAGE COURSE OUTLINE & WEEK WISE BREAKAGE Week wise Course outline of Computer Fundamentals & Programming (CE-100) 3+1 (Batch 2018-Electronic Engineering) Dated: 13-12-2017 Course Coordinator: Saeed Azhar WEEK

More information

Systems:;-'./'--'.; r. Ramez Elmasri Department of Computer Science and Engineering The University of Texas at Arlington

Systems:;-'./'--'.; r. Ramez Elmasri Department of Computer Science and Engineering The University of Texas at Arlington Data base 7\,T"] Systems:;-'./'--'.; r Modelsj Languages, Design, and Application Programming Ramez Elmasri Department of Computer Science and Engineering The University of Texas at Arlington Shamkant

More information

SAULT COLLEGE OF APPLIED ARTS & TECHNOLOGY SAULT STE MARIE, ON COURSE OUTLINE

SAULT COLLEGE OF APPLIED ARTS & TECHNOLOGY SAULT STE MARIE, ON COURSE OUTLINE SAULT COLLEGE OF APPLIED ARTS & TECHNOLOGY SAULT STE MARIE, ON COURSE OUTLINE Course Title: Introduction to Visual Basic Code No.: Semester: Three Program: Computer Programming Author: Willem de Bruyne

More information

Semester-IV. BCA-401 Numerical and Statistical Technique

Semester-IV. BCA-401 Numerical and Statistical Technique Semester-IV BCA-401 Numerical and Statistical Technique Introduction : Raw material of statistics,ungrouped & grouped frequency distribution,diagrammatic presentation:bar diagram,pie-diagram. Graphical

More information

Chapter 8. Database Design. Database Systems: Design, Implementation, and Management, Sixth Edition, Rob and Coronel

Chapter 8. Database Design. Database Systems: Design, Implementation, and Management, Sixth Edition, Rob and Coronel Chapter 8 Database Design Database Systems: Design, Implementation, and Management, Sixth Edition, Rob and Coronel 1 In this chapter, you will learn: That successful database design must reflect the information

More information

2) clear :- It clears the terminal screen. Syntax :- clear

2) clear :- It clears the terminal screen. Syntax :- clear 1) cal :- Displays a calendar Syntax:- cal [options] [ month ] [year] cal displays a simple calendar. If arguments are not specified, the current month is displayed. In addition to cal, the ncal command

More information

PGDCA SEMESTER-I PGDCA 101: PC SOFTWARE: Unit-1: Introduction

PGDCA SEMESTER-I PGDCA 101: PC SOFTWARE: Unit-1: Introduction PGDCA SEMESTER-I PGDCA 101: PC SOFTWARE: - Introduction to personal computer Concept of hardware & software, program, data processing, classification of PC software, Computer Applications. - Overview of

More information

MARUTHI SCHOOL OF BANKING (MSB)

MARUTHI SCHOOL OF BANKING (MSB) MARUTHI SCHOOL OF BANKING (MSB) SO IT - OPERATING SYSTEM(2017) 1. is mainly responsible for allocating the resources as per process requirement? 1.RAM 2.Compiler 3.Operating Systems 4.Software 2.Which

More information

Tilak Maharashtra University

Tilak Maharashtra University Tilak Maharashtra University Bachelor of Computer Applications Second Year BCA 321- C++ INTRODUCTION C++ programming Basic Object Oriented programming, Characteristics, Advantages of object Oriented programming

More information

COURSE DESCRIPTION. CS 232 Course Title Computer Organization. Course Coordinators

COURSE DESCRIPTION. CS 232 Course Title Computer Organization. Course Coordinators COURSE DESCRIPTION Dept., Number Semester hours CS 232 Course Title Computer Organization 4 Course Coordinators Badii, Joseph, Nemes 2004-2006 Catalog Description Comparative study of the organization

More information

Proje D2K. CMM (Capability Maturity Model) level Project Standard:- Corporate Trainer s Profile

Proje D2K. CMM (Capability Maturity Model) level Project Standard:- Corporate Trainer s Profile D2K Corporate Trainer s Profile Corporate Trainers are having the experience of 4 to 12 years in development, working with TOP CMM level 5 comapnies (Project Leader /Project Manager ) qualified from NIT/IIT/IIM

More information

DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING UNIT I

DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING UNIT I DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING Year and Semester : II / IV Subject Code : CS6401 Subject Name : Operating System Degree and Branch : B.E CSE UNIT I 1. Define system process 2. What is an

More information

Unix/Linux Basics. Cpt S 223, Fall 2007 Copyright: Washington State University

Unix/Linux Basics. Cpt S 223, Fall 2007 Copyright: Washington State University Unix/Linux Basics 1 Some basics to remember Everything is case sensitive Eg., you can have two different files of the same name but different case in the same folder Console-driven (same as terminal )

More information

CSE 421/521 - Operating Systems Fall Lecture - XXV. Final Review. University at Buffalo

CSE 421/521 - Operating Systems Fall Lecture - XXV. Final Review. University at Buffalo CSE 421/521 - Operating Systems Fall 2014 Lecture - XXV Final Review Tevfik Koşar University at Buffalo December 2nd, 2014 1 Final Exam December 4th, Thursday 11:00am - 12:20pm Room: 110 Knox Chapters

More information

PGDCA Syllabus Directorate of Distance Education, University of Kashmir Directorate of Distance Education University of Kashmir Srinagar

PGDCA Syllabus Directorate of Distance Education, University of Kashmir Directorate of Distance Education University of Kashmir Srinagar Directorate of Distance Education University of Kashmir Srinagar-190006 Curriculum Post Graduate Diploma in Computer Applications (PGDCA) Programme 2011-2013 Structure of Curriculum SEMESTER-I S.NO. Paper

More information

Simply Visual Basic 2010

Simply Visual Basic 2010 INTERNATIONAL EDITION Simply Visual Basic 2010 An App-Driven Approach FOURTH EDITION Paul Deitel Harvey Deitel Abbey Deitel Deitel Series Page How To Program Series Android How to Program C++ How to Program,

More information

Paper 1 BUSINESS LAWS

Paper 1 BUSINESS LAWS Paper 1 BUSINESS LAWS UNIT I INDIAN CONTRACT ATC 1872 Offer, acceptance, Essentials of valid contract. Company Lawsformation of company, memorandum of association, articles of association, Prospectus,

More information

TABLE Semester I COMPUTER SCIENCE Semester II COMPUTER SCIENCE Semester III COMPUTER SCIENCE

TABLE Semester I COMPUTER SCIENCE Semester II COMPUTER SCIENCE Semester III COMPUTER SCIENCE TALE Semester I Semester II Semester III Semester IV Semester I Computer Fundamentals and Office Automation Unit 1 : Fundamentals of Computers: Computer definition Types of Computer Logical Organization

More information

COMPUTER MCQs. 1. DOS floppy disk does not have 1) a boot record 2) a file allocation table 3) a root directory

COMPUTER MCQs. 1. DOS floppy disk does not have 1) a boot record 2) a file allocation table 3) a root directory COMPUTER MCQs 1. DOS floppy disk does not have 1) a boot record 2) a file allocation table 3) a root directory 4)virtual memory 5) None of the above 2. The component is used by the data analyst to create

More information

Introduction p. 1 The Logical and Physical View of Tables p. 1 Database Types p. 4 NULLs p. 6 DDL and DML Statements p. 7 Column and Table Constraint

Introduction p. 1 The Logical and Physical View of Tables p. 1 Database Types p. 4 NULLs p. 6 DDL and DML Statements p. 7 Column and Table Constraint Preface p. xv Introduction p. 1 The Logical and Physical View of Tables p. 1 Database Types p. 4 NULLs p. 6 DDL and DML Statements p. 7 Column and Table Constraint Clauses p. 7 Sample Database p. 9 A Quick

More information

FRESHER TRAINING PROGRAM [MANUAL/QTP/ALM/QC/SE/LR/DB/ANDROID] COURSE OVERVIEW

FRESHER TRAINING PROGRAM [MANUAL/QTP/ALM/QC/SE/LR/DB/ANDROID] COURSE OVERVIEW FRESHER TRAINING PROGRAM [MANUAL/QTP/ALM/QC/SE/LR/DB/ANDROID] Software Testing COURSE OVERVIEW Manual Concepts Software Testing Concepts What is software Testing Objective of software Testing Importance

More information

Total No. of Questions : 6] [Total No. of Printed Pages : 2 [3689]-101. P. G. D. C. M. (Semester - I) Examination

Total No. of Questions : 6] [Total No. of Printed Pages : 2 [3689]-101. P. G. D. C. M. (Semester - I) Examination Total No. of Questions : 6] [Total No. of Printed Pages : 2 [3689]-101 P. G. D. C. M. (Semester - I) Examination - 2009 ELEMENTS OF INFORMATION TECHNOLOGY AND OFFICE AUTOMATION, WINDOWS OPERATING SYSTEM

More information

1 Chapter Plan...1 Exercise - Simple Program...2

1 Chapter Plan...1 Exercise - Simple Program...2 Chapter 1: Introduction Exercise - Simple Program...2 2 Subject Matter...4 1. What is PL/1?...4 2. PL/1: Strengths and Advantages...5 3. Program Structure...6 4. Data Types...7 5. Built-in Functions...8

More information

M.Sc. (Computer Science) I Year Assignments for May Paper I DATA STRUCTURES Assignment I

M.Sc. (Computer Science) I Year Assignments for May Paper I DATA STRUCTURES Assignment I Paper I DATA STRUCTURES (DMCS 01) 1. Explain in detail about the overview of Data structures. 2. Explain circular linked list and double-linked list. 3. Explain CPU scheduling in Multiprogramming Environment.

More information

Course Description: This course includes concepts of instruction set architecture,

Course Description: This course includes concepts of instruction set architecture, Computer Architecture Course Title: Computer Architecture Full Marks: 60+ 20+20 Course No: CSC208 Pass Marks: 24+8+8 Nature of the Course: Theory + Lab Credit Hrs: 3 Course Description: This course includes

More information

Syllabus For F. Y. B. Sc. Semester 1 Core Paper No.: 102 Core Paper Title: Programming in C I 1. Algorithm & Flowcharting 2. Programming Languages & S

Syllabus For F. Y. B. Sc. Semester 1 Core Paper No.: 102 Core Paper Title: Programming in C I 1. Algorithm & Flowcharting 2. Programming Languages & S Syllabus For F. Y. B. Sc. Semester 1 Core Paper No.: 101 Core Paper Title: Fundamentals of Computer I 1. Computer Fundamentals 1.1. History, Characteristics and Generation of Computers. 1.2. Classification

More information

UFT Introduction to Automation and QTP

UFT Introduction to Automation and QTP UFT Introduction to Automation and QTP What is automation? Why Automation Benefits of Test Automation Where to Begin? What to Automate? Tests that shouldn t be automated Basic Features of QTP Supporting

More information

Student Name:.. Student ID... Course Code: CSC 227 Course Title: Semester: Fall Exercises Cover Sheet:

Student Name:.. Student ID... Course Code: CSC 227 Course Title: Semester: Fall Exercises Cover Sheet: King Saud University College of Computer and Information Sciences Computer Science Department Course Code: CSC 227 Course Title: Operating Systems Semester: Fall 2016-2017 Exercises Cover Sheet: Final

More information

UNIT:2. Process Management

UNIT:2. Process Management 1 UNIT:2 Process Management SYLLABUS 2.1 Process and Process management i. Process model overview ii. Programmers view of process iii. Process states 2.2 Process and Processor Scheduling i Scheduling Criteria

More information

DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5)

DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5) Technology & Information Management Instructor: Michael Kremer, Ph.D. Database Program: Microsoft Access Series DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5) Section 5 AGENDA

More information