Scheme and Syllabus of MCA I Semester. MCA I Semester

Size: px
Start display at page:

Download "Scheme and Syllabus of MCA I Semester. MCA I Semester"

Transcription

1 Sl. No. Subject Scheme and Syllabus of MCA I Semester MCA I Semester Basaveshwar Engineering College(Autonomous), Bagalkot Department of Computer Applications (MCA) Scheme and syllabus for I Semester MCA No. of hours per week Subject Lecture Tutorial Practical Total credits code 1 PCA131C Introduction to UNX PCA132C Discrete Mathematics PCA133C Computer Organization and Architecture 4 PCA134C Programming Concepts With C PCA135C Professional Communication & Ethics 6 PCA136L UNIX Laboratory PCA137L Information Processing Laboratory PCA138L C Programming Practice Total

2 PCA131C: Introduction to UNIX 4 credits (4-0-0) CIE Marks: 50 SEE Marks: 100 Total Hours: 52 SEE Hours: 03 UNIT I Introduction to UNIX: The Unix Architecture,features and command usage, General Purpose Utilities commands, The File System: The File, what s in a (File) name,, The parent and child Relationship, the HOME variable, pwd, cd, dir, rmdir,absolute pathnames, Relative pathnames ls and The Unix file system. Handling Ordinary Files: cat, cp, rm, mv, more, The lp subsystem, file, wc, od, cmp, comm., diff, dos2unix and unix2dos, Compression and archive files. Basic File Attributes: ls l, -d, File ownership, File permission, chmod, Directory permission, changing File ownership. UNIT II Customizing the Environment: The Shell, Environment Variable common Environment Variable More File Attributes: File Systems and Inodes, Hard Links, Symbolic Links and ln, The Directory, umask, modification and access times Simple Filters Using Regular Expressions: pr, head, tail, cut, paste, sort, uniq, tr grep, Basics of Regular expressions, extended regular expression and egrep,. Process: Process basics, ps, System processes, Mechanism of Process Creation, Internal and External Commands, Process States and Zombies, Running jobs in background, nice, killing process with signals, Job control. UNIT III Essential Shell Programming and Awk: Introduction to Shell Scripting, Shell Scripts, read, Command Line Arguments, Exit Status of a Command, The Logical Operators && and, exit, if, and case conditions, expr, sleep and wait, while, until, for, redirection. The HERE document, set, trap. Awk-Advanced Filters: Simple awk Filtering, Splitting a Line into Fields, printf, the Logical and Relational Operators, Number Processing, Variables, The f option, BEGIN and END positional Parameters, get line, Built-in variables, Arrays, Functions, Control Flow,Looping UNIT IV Essential System Administration: root, administration privileges, maintaining Security, User Management, start up and shutdown, Managing Disk spaces, device files, cpio, tar.advance System Administration: Maintaining security, patricians and File system, standard file systems and their types,creating Partitions and File systems: fdsk, mkfs, File system mounting and unmounting using mount, unmount, mount options, fsck,system startup and init, shutdown and sync( ) operations.

3 Text book: 1.Sumitabha Das, UNIX concepts and Applications, 4 th Edition, Tata McGraw-Hill, Reference books: 1. M. G. Venkateshmurthy, Introduction to UNIX and Shell programming,pearson Education 2. Behrouz A Forouzan and Richard F Gilberg: UNIX and Shell Programming, Thomson Course Technology, 2005.

4 PCA132C: Discrete Mathematics 4 credits (4-0-0) CIE Marks: 50 SEE Marks: 100 Total Hours: 52 SEE Hours: 03 UNIT I Set Theory: Sets and Subsets,Set Operations and the Laws of Set Theory, Counting andvenn Diagrams, Principles of Inclusion and Exclusion, Permutations and Combinations with repetition. Properties of Integers and Recurrence: Mathematical Induction, Recurrence Definition, Euclidian Algorithms, The first order Linear recurrence relation. UNIT II Fundamentals of Logic :Basic Connectives and Truth Tables, Logic Equivalence- the laws of Logic, Logical Implications, Rules of Inference, The use of Quantifiers, Quantifier Definitions, Proofs of Theorems. UNIT III Functions: Cartesian products and Relations, Functions-Plain and One-to-One, Onto Functions, Stirling Numbers of the Second Kind, Special functions, The Pigeon-hole principle, Function composition and inverse functions. Relations :Properties of Relations, Computer recognition- Zero One Matrices and Directed graphs, Posets and Hasse Diagrams. UNIT IV Graphs and Trees: Terminology, Definitions, Properties and Examples, Connectivity and Adjacency, Euler and Hamilton, Representation and Isomorphism, Planarity and Chromatic Number, Directed Graphs and Weighted Graphs, Rooted Trees, Trees and Sorting. Text Books 1. Ralph P. Grimaldi, Discrete and Combinatorial Mathematics an Applied Introduction, 4th Edition, Pearson Education, Kolman, Busby and Ross, Discrete Mathematics for Computer Science, PHI Publication. Reference Books 1. Kenneth H Rosen, Discrete Mathematics & its Applications" 7th edition, McGraw- Hill, Semyour Lipschutz, Marc Lipson, Discrete Mathematics, 2nd Edition, Tata McGraw-Hill, 2006

5 PCA133C: Computer Organization and Architecture 4 credits (4-0-0) CIE Marks: 50 SEE Marks: 100 Total Hours: 52 SEE Hours: 03 UNIT I Basic Structures of Computers: Computer types, Functional units, Input unit, Memory unit, Arithmetic & logic unit, Output unit, Control unit, Basic Operational Concepts, Bus Structures, Multiprocessor & Multi-computers, Memory locations and addresses; Memory operations; Instructions and sequencing; Addressing modes UNIT II Input Output Organization: Accessing I/O devices, Interrupts, Direct Memory Access, Buses, and Interface Circuits. The Memory System: Basic Concepts, Semiconductor RAM Memories, Read only, Memories, Cache Memories, Virtual memories, Secondary Storage. UNIT III Number System: Digital systems, Binary numbers, decimal numbers, base of number system, base conversion, octal and hexadecimal numbers, complements, addition and subtraction of numbers using complements, representation of negative numbers, binary codes, binary logic Arithmetic Unit: Addition & Subtraction of Signed Numbers, Design of fast adders, Multiplication Positive numbers, Signed -Operand Multiplication, Fast Multiplication, Integer division Floating-Point Numbers & Operations UNIT IV Basic Processing Unit: Fundamental Concepts Execution of a Complete Instruction, Multiple- Bus, Organization, Hardwired Control, Micro-programmed Control. Pipelining-Basic concepts, data hazards, instruction hazards, influence on instruction sets, data path and control considerations, super-scalar operations; Computer peripherals-input devices; Output devices, Serial communication links. Text Books 1. Carl Hamacher, Z Vamesic & S Zaky, Computer Organization, 5th Edition, McGraw Hill Morris Mano, Digital Logic and Computer Design, PHI 23 rd reprint, October 2000.

6 Reference Books 1. M. Moris Mano & Charles R. Kime, Logic and Computer Design Fundamentals, 2nd Edition, Pearson Education Asia, Thomas I Flyid, Digital Fundamentals, 3 rd edition, United bookstall, New Delhi.

7 PCA134C: Programming Concepts with C 4 credits (4-0-0) CIE Marks: 50 SEE Marks: 100 Total Hours: 52 SEE Hours: 03 UNIT I Introduction to programming: Algorithms, flowcharts, C structure, Identifiers, Types, Variables, Constants, Expressions, Precedence, Associatively, Side effects, Evaluating expressions, Type conversion, Statements, Unformatted Input/Output, Formatted I/O statements UNIT II Control statements and loops: Selection - logical data, operators, two way selection, Multiway selection, Repetition -Concept of a loop, pretest, post test loops, loops in C, examples, break, continue, applications of loops, Arrays - concepts, using arrays in C, two dimensional array, multi dimensional arrays. UNIT III Strings concepts - C strings, string I/P, O/P functions, arrays of strings, string Manipulation functions, String conversion. Functions, User defined functions, Inter-function communication, Standard functions, Scope, Storage classes, Type qualifiers. Functions with arrays, Recursion. Structures and unions UNIT IV Pointers- Introduction, pointers to pointers, compatibility, L value and R value, arrays, pointers, Pointer arithmetic and arrays, passing an array to a function memory allocations functions, array of pointers pointer to void, pointers to function. Strings with pointers. Files - standard library functions for files, file modes and operations Text Book 1. Behrouz A. Foruzan and Richard F. Gilberg Computer Science- A structured programming approach using C, Cengage learning reference 3rd edition Reference Books 1. Brian W Kernighan, Dennis M Ritchie,The C Programming language, PHI, 2nd edition 2. Reema Thareja,Programming in C Oxford Higher Education 3. E. Balaguruswamy - Programming in ANSI C, 3 rd Edition, TMH, B.S. Anami, S. A. Angadi and S. S. Manvi Computer concepts and C programming A holistic approach, Prentice Hall, India, 2007

8 PCA135C: Professional Communication and Ethics 4 credits (4-0-0) CIE Marks: 50 SEE Marks: 100 Total Hours: 52 SEE Hours: 03 UNIT I Introduction to Communication: Introduction, Basics of Communication, Purpose and Audience, Cross culture communication, Language as a tool of communication, Communicative Skills, Effective Communication, Modes of communication, Importance of Technical Communication. Barriers to Communication: Introduction, Classification of Barriers, Information Gap Principle, Filters. Basics of Technical Communication: Introduction, Objectives and Characteristics, Process of Communication, Levels of Communication, Flow of Communication, Communication Networks, Visual Aids In Technical Communication UNIT II Active Listening : Introduction, Reasons for Poor Listening, Traits Of Good Listener, Listening Modes, Types of Listening, Barriers to Effective Listening, Listening for General Content and Specific Information. Effective Speaking: Introduction, Achieving Confidence, Paralinguistic Features, Barriers to Speaking, Types of Speaking, Persuasive Speaking, Public Speaking. Listening & Speaking: Introduction, Conversation, Telephonic Conversation & Etiquette, Dialogue Writing. Effective Presentation Strategies: Introduction, Planning, Outlining & Structuring, Nuances of Delivery, Controlling Nervousness and stage Fright, Visual Aids in Presentation, Application of MS PowerPoint. UNIT III Interview: Introduction, Objectives of Interviews, Types of Interview, Job Interview, Media Interview, Press Conference. Group Communication: Introduction, Forms of Group Communication, Use of Body Language in Group Communication, Discussion, Group Discussion, Organizational Group Discussion, Group Discussion As A Part Of Selection Process, Meeting, Conferences, Symposia & Seminars, Negotiations. Research Paper, Dissertation, and Thesis: Introduction, Research Paper, Dissertation, Thesis UNIT IV Ethics: An Overview of Ethics, What Are Ethics? Ethics in the Business World, Ethics in Information Technology (IT), Ethics For IT Profession And IT Users: IT Professionals, The Ethical Behavior Of IT Professionals,IT Users, Privacy : Privacy Protection And Laws, Key

9 Privacy And Anonymity. Software Development: Strategies Of Engineer Quality Software, Employer/ Employee Issues: Use of Non Traditional Workers, Whistle Blowing Text Book Communication 1. Meenakshi Raman And Sangeeta Sharma Technical Communication-Principles And Practice, Second Edition, Oxford University Press, 2011 Ethics 1. George Reynolds Ethics in Information Technology, Thomson Course Technology,2003 Reference Books 1. M. Ashraf Rizivi Effective Technical Communication,151 Edition Tata Mcgrawhill, Mike W Martin And Ronald Schinzinger-Ethics In Engineering,3 rd Edition Tata Mcgrawhill,2003

10 PCA136L: UNIX LABORATORY 1.5 credits (0-0-3) CIE Marks: 50 SEE Marks: 50 Total Hours: 42 SEE Hours: 03 1 a. Demonstrate the vi editor commands used for positioning in the window using position by character, position by line and position by word as well as windows. b. Write a shell script to check whether the given two files are same or not. If same, delete one of the file otherwise display the appropriate message. 2 a. Write a menu driven program which has the following options: i) List of Files ii) Process of User ' iii) Date iv) User of the system v) Present Working Directory vi) Exit. b. Demonstrate the vi editor commands positioned in the File using file scrolling, positioning on Numbered Line as well as all insert and delete characters commands in a file. 3 a. Write a shell script to accept content of two files, merge it sort it. Display sorted file. b. Demonstrate various block commands performed in vi editor. 4 a. Write a shell script to create the nested directories as specified in the command line argument. Check for the existence of directories and display the message accordingly. b. Demonstrate the pattern searching commands in a vi editor. 5 a.write a shell script to to accept two filenames check if the permission for these files are identical and if they are not identical output each filename followed by permission. b. Demonstrate the Find and Replace commands in vi editor 6 a. Write a shell script which receives any year from keyboard and determine whether the year is leap year or not. If no year is passed as argument assume the current year. b Demonstrate the Delete and yank command in vi editor.

11 7 a. Write a shell script to compress and uncompress a given file content and also show their difference in size including user choice. b. Demonstrate operations of basic calculator 1. Arithmetic 2. sale 3. ibase 4. obase 8 a Write a menu driven program to: i Display the access time of a file. ii. Display the modification time of a file. iii. Change and display the access time of a file iv Change and display the modification time of a file. b. Demonstrate the script command by executing (i) wc (ii) man (iii) bc (iv) cal (v) pwd commands 9. a. Write an awk specification which takes employee no,name and basic salary and calculate the gross salary and net salary.(assume Da=75%,Basic,HRA=10%) b.demonstrate handling ordinary file commands using UNIX file system. 10 a. Write an awk script that reads a file of which each line has five fileds USN, NAME, MARKS1, MARKS2, MARKS3 and finds out of the average of each of the marks. Print Output of the average marks with appropriate messages. b. Demonstrate the customized Unix environment commands. 11 a. Demonstrate unix administration commands by manually i. changing the password ii. set system date and time iii. Create user and delete user b. Write a shell script to report the disk usage of each mounted file system 12 a. Write shell script to find minimum of given two numbers b. write a shell script to shutdown system automatically

12 PCA137L: Information Processing Laboratory 2 credits(0-1-3) CIE Marks: 50 SEE Marks: 50 Total Hours: 56 SEE Hours: Basic Unix Utility commands. 2. a. Using a word processor prepares an invitation card. The card should contain: Center the heading and make it bold and under line. Set the pages to A4 size and portrait. Set left margin to 1" and right margin to 0.75". Underline the subheadings. Conduct spell check and grammar check. Demonstrate the use of numbering and bullets. Place the suitable headers and footers. Insert suitable picture from clip art gallery.. Demonstrate the use of drawing tools. b. Create a visiting card, which show your name, designation, address, id, phone numbers etc. Include a picture from the clip art as a logo of the company. Use a suitable border. Use attractive colors for the background and text. Use symbols for for residential address, # for house number etc. 3. a. Create a business letter in the letter head with at least 3 paragraphs. Demonstrate the cut, copy and paste operations. Include a logo of the company in the letterhead. Justify the paragraphs. Background should contain the logo watermarked. Create an envelope option from tools. b. Create a formal letter in the institute letterhead to place a purchase order for procurement of books having the following information S.No Title of the book Author Edition Year of Publication Publisher No.of Copies 4. Type any mathematical equations using Equation editor.

13 5. Create a resume and send to at least four companies using mail merge with source. 6. Create a document with a spreadsheet, Employee Salary Slip accepting the basic salary as an input and calculate Gross Salary and Net Salary for the following allowances and deductions: Allowances DA (80 % of Basic salary) HRA (9 % of Basic salary) Deductions PF (8.35% of Gross Salary) PT (Rs. 200) GSLI (Rs. 280) 7. Create a degree marks card of a student, which displays the percentage and the Result (Fail/Distinction/First Class/Second Class) using formulae and functions. 8. The marks obtained by 10 students in an examination are given as 43,48, 55, 57, 42, 44, 50, 47, 48, and 58. Find (i) Average marks scored by 10 students. (ii) Most frequently occurring or repetitive marks. (iii) Middle value Show the results using graphs. 9. Create Macros to automate the following tasks: i. Wrap the text. ii. Bold, centers align and color the text. iii. Change the angle of the text. 10. Create a presentation on MCA department. Demonstrate linking and embedding operations. 11. Create minimum two tables and demonstrate primary key, foreign key, and relationships and execute queries such as select, update, delete using open/libre office database tool. 12. a. Design a form in open/libre office database tool to demonstrate add new, update, and delete records. b. Creating report with report wizard.

14 PCA138L: C Programming Laboratory 1.5 Credits (0-0 -3) CIE Marks: 50 SEE Marks: 50 Total Hours: 42 SEE Hours: a. Write a C program to calculate the simple interest and compound interest, Given P, T, and R. b. Write a C program to calculate the Area of a le whose sides are given A=. s s a s b s c S = a+b+c 2 2. a. Write a C Program to check whether a given number is prime number or not. b. Write a C Program to multiply two numbers using Russian peasant problem which uses only addition and divide by 2 operations. for e.g., 17 X The numbers before even integers are discarded, the numbers before odd numbers are added to give the result 3. a. Write a C Program to find the roots of a Quadratic equation. b. Write a C Program to find the Sum of digits of a 4-digit number. 4. a. Write a C Program to generate the Fibonacci series. b. Write a C Program to find the GCD (Greatest Common Divisor) of given integers. 5. a. Write a C Program to check whether given integer is Palindrome or not. b. Write a C Program to convert a given Binary number into an equivalent decimal number. 6. a. Write a C Program to calculate the Sum of Positive & Negative numbers of a given list.

15 b. Write a C Program to generate the Electricity bill for the following data. For the first 200 units 80 Paise/Unit For next 100 units 90 Paise/Unit Beyond 300 units: - 1 Re/Unit Minimum bill amount : Rs. 20 More than 400 Rs. then add 15% surcharge 7. a. Write a C program to compute Length of a string, concatenation of two strings and reverse the resulting string. b. Write a C Program to read a Matrix and compute the Transpose of the same. 8. Write a C Program to find the Product of two matrices, and also verify whether multiplication is possible or not by checking the order. 9. a. Accept a string from the user and encode the same. Apply the following procedure to encode the string : i. Take equivalent ASCII value of each character. ii. Add an integer value to it. iii. Display the encoded string. iv. Also decode the string into its original form using the reverse procedure. b. Write a C program to count the number of vowels in the given string 10. Define a structure called student having properties like student id, name, and branch of student with a subject structure of marks of 3 subjects. Write a program which allows user to add new student, display information of a particular student based on id or display all the students. Find the name of students who have scored best and worst marks. And also find average marks scored by the students. 11. a. Write a C Program to Exchange (swap) two integers using pointers. b. Write a C Program to convert the given text from Uppercase to Lowercase. Read the uppercase text from a source file, and copy the lowercase text to the destination file. 12. Write a C Program that writes data into first file. open the same file read the contents and store vowels and consonants separately in two different files called vowel file and consonant file.

Scheme and Syllabus of MCA I and II Semester. MCA I Semester

Scheme and Syllabus of MCA I and II Semester. MCA I Semester Scheme and Syllabus of MCA I and II Semester MCA I Semester Basaveshwar Engineering College(Autonomous), Bagalkot Department of Computer Applications (MCA) Scheme and syllabus for I Semester MCA 2013-16

More information

Basaveshwar Engineering College(Autonomous), Bagalkot Department of Computer Applications (MCA) Scheme and syllabus for I Semester MCA

Basaveshwar Engineering College(Autonomous), Bagalkot Department of Computer Applications (MCA) Scheme and syllabus for I Semester MCA Sl.No. Subject code Basaveshwar Engineering College(Autonomous), Bagalkot Department of Computer Applications (MCA) Scheme and syllabus for I Semester MCA 2016-19 Subject 1 PCA141C Data Structures Using

More information

1 PCA151C Data Structures Using C PCA152C Operating Systems PCA153C Introduction to Web Technologies

1 PCA151C Data Structures Using C PCA152C Operating Systems PCA153C Introduction to Web Technologies Sl. No. Subject code Basaveshwar Engineering College(Autonomous), Bagalkote Department of Computer Applications (MCA) Scheme and syllabus for I Semester MCA 2018-19 No. of hours per week Subject Lecture

More information

Sardar Patel University S Y BSc. Computer Science CS-201 Introduction to Programming Language Effective from July-2002

Sardar Patel University S Y BSc. Computer Science CS-201 Introduction to Programming Language Effective from July-2002 Sardar Patel University S Y BSc. Computer Science CS-201 Introduction to Programming Language Effective from July-2002 2 Practicals per week External marks :80 Internal Marks : 40 Total Marks :120 University

More information

DR. A.P.J. ABDUL KALAM TECHNICAL UNIVERSITY LUCKNOW. Evaluation Scheme & Syllabus. For. B.Tech. First Year (Programming for Problem Solving)

DR. A.P.J. ABDUL KALAM TECHNICAL UNIVERSITY LUCKNOW. Evaluation Scheme & Syllabus. For. B.Tech. First Year (Programming for Problem Solving) DR. A.P.J. ABDUL KALAM TECHNICAL UNIVERSITY LUCKNOW Evaluation Scheme & Syllabus For B.Tech. First Year (Programming for Problem Solving) On Choice Based Credit System (Effective from the Session: 2018-19)

More information

COMPUTER PROGRAMMING LAB

COMPUTER PROGRAMMING LAB COURSE OUTCOMES SEMESTER I Student will be able to: COMPUTER PROGRAMMING LAB 1. Explain basic commands in Linux. 2. Develop programs in C language. 3. Design programs for various problems in C language.

More information

Programming for Problem Solving 105A L T P Credit Major Minor Total Time

Programming for Problem Solving 105A L T P Credit Major Minor Total Time ES- Programming for Problem Solving 105A L T P Credit Major Minor Total Time Test Test 3 - - 3 75 25 100 3h Purpose To familiarize the students with the basics of Computer System and C Programming Course

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

QUESTION BANK ON UNIX & SHELL PROGRAMMING-502 (CORE PAPER-2)

QUESTION BANK ON UNIX & SHELL PROGRAMMING-502 (CORE PAPER-2) BANK ON & SHELL PROGRAMMING-502 (CORE PAPER-2) TOPIC 1: VI-EDITOR MARKS YEAR 1. Explain set command of vi editor 2 2011oct 2. Explain the modes of vi editor. 7 2013mar/ 2013 oct 3. Explain vi editor 5

More information

Gujarat University M. Sc. Computer Science [S. F.] Semester-1 Syllabus Gujarat Arts & Science College, Ahmedabad.

Gujarat University M. Sc. Computer Science [S. F.] Semester-1 Syllabus Gujarat Arts & Science College, Ahmedabad. B. Sc. Computer Science SEM-II EFFECTIVE FROM ACADEMIC YEAR - 2016-2017 CODE Titles Th. Pr. COM-103 ProgramminginC (Theory) 4 COM-104 ProgramminginC(Practical) 4 Teaching Scheme Unit Computer Theory COM

More information

DEPARTMENT OF COMPUTER APPLICATIONS SRM INSTITUTE OF SCIENCE AND TECHNOLOGY SRM NAGAR, KATTANKALATHUR

DEPARTMENT OF COMPUTER APPLICATIONS SRM INSTITUTE OF SCIENCE AND TECHNOLOGY SRM NAGAR, KATTANKALATHUR DEPARTMENT OF COMPUTER APPLICATIONS SRM INSTITUTE OF SCIENCE AND TECHNOLOGY SRM NAGAR, KATTANKALATHUR SYLLABUS / QUESTION BANK Class & Semester : I ECE & II Semester Subject Code : CS152 Subject Name :

More information

GARDEN CITY UNIVERSITY. Bachelor of Computer Applications SEMESTER- I. Course: CONCEPTS OF PROGRAMMING USING C LANGUAGE CODE: 05ABCAR17111 CREDITS: 04

GARDEN CITY UNIVERSITY. Bachelor of Computer Applications SEMESTER- I. Course: CONCEPTS OF PROGRAMMING USING C LANGUAGE CODE: 05ABCAR17111 CREDITS: 04 GARDEN CITY UNIVERSITY Bachelor of Computer Applications SEMESTER- I Course: CONCEPTS OF PROGRAMMING USING C LANGUAGE CODE: 05ABCAR17111 CREDITS: 04 Unit 1 Programming Basics 1.1 Introduction to Programming

More information

ANNA UNIVERSITY OF TECHNOLOGY MADURAI REGULATIONS 2010 CURRICULUM AND SYLLABUS

ANNA UNIVERSITY OF TECHNOLOGY MADURAI REGULATIONS 2010 CURRICULUM AND SYLLABUS ANNA UNIVERSITY OF TECHNOLOGY MADURAI REGULATIONS 2010 CURRICULUM AND SYLLABUS Three Year M.C.A (Master of Computer Applications) Degree Course SUBJECTS OF STUDY SEMESTER I Theory Course Code 10377MC101

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

Kadi Sarva Vishwavidyalaya, Gandhinagar

Kadi Sarva Vishwavidyalaya, Gandhinagar Kadi Sarva Vishwavidyalaya, Gandhinagar MASTERS OF COMPUTER APPLICATION (MCA) Semester I (First Year) Subject: MCA-101 Programming for Logic Building (LDPL) SUB Teaching scheme Examination scheme Total

More information

Hrs Hrs Hrs Hrs Hrs Marks Marks Marks Marks Marks

Hrs Hrs Hrs Hrs Hrs Marks Marks Marks Marks Marks Subject Code: CC103-N Subject Title: FUNDAMENTALS OF PROGRAMMING Teaching scheme Total L T P Total Theory Credit Evaluation Scheme Mid Sem Exam CIA Pract. Total Hrs Hrs Hrs Hrs Hrs Marks Marks Marks Marks

More information

KLS s Gogte Institute of Technology, Udyambag, Belagavi. CLO 1: To provide introduction to UNIX Operating System and its File System

KLS s Gogte Institute of Technology, Udyambag, Belagavi. CLO 1: To provide introduction to UNIX Operating System and its File System KLS s Gogte Institute of Technology, Udyambag, Belagavi Course Document Academic Year:2016-17 Department of CSE Course Title : UNIX Shell programming Credits: 4 Course Code :15CS33 L:T:P -3-1-0 Course

More information

C- PROGRAMMING (3:0:0) Sub code : CS1C01/CS2C01 CIE : 50%Marks Hrs/week : 03 SEE : 50%Marks SEE Hrs : 03 Hours Max. Marks: 100 Course Outcomes:

C- PROGRAMMING (3:0:0) Sub code : CS1C01/CS2C01 CIE : 50%Marks Hrs/week : 03 SEE : 50%Marks SEE Hrs : 03 Hours Max. Marks: 100 Course Outcomes: C- PROGRAMMING (3:0:0) Sub code : CS1C01/CS2C01 CIE : 50%Marks Hrs/week : 03 SEE : 50%Marks SEE Hrs : 03 Hours Max. Marks: 100 Course Outcomes: On successful completion of the course, the students will

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

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

I Year MCA I Semester L T P To C FOUNDATIONS OF INFORMATION TECHNOLOGY

I Year MCA I Semester L T P To C FOUNDATIONS OF INFORMATION TECHNOLOGY I Year MCA I Semester L T P To C 3 1-4 4 MC101 FOUNDATIONS OF INFORMATION TECHNOLOGY Objectives of the Course: It offers students an overall idea of computer science and information technology to the student.

More information

PROGRAMME: COMPUTER SCIENCE & ENGINEERING COURSE: Operating System Lab SEMESTER: VI CREDITS: 2

PROGRAMME: COMPUTER SCIENCE & ENGINEERING COURSE: Operating System Lab SEMESTER: VI CREDITS: 2 Course: CS693- Operating System Lab PROGRAMME: COMPUTER SCIENCE & ENGINEERING DEGREE:B. TECH COURSE: Operating System Lab SEMESTER: VI CREDITS: 2 COURSECODE: CS693 COURSE AREA/DOMAIN: Laboratory Skills

More information

PROGRAMMING IN C AND C++:

PROGRAMMING IN C AND C++: PROGRAMMING IN C AND C++: Week 1 1. Introductions 2. Using Dos commands, make a directory: C:\users\YearOfJoining\Sectionx\USERNAME\CS101 3. Getting started with Visual C++. 4. Write a program to print

More information

Syllabus of Diploma Engineering. Computer Engineering. Semester: II. Subject Name: Computer Programming. Subject Code: 09CE1104

Syllabus of Diploma Engineering. Computer Engineering. Semester: II. Subject Name: Computer Programming. Subject Code: 09CE1104 Semester: II Subject Name: Computer Programming Subject Code: 09CE1104 Objective: This Course will help to develop programming skills in the students, using a structured programming language `C'. Students

More information

Swami Ramanand Teerth Marathwada University, Nanded

Swami Ramanand Teerth Marathwada University, Nanded Swami Ramanand Teerth Marathwada University, Nanded Syllabus B. Sc. First Year COMPUTER SCIENCE Semester System (MCQ Pattern) (To Be Implemented From Academic Year 2013-2014) Theory/ Practical Semester

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

COURSE STRUCTURE AND SYLLABUS APPROVED IN THE BOARD OF STUDIES MEETING HELD ON JULY TO BE EFFECTIVE FROM THE ACADEMIC YEAR

COURSE STRUCTURE AND SYLLABUS APPROVED IN THE BOARD OF STUDIES MEETING HELD ON JULY TO BE EFFECTIVE FROM THE ACADEMIC YEAR COURSE STRUCTURE AND SYLLABUS APPROVED IN THE BOARD OF STUDIES MEETING HELD ON JULY- 2000 TO BE EFFECTIVE FROM THE ACADEMIC YEAR 2000-2001 MCA SEMESTER -1 Scheme of evaluation Max. Marks Min. Marks to

More information

2. UDP Client, UDP Server

2. UDP Client, UDP Server 2. UDP Client, UDP Server VI Case study on designing network topology A case study to design and configure any organization network eg. College network or campus network, using any packet tracer or network

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

KLiC C Programming. (KLiC Certificate in C Programming)

KLiC C Programming. (KLiC Certificate in C Programming) KLiC C Programming (KLiC Certificate in C Programming) Turbo C Skills: The C Character Set, Constants, Variables and Keywords, Types of C Constants, Types of C Variables, C Keywords, Receiving Input, Integer

More information

(i) Describe in detail about the classification of computers with their features and limitations(10)

(i) Describe in detail about the classification of computers with their features and limitations(10) UNIT I - INTRODUCTION Generation and Classification of Computers- Basic Organization of a Computer Number System Binary Decimal Conversion Problems. Need for logical analysis and thinking Algorithm Pseudo

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

Academic Programme: B.Sc. I Year. Computer Science (Optional) Hours. Fundamentals of Computer Hours.

Academic Programme: B.Sc. I Year. Computer Science (Optional) Hours. Fundamentals of Computer Hours. Swami Ramanand Teerth Marathwada University, Nanded B.Sc First Year Semester Pattern Computer Science (Optional) With Effect from 2009-10 Aims and Objectives: 1. To provide a professional level of competence

More information

BIRLA INSTITUTE OF TECHNOLOGY AND SCIENCE, Pilani Pilani Campus Instruction Division. SECOND SEMESTER Course Handout Part II

BIRLA INSTITUTE OF TECHNOLOGY AND SCIENCE, Pilani Pilani Campus Instruction Division. SECOND SEMESTER Course Handout Part II SECOND SEMESTER 2016-2017 Course Handout Part II In addition to part-i (General Handout for all courses appended to the time table) this portion gives further specific details regarding the course. Course

More information

ANNA UNIVERSITY: CHENNAI B.E./B.Tech. DEGREE EXAMINATIONS, JAN Regulations First Semester (Common to All Branches )

ANNA UNIVERSITY: CHENNAI B.E./B.Tech. DEGREE EXAMINATIONS, JAN Regulations First Semester (Common to All Branches ) ANNA UNIVERSITY: CHENNAI 600 025 B.E./B.Tech. DEGREE EXAMINATIONS, JAN - 2012 Regulations - 2008 First Semester (Common to All Branches ) GE 2115 - COMPUTER PRACTICE LABORATORY I Note: Mark distribution

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

Syllabi & Scheme of Examination BCA-1 st Year/DCST. Website:-

Syllabi & Scheme of Examination BCA-1 st Year/DCST. Website:- Syllabi & Scheme of Examination BCA-1 st Year/DCST Website:- www.cdlu.ac.in SCHEME OF EXMINATION 1. Bachelor of Computer Applications- First Year 2. One Year Diploma in Computer Science and Technology

More information

VALLIAMMAI ENGINEERING COLLEGE SRM NAGAR, KATTANGULATHUR

VALLIAMMAI ENGINEERING COLLEGE SRM NAGAR, KATTANGULATHUR VALLIAMMAI ENGINEERING COLLEGE SRM NAGAR, KATTANGULATHUR 603 203 FIRST SEMESTER B.E / B.Tech., (Common to all Branches) QUESTION BANK - GE 6151 COMPUTER PROGRAMMING UNIT I - INTRODUCTION Generation and

More information

Linux & Shell Programming 2014

Linux & Shell Programming 2014 Practical No : 1 Enrollment No: Group : A Practical Problem Write a date command to display date in following format: (Consider current date as 4 th January 2014) 1. dd/mm/yy hh:mm:ss 2. Today's date is:

More information

CHOICE BASED CREDIT SYSTEM (With effect from )

CHOICE BASED CREDIT SYSTEM (With effect from ) B.Sc. Computer Science Syllabus Under the CHOICE BASED CREDIT SYSTEM (With effect from 2017-18) DEPARTMENT OF COMPUTER SCIENCE University College,TU,Nizamabad-503322 Syllabus for Computer Science (With

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

TEACHING & EXAMINATION SCHEME For the Examination COMPUTER SCIENCE. B.Sc. Part-I

TEACHING & EXAMINATION SCHEME For the Examination COMPUTER SCIENCE. B.Sc. Part-I TEACHING & EXAMINATION SCHEME For the Examination -2015 COMPUTER SCIENCE THEORY B.Sc. Part-I CS.101 Paper I Computer Oriented Numerical Methods and FORTRAN Pd/W Exam. Max. (45mts.) Hours Marks 150 2 3

More information

A Survey of Mathematics with Applications 8 th Edition, 2009

A Survey of Mathematics with Applications 8 th Edition, 2009 A Correlation of A Survey of Mathematics with Applications 8 th Edition, 2009 South Carolina Discrete Mathematics Sample Course Outline including Alternate Topics and Related Objectives INTRODUCTION This

More information

WRITE COMMANDS USING sed or grep (1 mark each) 2014 oct./nov march/april Commands using grep or egrep. (1 mark each)

WRITE COMMANDS USING sed or grep (1 mark each) 2014 oct./nov march/april Commands using grep or egrep. (1 mark each) WRITE COMMANDS USING sed or grep (1 mark each) 2014 oct./nov. 1. Display two lines starting from 7 th line of file X1. 2. Display all blank lines between line 20 and 30 of file X1. 3. Display lines beginning

More information

Telangana University

Telangana University Telangana University Syllabus of Bachelor of Science (B.Sc) Computer Science I year Unit - 1 : Fundamentals of Computers (24 hrs) Computer definition Types of Computer Logical Organization of a Digital

More information

Table of contents. Our goal. Notes. Notes. Notes. Summer June 29, Our goal is to see how we can use Unix as a tool for developing programs

Table of contents. Our goal. Notes. Notes. Notes. Summer June 29, Our goal is to see how we can use Unix as a tool for developing programs Summer 2010 Department of Computer Science and Engineering York University Toronto June 29, 2010 1 / 36 Table of contents 1 2 3 4 2 / 36 Our goal Our goal is to see how we can use Unix as a tool for developing

More information

B.Sc. Final B.SC. PART-III PAPER I COMPUTER ORGANIZATION II

B.Sc. Final B.SC. PART-III PAPER I COMPUTER ORGANIZATION II TEACHING & EXAMINATION SCHEME For the Examination - 2015 COMPUTER SCIENCE B.Sc. Final THEORY Pd/W Exam. Max. (45mts.) Hours Marks 150 CS.301 Paper I Computer Organisation II 2 3 50 CS.302 Paper II Programming

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

B. V. Patel Institute of Business Management, Computer & Information Technology, UTU 2013

B. V. Patel Institute of Business Management, Computer & Information Technology, UTU 2013 Information Technology, UTU 203 030000 Fundamentals of Programming Problems to be solved in laboratory Note: Journal should contain followings for all problems given below:. Problem Statement 2. Algorithm

More information

Day Hour Timing pm pm am am

Day Hour Timing pm pm am am SRM UNIVERSITY FACULTY OF ENGINEERING AND TECHNOLOGY SCHOOL OF COMPUTING DEPARTMENT OF SOFTWARE ENGINEERING COURSE PLAN Course Code : SE1002 Course Title : COMPUTER ORGANIZATION AND ARCHITECTURE Semester

More information

Semester: I Credits: 5. Category: MC No.of hrs/week: 5 CA PROGRAMMING IN C

Semester: I Credits: 5. Category: MC No.of hrs/week: 5 CA PROGRAMMING IN C Semester: I Credits: 5 Category: MC No.of hrs/week: 5 CA1505 - PROGRAMMING IN C Objective: This course aims at explaining the basic concepts of computers and an easy understanding of C Language by the

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

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

Lesson Plan (Odd Semester) Name of the Faculty: Rakesh Gupta

Lesson Plan (Odd Semester) Name of the Faculty: Rakesh Gupta Lesson Plan (Odd Semester) Name of the Faculty: Rakesh Gupta Discipline: Department: Semester: Subject: Data Communication Lesson Plan Duration: 15 weeks ( from July, 2018 to Dec., 2018) **Work load (Lecture

More information

Common UNIX Utilities Alphabetical List

Common UNIX Utilities Alphabetical List Common UNIX Utilities Alphabetical List addbib - create or extend a bibliographic database apropos - locate commands by keyword lookup ar - create library archives, and add or extract files at - execute

More information

Summary of Course Coverage

Summary of Course Coverage CS-227, Discrete Structures I Spring 2006 Semester Summary of Course Coverage 1) Propositional Calculus a) Negation (logical NOT) b) Conjunction (logical AND) c) Disjunction (logical inclusive-or) d) Inequalities

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

SECOND SEMESTER BCA : Syllabus Copy

SECOND SEMESTER BCA : Syllabus Copy BCA203T: DATA STRUCTURES SECOND SEMESTER BCA : Syllabus Copy Unit-I Introduction and Overview: Definition, Elementary data organization, Data Structures, data structures operations, Abstract data types,

More information

Lab Manual. Program Design and File Structures (P): IT-219

Lab Manual. Program Design and File Structures (P): IT-219 Lab Manual Program Design and File Structures (P): IT-219 Lab Instructions Several practicals / programs? Whether an experiment contains one or several practicals /programs One practical / program Lab

More information

Syllabus Under Autonomy Mathematics

Syllabus Under Autonomy Mathematics Syllabus Under Autonomy Mathematics Semester VI Course: Applied Component(Paper-I) [25 Lectures] Computer Programming and System Analysis(Java Programming & Networking) Learning Objectives:- To learn about

More information

Course Title: C Programming Full Marks: Course no: CSC110 Pass Marks: Nature of course: Theory + Lab Credit hours: 3

Course Title: C Programming Full Marks: Course no: CSC110 Pass Marks: Nature of course: Theory + Lab Credit hours: 3 Detailed Syllabus : Course Title: C Programming Full Marks: 60+20+20 Course no: CSC110 Pass Marks: 24+8+8 Nature of course: Theory + Lab Credit hours: 3 Course Description: This course covers the concepts

More information

Subject: Computer Science

Subject: Computer Science Subject: Computer Science Topic: Data Types, Variables & Operators 1 Write a program to print HELLO WORLD on screen. 2 Write a program to display output using a single cout statement. 3 Write a program

More information

CS11001/CS11002 Programming and Data Structures Autumn/Spring Semesters. Introduction

CS11001/CS11002 Programming and Data Structures Autumn/Spring Semesters. Introduction Title page CS11001/CS11002 Programming and Data Structures Autumn/Spring Semesters Introduction Department of Computer Science & Engineering Indian Institute of Technology, Kharagpur Last modified: July

More information

BCA-105 C Language What is C? History of C

BCA-105 C Language What is C? History of C C Language What is C? C is a programming language developed at AT & T s Bell Laboratories of USA in 1972. It was designed and written by a man named Dennis Ritchie. C seems so popular is because it is

More information

LOG ON TO LINUX AND LOG OFF

LOG ON TO LINUX AND LOG OFF EXPNO:1A LOG ON TO LINUX AND LOG OFF AIM: To know how to logon to Linux and logoff. PROCEDURE: Logon: To logon to the Linux system, we have to enter the correct username and password details, when asked,

More information

About the Author. Dependency Chart. Chapter 1: Logic and Sets 1. Chapter 2: Relations and Functions, Boolean Algebra, and Circuit Design

About the Author. Dependency Chart. Chapter 1: Logic and Sets 1. Chapter 2: Relations and Functions, Boolean Algebra, and Circuit Design Preface About the Author Dependency Chart xiii xix xxi Chapter 1: Logic and Sets 1 1.1: Logical Operators: Statements and Truth Values, Negations, Conjunctions, and Disjunctions, Truth Tables, Conditional

More information

5/8/2012. Exploring Utilities Chapter 5

5/8/2012. Exploring Utilities Chapter 5 Exploring Utilities Chapter 5 Examining the contents of files. Working with the cut and paste feature. Formatting output with the column utility. Searching for lines containing a target string with grep.

More information

NO. OF CREDITS US01CBCA01 : Fundamentals of Computer TITLE

NO. OF CREDITS US01CBCA01 : Fundamentals of Computer TITLE SEMESTER-I Core Courses Foundation Courses Elective TITLE NO. OF CREDITS US01CBCA01 : Fundamentals of Computer 3 Programming Using C US01CBCA02 : Computer Organization 3 US01CBCA03 : PC Software 3 US01CBCA04

More information

SARVEPALLI RADHAKRISHNAN UNIVERSITY, BHOPAL (M.P.) Scheme of Examination. First Semester-Master of Computer Application

SARVEPALLI RADHAKRISHNAN UNIVERSITY, BHOPAL (M.P.) Scheme of Examination. First Semester-Master of Computer Application Scheme of Examination First Semester-Master of Computer Application S.No Subject Subject Periods per Credits Maximum Marks Maximum Marks Total Code Name week (Theory Slot) (Practical Slot) Marks L T P

More information

Boolean expression using Laws, Min terms (SOP) Max terms (POS), Standard/Canonical SOP and POS forms,

Boolean expression using Laws, Min terms (SOP) Max terms (POS), Standard/Canonical SOP and POS forms, Topic and Details Lectures Weight Assigned age % Digital Logic Circuits: Introduction to digital signals, Logic Gates Universal gates, Implementation of UNIT-I 1 Universal gates using basic gates, Conversion

More information

VARIABLE, OPERATOR AND EXPRESSION [SET 1]

VARIABLE, OPERATOR AND EXPRESSION [SET 1] VARIABLE, OPERATOR AND EXPRESSION Question 1 Write a program to print HELLO WORLD on screen. Write a program to display the following output using a single cout statement. Subject Marks Mathematics 90

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

Sai Nath University. Assignment For MCA 1 st

Sai Nath University. Assignment For MCA 1 st Sai Nath University Assignment For MCA 1 st Sem. The Assignment will consist of two parts, A and B. will have 5 short answer questions(40-60 words) of 4 marks each. will have 4 long answer questions of

More information

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ (( )) (( )) [ x x ] cdc communications, inc. [ x x ] \ / presents... \ / (` ') (` ') (U) (U) Gibe's UNIX COMMAND Bible ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The latest file from the Cow's

More information

Course Syllabus. Prerequisites 1. No Prerequisite

Course Syllabus. Prerequisites 1. No Prerequisite Semester: I Subject: Lab on MS-Office Suite Credits: 2 Course Description MS Office Suite, Introduction focuses on beginning computer concepts, Windows operating system, Internet Explorer, Word, Excel,

More information

STRUCTURE AND SYLLABUS APPROVED IN THE BOARD OF STUDIES MEETING ON 2001 TO BE EFFECTIVE FROM THE ACADEMIC YEAR

STRUCTURE AND SYLLABUS APPROVED IN THE BOARD OF STUDIES MEETING ON 2001 TO BE EFFECTIVE FROM THE ACADEMIC YEAR STRUCTURE AND SYLLABUS APPROVED IN THE BOARD OF STUDIES MEETING ON 2001 TO BE EFFECTIVE FROM THE ACADEMIC YEAR 2000-2001. MCA II SEMESTER Scheme of Evaluation Max. Marks Min. Marks to pass L P C Int. Ext.

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

Introduction to Linux (Part I) BUPT/QMUL 2018/03/14

Introduction to Linux (Part I) BUPT/QMUL 2018/03/14 Introduction to Linux (Part I) BUPT/QMUL 2018/03/14 Contents 1. Background on Linux 2. Starting / Finishing 3. Typing Linux Commands 4. Commands to Use Right Away 5. Linux help continued 2 Contents 6.

More information

Scheme and Syllabus (With effect from ) Master of Computer Applications VISVESVARAYA TECHNOLOGICAL UNIVERSITY, BELGAUM

Scheme and Syllabus (With effect from ) Master of Computer Applications VISVESVARAYA TECHNOLOGICAL UNIVERSITY, BELGAUM Scheme and Syllabus (With effect from 2010-2011) Master of Computer Applications VISVESVARAYA TECHNOLOGICAL UNIVERSITY, BELGAUM SCHEME OF TEACHING AND EXAMINATION MASTER OF COMPUTER APPLICATIONS I SEMESTER

More information

CIS 1.5 Course Objectives. a. Understand the concept of a program (i.e., a computer following a series of instructions)

CIS 1.5 Course Objectives. a. Understand the concept of a program (i.e., a computer following a series of instructions) By the end of this course, students should CIS 1.5 Course Objectives a. Understand the concept of a program (i.e., a computer following a series of instructions) b. Understand the concept of a variable

More information

MATHEMATICAL STRUCTURES FOR COMPUTER SCIENCE

MATHEMATICAL STRUCTURES FOR COMPUTER SCIENCE MATHEMATICAL STRUCTURES FOR COMPUTER SCIENCE A Modern Approach to Discrete Mathematics SIXTH EDITION Judith L. Gersting University of Hawaii at Hilo W. H. Freeman and Company New York Preface Note to the

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

B. A. Semester I [Computer] Core Elective

B. A. Semester I [Computer] Core Elective Sub. Code Paper-I Paper-II Subject Name Computer Basics & IT Tools Practical Based On Computer Basics & IT Tools HEMCHANDRACHARYA NORTH GUJARAT UNIVERSITY, PATAN Faculty of Arts B. A. Semester I [Computer]

More information

M.C.A. (Sem.-lll) (CBCS) Examination November CCA-3003 Operating System and LinuxlUnix programming

M.C.A. (Sem.-lll) (CBCS) Examination November CCA-3003 Operating System and LinuxlUnix programming IIMII 003-007303 M.C.A. (Sem.-lll) (CBCS) Examination November-20 13 CCA-3003 Operating System and LinuxlUnix programming Faculty Code: 003 Subject Code: 007303 Time: 2'/' Hoursl ITotal Marks: 70 I. Attempt

More information

VEER NARMAD SOUTH GUJARAT UNIVERSITY

VEER NARMAD SOUTH GUJARAT UNIVERSITY Paper 101 Communication Skills 1. Introduction 1.1 Spoken and Conversation fir Greetings, Requests, Invitation, Permission, Thanks, etc. 1.2 Basic sentence Patterns 1.3 Agreement between Subject and Verb

More information

r=1 The Binomial Theorem. 4 MA095/98G Revision

r=1 The Binomial Theorem. 4 MA095/98G Revision Revision Read through the whole course once Make summary sheets of important definitions and results, you can use the following pages as a start and fill in more yourself Do all assignments again Do the

More information

DE 6456 DISTANCE EDUCATION. M.Sc. (Software Engineering) (5 Years Integrated) DEGREE EXAMINATION, MAY DIGITAL COMPUTER FUNDAMENTALS

DE 6456 DISTANCE EDUCATION. M.Sc. (Software Engineering) (5 Years Integrated) DEGREE EXAMINATION, MAY DIGITAL COMPUTER FUNDAMENTALS Wk 9 DE 6456 13 DISTANCE EDUCATION M.Sc. (Software Engineering) (5 Years Integrated) DEGREE EXAMINATION, MAY 2013. DIGITAL COMPUTER FUNDAMENTALS Time : Three hours Maximum : 100 marks PART A (5 8 = 40

More information

Questions Bank. 14) State any four advantages of using flow-chart

Questions Bank. 14) State any four advantages of using flow-chart Questions Bank Sub:PIC(22228) Course Code:-EJ-2I ----------------------------------------------------------------------------------------------- Chapter:-1 (Overview of C Programming)(10 Marks) 1) State

More information

Reg. No. : Question Paper Code : B.E./B.Tech. DEGREE EXAMINATION, JANUARY First Semester GE 6151 COMPUTER PROGRAMMING

Reg. No. : Question Paper Code : B.E./B.Tech. DEGREE EXAMINATION, JANUARY First Semester GE 6151 COMPUTER PROGRAMMING wss Reg. No. : Question Paper Code : 37007 B.E./B.Tech. DEGREE EXAMINATION, JANUARY 2014. First Semester Civil Engineering GE 6151 COMPUTER PROGRAMMING (Common to all branches) (Regulation 2013) Time :

More information

Tribhuvan University Institute of Science and Technology 2065

Tribhuvan University Institute of Science and Technology 2065 1CSc.102-2065 2065 Candidates are required to give their answers in their own words as for as practicable. 1. Draw the flow chart for finding largest of three numbers and write an algorithm and explain

More information

DEPARTMENT OF INFORMATION TECHNOLOGY KUMAUN UNIVERSITY, NAINITAL SEMESTER-I ( )

DEPARTMENT OF INFORMATION TECHNOLOGY KUMAUN UNIVERSITY, NAINITAL SEMESTER-I ( ) DEPARTMENT OF INFORMATION TECHNOLOGY KUMAUN UNIVERSITY, NAINITAL SEMESTER-I (2016-17) Scheme and syllabus for B. Com. (Information Technology) Note: - For B. Com., there will be one paper of 100 marks.

More information

CS11002 Programming and Data Structures Spring Introduction

CS11002 Programming and Data Structures Spring Introduction Title page CS11002 Programming and Data Structures Spring 2008 Goutam Biswas Abhijit Das Dipankar Sarkar Department of Computer Science & Engineering Indian Institute of Technology, Kharagpur Jan 04, 2008

More information

DEPARTMENT OF INFORMATION TECHNOLOGY KUMAUN UNIVERSITY, NAINITAL SEMESTER-I ( ) Scheme and syllabus for B.A./B. Sc. (Information Technology)

DEPARTMENT OF INFORMATION TECHNOLOGY KUMAUN UNIVERSITY, NAINITAL SEMESTER-I ( ) Scheme and syllabus for B.A./B. Sc. (Information Technology) DEPARTMENT OF INFORMATION TECHNOLOGY KUMAUN UNIVERSITY, NAINITAL SEMESTER-I (2016-17) Scheme and syllabus for B.A./B. Sc. (Information Technology) Semester system course structure: 1. The course work shall

More information

SIR C.R.REDDY COLLEGE OF ENGINEERING, ELURU DEPARTMENT OF INFORMATION TECHNOLOGY LESSON PLAN

SIR C.R.REDDY COLLEGE OF ENGINEERING, ELURU DEPARTMENT OF INFORMATION TECHNOLOGY LESSON PLAN SIR C.R.REDDY COLLEGE OF ENGINEERING, ELURU DEPARTMENT OF INFORMATION TECHNOLOGY LESSON PLAN SUBJECT: CSE 2.1.6 DIGITAL LOGIC DESIGN CLASS: 2/4 B.Tech., I SEMESTER, A.Y.2017-18 INSTRUCTOR: Sri A.M.K.KANNA

More information

VEER NARMAD SOUTH GUJARAT UNIVERSITY, SURAT Post Graduate Diploma in Computer Application (Evening) Semester - I Effective from: July

VEER NARMAD SOUTH GUJARAT UNIVERSITY, SURAT Post Graduate Diploma in Computer Application (Evening) Semester - I Effective from: July 1 Paper No. Paper Title : E101 : Computer Organization & Office Automation 1. Memory, Number System & Basic Computer Architecture 1.1. RAM, ROM, PROM, EPROM, Cache Memory, Virtual Memory 1.2. Secondary

More information

Lesson Plan. Week Theory Practical. Lecture Day Topic(including assignment Test) Practical Day

Lesson Plan. Week Theory Practical. Lecture Day Topic(including assignment Test) Practical Day Lesson Plan Name of Faculty: Neha Aggarwal Discipline: BCA Semester: 2nd Subject: Office Automation Tools(BCA-124) Lesson Plan Duration: 15 Weeks Workload (Lecture) Per Week: 4 Lecture,4 Practical Per

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

COMPUTER SCIENCE (ELECTIVE) Paper-A (100 Marks) Section-I: INTRODUCTION TO INFORMATION TECHNOLOGY Computer and its characteristics, Computer Organization & operation, Components of Computer, Input/Output

More information

C & Data Structures syllabus

C & Data Structures syllabus syllabus Overview: C language which is considered the mother of all languages, is and will be the most sought after programming language for any beginner to jump start his career in software development.

More information

Course Code Course Name Theory Practical Tutorial Theory TW/Practical Tutorial Total. Internal assessment. End Sem. Exam. Avg.

Course Code Course Name Theory Practical Tutorial Theory TW/Practical Tutorial Total. Internal assessment. End Sem. Exam. Avg. Course Code Course Name Theory Practical Tutorial Theory TW/Practical Tutorial Total ITL304 Java Programming Lab -- 2+2* -- -- 2 -- 2 Examination Scheme Theory Marks Course Code Course Name Internal assessment

More information