Preface... (vii) CHAPTER 1 INTRODUCTION TO COMPUTERS

Size: px
Start display at page:

Download "Preface... (vii) CHAPTER 1 INTRODUCTION TO COMPUTERS"

Transcription

1 Contents Preface... (vii) CHAPTER 1 INTRODUCTION TO COMPUTERS 1.1. INTRODUCTION TO COMPUTERS HISTORY OF C & C DESIGN, DEVELOPMENT AND EXECUTION OF A PROGRAM TESTING OF PROGRAMS White Box Testing Black Box Testing Testing Bench Mark Problems POINTS TO BE CONSIDERED IN PROGRAMMING DIFFERENT LEVELS OF PROGRAMMING LANGUAGES Imperative and functional programming languages Imperative programming language Functional programming language Interpretation and compilation Interpreted language Compiled language Intermediary languages Some widely used languages APPROACHES IN PROGRAMMING... 8 (ix)

2 1.8 TOP-DOWN PROGRAMMING AND STEP-WISE REFINEMENT (a) Advantages of Top down Programming (b) Disadvantages of Top down programming BOTTOM-UP PROGRAMMING Working of bottom-up programming (a) Advantages of bottom-up programming (b) Disadvantages of bottom up programming OPERATING SYSTEMS Types of operating systems Examples of operating systems Components Of an Operating System Modes Networking of Computers Computer Security Operating system user interface Diversity of operating systems and portability Black Berry and Black Berry O.S C Programming is a subset of C++ programming...27 COMPREHENSION EXERCISE CHAPTER 2 BASICS OF PROGRAMMING 2.1 INTRODUCTION TO BASICS OF PROGRAMMING LOGIC FOR PROGRAMMING ALGORITHM Pseudo code Flow Chart BASIC CATEGORIES OF OPERATIONS IMPORTANCE OF C LANGUAGE IMPORTANCE OF C++ LANGUAGE (x)

3 2.7 SOME OF THE COMPILERS AVAILABLE FOR C AND C List of compilers for C List of compilers available in C STRUCTURE OF A C PROGRAM PROGRAMMING RULES EXECUTING THE PROGRAM STEPS TO EXECUTE A C PROGRAM USING TC++ COMPILER COMPREHENSION EXERCISE CHAPTER 3 DECLARATIONS IN C AND C INTRODUCTION TO C DECLARATIONS CHARACTER SET Letters Digits Special Characters White spaces Delimiters Escape sequences or back slash character constants C TOKENS / C++ TOKENS Key Words Identifiers Constants Integer Constants Real Constants CHARACTER CONSTANTS Single Character Constants String Constants SPECIAL SYMBOLS OPERATORS (xi)

4 3.7. VARIABLES Rules for defining Variables DATA TYPES Primary or Basic or Fundamental Data type Integer, Float and Char Data types User-defined Data Types User defined data Enumerated datatypes Storage Class Data types Derived Data Types Empty Data Set or Void data type in C and C Additional Data Types in C DECLARATION AND INITIALIZATION OF VARIABLES Type conversion or type cast CONSTANT AND VOLATILE VARIABLES DEFINING SYMBOLIC CONSTANTS MODIFIABILITY Overflow and Underflow of Data Constant Qualifier Reading Data from Keyboard COMPREHENSION EXERCISE CHAPTER 4 OPERATORS AND EXPRESSIONS 4.1 INTRODUCTION PRIORITY OR HIERARCHY OR PRECEDENCE OF OPERATORS Use of Different Operators Evaluation of expressions using the priorities of operators TYPE CONVERSIONS IN EXPRESSIONS Operator precedence and associativity (xii)

5 4.4 SOME SPECIAL FEATURES OF C++ OVER C : SOME PROGRAMS IN C DIFFERENCES BETWEEN OLD AND AND CURRENT VERSIONS OF C Scope Resolution Operator Differences in I/O statements SOME PROGRAMS IN C++ USING TC COMPREHENSION EXERCISE CHAPTER 5 INPUT AND OUTPUT OPERATIONS IN C 5.1. INTRODUCTION Formatted Input Functions: (without field width specifications) Inputting Integer Variables Inputting Real Variables Inputting Character / String constants Inputting Mixed Variables FORMATTED OUTPUT STATEMENTS (WITHOUT FIELD WIDTHS) Outputting Integer Variables Outputting Real variables Outputting Mixed Variables FORMATTED INPUT STATEMENTS (WITH FIELD WIDTHS) Inputting Integer numbers Inputting Real Numbers Inputting Characters & Strings Reading Mixed Data Type using scanf ( ) Detection of Errors in Input ed Commonly used scanf ( ) format codes FORMATTED OUTPUT (WITH FIELD WIDTH) Outputting of Integer Numbers Outputting of Real Numbers (xiii)

6 5.4.3 Outputting of Mixed Variables without field widths Outputting of Strings with field widths Commonly used printf ( ) format codes ENHANCING THE READABILITY OF OUTPUT UNFORMATTED INPUT/OUTPUT FUNCTIONS Types of Unformatted Input / Output Functions in C CHARACTER RECOGNITION USING CODES COMMONLY USED LIBRARY FUNCTIONS C LIBRARY FUNCTION The Standard C Library Functions PARTIAL C/C++ FUNCTION LIST Functions Listed Alphabetically PROGRAM TO CONVERT DECIMAL NUMBER INTO BINARY NUMBER SYSTEM : DOWNLOAD Logic of This Program Program Flow Chart of sub-routine Convert Decimal to Different Number Base COMPREHENSION EXERCISE CHAPTER 6 DECISION AND LOOP CONTROL STATEMENTS 6.1. INTRODUCTION Conditional Operator The Simple if Statement Block if statement Nested if statements Simple if else statement Block if else statement (xiv)

7 6.1.7 Nested ifs or Nested else if or if else if ladder Break statement The continue Statement The goto Statement Switch Statement or Switch case statement THE BREAK STATEMENT Exit ( ) Function LOOPING for LOOP NESTED for LOOPS WHILE-LOOP DO-WHILE LOOP The DO-WHILE statement WITH WHILE loop JUMPS IN LOOPS Jumping Out of a Loop using Break Statement JUMPING WITHIN AND EXITING FROM THE LOOPS WITH GOTO STATEMENT SKIPPING A PART OF A LOOP USING CONTINUE STATEMENT COMPREHENSION EXERCISE CHAPTER 7 A R R A Y S 7.1 INTRODUCTION ONE DIMENSIONAL ARRAY Single dimensional Array initialisation TWO-DIMENSIONAL ARRAY Initialization of Two-dimensional arrays Two-dimensional sorting MULTIDIMENSIONAL ARRAYS COMPREHENSION EXERCISE (xv)

8 CHAPTER 8 F U N C T I O N S 8.1 INTRODUCTION THE RETURN STATEMENT Function with a return statement to return an expression CALLING A FUNCTION AND OBTAINING ITS RESULT Call by Value CALL BY REFERENCE CATEGORY OF FUNCTIONS CALLING A FUNCTION WITH NO ARGUMENTS AND NO RETURN VALUES CALLING FUNCTIONS WITH ARGUMENTS AND NO RETURN VALUES CALLING FUNCTION WITH ARGUMENTS AND WITH RETURN VALUE FUNCTION RETURNING MORE VALUES LOCAL AND GLOBAL VARIABLES ARGUMENTS OF A FUNCTION FUNCTION PROTOTYPES FUNCTIONS AND DECISION STATEMENTS FUNCTION AND LOOP STATEMENTS NESTING OF FUNCTIONS RECURSION FUNCTIONS WITH ARRAYS AND POINTERS SPECIAL FUNCTIONS OF C Default Parameters Inline functions atexit ( ) Function LIBRARY FUNCTIONS COMPREHENSION EXERCISE (xvi)

9 CHAPTER 9 STORAGE CLASS MODIFIERS 9.1 INTRODUCTION AUTO VARIABLES OR LOCAL VARIABLES DYNAMIC STORAGE OR EXTERNAL GLOBAL VARIABLES STATIC STORAGE OR STATIC VARIABLES REGISTER VARIABLES COMPREHENSION EXERCISE CHAPTER 10 P O I N T E R S 10.1 INTRODUCTION WHAT IS A POINTER? POINTER OPERATORS HOW TO ACCESS A VARIABLE THROUGH ITS POINTER? POINTER EXPRESSIONS Pointer Assignments Arithmetic Operations with Pointers POINTERS AND ARRAYS ARRAY OF POINTERS POINTERS TO POINTERS POINTERS AND CHARACTER STRINGS COMPREHENSION EXERCISE (xvii)

10 CHAPTER 11 PRE-PROCESSOR DIRECTIVES 11.1 INTRODUCTION # define DIRECTIVE AND MACRO SUBSTITUTION UNDEFINING A MACRO CONDITIONAL COMPILATION USING PRE-PROCESSOR DIRECTIVE THE #ifndef DIRECTIVE (if not defined) #if, #else and #elif (else-if) THE # line DIRECTIVE THE #error DIRECTIVE #OPERATOR OR TOKEN PASTING & STRINGIZING MACRO CONCATENATION WITH THE # # OPERATOR The # include DIRECTIVE INLINE DIRECTIVE THE #pragma SAVEREGS THE #pragma DIRECTIVE THE PREDEFINED MACROS IN ANSI AND TURBO-C STANDARD I/O PREDEFINED STREAMS IN C stdio.h THE PREDEFINED MACROS IN ctype.h COMPREHENSION EXERCISE CHAPTER 12 STRUCTURE AND UNION 12.1 INTRODUCTION FEATURES OF STRUCTURES DECLARATION AND INITIALIZATION OF STRUCTURES STRUCTURE WITHIN STRUCTURE OR NESTED STRUCTURES ARRAY OF STRUCTURES (xviii)

11 12.6 STRUCTURES & POINTERS OR POINTER TO STRUCTURE STRUCTURES AND FUNCTIONS BIT FIELDS UNION ANONYMOUS UNIONS typedef ENUMERATED DATA TYPE CALLING BIOS AND DOS SERVICES UNION OF STRUCTURES SCOPE OPERATOR OR SCOPE RESOLUTION OPERATOR : IN C COMPREHENSION EXERCISE CHAPTER 13 FILE OPERATIONS IN C 13.1 INTRODUCTION STREAMS AND FILE TYPES STEPS FOR FILE OPERATIONS Opening of a File FILE I/O OPERATIONS BINARY MODE - READ AND WRITE OTHER FILE FUNCTIONS SEARCHING ERRORS IN READING / WRITING FILES USE OF MULTIPLE FILES LOW LEVEL DISK I/O OPERATIONS COMMAND LINE ARGUMENTS APPLICATION OF COMMAND LINE ARGUMENTS ENVIRONMENT VARIABLES I/O RE DIRECTION COMPREHENSION EXERCISE (xix)

12 CHAPTER 14 DYNAMIC MEMORY ALLOCATION - I (LINKED LISTS) 14.1 INTRODUCTION Classification of Data Structures LINKED LIST Singly Linked List Traversing a singly linked list Addition and Deletion of Elements in a Singly Linked List Insertion in singly linked list Counting of Nodes in a Singly Linked List Deletion of nodes in a Singly linked list Changing the content of an element in a Singly Linked List Reversing of a singly linked list DOUBLY LINKED LIST (DLL) MODIFICATION OF DOUBLY LINKED LIST Insertion in a doubly linked list at the beginning Insertion in a doubly linked list at a specified position Deletion of an existing node in a doubly linked list CIRCULARLY LINKED LIST Singly linked Circular List Doubly linked Circular List LINKED LIST AS APPLICATIONS OF LINEAR DATA STRUCTURE Polynomial Operation Linked Dictionary COMPREHENSION EXERCISE (xx)

13 CHAPTER 15 DYNAMIC MEMORY ALLOCATION - II (STACKS AND QUEUES) 15.1 INTRODUCTION TO STACKS IMPLEMENTATION OF STACKS USING LINKED LIST STACK RELATED TERMS OPERATION ON A STACK IMPLEMENTATION OF A STACK INTRODUCTION TO QUEUES REPRESENTATION OF QUEUE INSERTION AND DELETION OPERATIONS IN A QUEUE CIRCULAR QUEUES Deletion and insertion in a full circular queue PRIORITY QUEUE Similarity to queues Implementation of priority queue Effect of different data structures on priority queue Equivalence of priority queues and sorting algorithms Applications of priority queue DEQUE or DEQUEUE (as Noun), Deque (as verb) and Double-ended Queue Naming conventions of Deque Distinctions and sub-types of Deque Operations of Deque in different languages Implementations of Deque Language support for Deque Complexity of Deque Applications of Deque (xxi)

14 15.12 REPRESENTATION & OPERATIONS OF ARITHMETIC EXPRESSIONS USING STACK OPERATIONS Infix, prefix, and postfix notations Evaluation of postfix expression Conversion of expression from infix to postfix RECURSION COMPREHENSION EXERCISE CHAPTER 16 OPERATIONS ON DATA STRUCTURES (SEARCHING AND SORTING) 16.1 INTRODUCTION SEARCHING Linear Search or Sequential Search Binary Search a. Time complexity of binary search b. Comparison of binary search with other techniques Features of Binary Search Comparison of Binary Search with other Search Techniques TREES AND GRAPHS Trees Binary Trees Binary Tree Representation Traversing Binary Trees MINIMUM SPANNING TREE Algorithms to find a minimum spanning tree (xxii)

15 MST on complete graphs - calculation of approximative expected size Related problems - Types of spanning trees AVL TREE Basic Operations on an AVL Tree Comparison of AVL to other structures GRAPHS Prim s algorithm for Traversal of a Graph TYPES OF TREE SEARCHES Breadth-First Search Depth-First Search SORTING Exchange Sort (Bubble Sort) Selection Sort Quick Sort Merge sort K-Way Merge Sort What differentiates a K-Way Merge sort from a regular Merge sort? Heap Sort or Tree Sort Insertion Sort (or Simple Insertion Sort) Shell sort COMPREHENSION EXERCISE CHAPTER 17 CLASSES AND OBJECTS IN C INTRODUCTION Difference between Structures and Class Declaration and definition of a simple class (xxiii)

16 Inline Member Functions (Function declared inside the class or outside a class with scope operator): Array of objects Constructor for initializing an object Parameterized Constructors Explicit Constructor DESTRUCTOR FRIEND FUNCTIONS FRIEND CLASSES DIFFERENT METHODS OF ACCESSION OF OBJECTS Object Assignment Accessing a Private data member from a different object DYNAMIC MEMORY ALLOCATION IN C++ USING KEY WORDS Const. member function and const. objects Mutable to change const object instance The size of a Class Object Nested Class (Class within another class) The Copy Constructor This Pointer : (this ) Static Class member, Data member & Member Function of a class Classes and structures COMPREHENSION EXERCISE CHAPTER 18 INHERITANCE 18.1 INTRODUCTION SINGLE INHERITANCE Derived Classes Access in Inheritance Constructors and Destructors in inheritance (xxiv)

17 Multilevel inheritance Multiple inheritance Virtual base class Passing parameters from derived class constructor to base class constructor COMPREHENSION EXERCISE CHAPTER 19 DIFFERENT TYPES OF OVERLOADING IN C INTRODUCTION TO OVERLOADING TYPES OF OVERLOADING Overloading related to functions - Function Overloading Over loading of Function Call Operator ( ) Constructor overloading Operator overloading Unary Operator Overloading Binary operator overloading Overloading Relational Operators Overloading Arithmetic Assignment Operators Overloading the Assignment Operator Overloading Special type of Operator [ ] ( ) Overloading conversion operators Overloading the exponent operator ^ Overloading String Concatenation Overloading new and delete in memory management Operator Functions as friend for overloaded operator to be commutative : COMPREHENSION EXERCISE (xxv)

18 CHAPTER 20 POLYMORPHISM 20.1 INTRODUCTION COMPILE AND RUNTIME POLYMORPHISM VIRTUAL FUNCTIONS Pure virtual functions Abstract class TYPES OF DESTRUCTORS Virtual destructor Explicit destructor COMPREHENSION EXERCISE CHAPTER 21 INPUT-OUTPUT OPERATIONS IN C INTRODUCTION STREAM INSERTION & EXTRACTION OPERATORS ( << ) & ( >>) Stream Insertion Operator for Output (<<) Stream extraction Operator for Input ( >> ) Formatting Output using manipulators Constructing our own manipulators COMPREHENSION EXERCISE CHAPTER 22 FILE OPERATIONS IN C INTRODUCTION FILE INPUT / OUTPUT IN C Explicit function for file Closure (xxvi)

19 22.3 INPUT / OUTPUT OPERATIONS ON FILES I/O operations on text files I/O operations on Binary files I/O Operations on Random files COMMAND LINE ARGUMENTS IN C INDEXING DATABASE AND FILES Indexing Data Base Index architecture Operations on Indexing Applications and limitations of Indexing FILE INDEXING Indexing File Record IDs COMPREHENSION EXERCISE CHAPTER 23 SPECIAL FEATURES IN C INTRODUCTION NAMESPACE Avoiding of namespace using scope operator Use of namespace to avoid use of scope operator Creation of separate namespace in C++ program Use of namespace Switching of namespaces Run-time Type Information (RTTI) using #include<typeinfo> Type Casting Four methods of type casting operations in C TEMPLATES Types of Templates Faster templates using inline keywords or functions Differences between Class and Function Templates (xxvii)

20 23.4 DEFAULT INITIALIZER IN TEMPLATE TO ONLY CLASS TEMPLATES EXCEPTION HANDLING Actions of Exception Handling Methods of Exception Handling Handling of different types of Exceptions Constructors and Destructors in Exception Handling Other Exception Specifications COMPREHENSION EXERCISE CHAPTER 24 ABSTRACT DATA TYPE (ADT) PROGRAMS 24.1 INTRODUCTION WHAT IS ADT? Abstract Data Structure Abstract Data Type SALIENT FEATURES OF ABSTRACT DATA TYPES WHY ADT? ADT STACK EXAMPLE Stack ADT A QUEUE ADT ADT EMPLOYEE LIST COMPREHENSION EXERCISE REFERENCES (xxviii)

Contents. Figures. Tables. Examples. Foreword. Preface. 1 Basics of Java Programming 1. xix. xxi. xxiii. xxvii. xxix

Contents. Figures. Tables. Examples. Foreword. Preface. 1 Basics of Java Programming 1. xix. xxi. xxiii. xxvii. xxix PGJC4_JSE8_OCA.book Page ix Monday, June 20, 2016 2:31 PM Contents Figures Tables Examples Foreword Preface xix xxi xxiii xxvii xxix 1 Basics of Java Programming 1 1.1 Introduction 2 1.2 Classes 2 Declaring

More information

SAURASHTRA UNIVERSITY

SAURASHTRA UNIVERSITY SAURASHTRA UNIVERSITY RAJKOT INDIA Accredited Grade A by NAAC (CGPA 3.05) CURRICULAM FOR B.Sc. (Computer Science) Bachelor of Science (Computer Science) (Semester - 1 Semester - 2) Effective From June

More information

Writing an ANSI C Program Getting Ready to Program A First Program Variables, Expressions, and Assignments Initialization The Use of #define and

Writing an ANSI C Program Getting Ready to Program A First Program Variables, Expressions, and Assignments Initialization The Use of #define and Writing an ANSI C Program Getting Ready to Program A First Program Variables, Expressions, and Assignments Initialization The Use of #define and #include The Use of printf() and scanf() The Use of printf()

More information

Contents. Preface. Introduction. Introduction to C Programming

Contents. Preface. Introduction. Introduction to C Programming c11fptoc.fm Page vii Saturday, March 23, 2013 4:15 PM Preface xv 1 Introduction 1 1.1 1.2 1.3 1.4 1.5 Introduction The C Programming Language C Standard Library C++ and Other C-Based Languages Typical

More information

PROGRAMMING IN C++ (Regulation 2008) Answer ALL questions PART A (10 2 = 20 Marks) PART B (5 16 = 80 Marks) function? (8)

PROGRAMMING IN C++ (Regulation 2008) Answer ALL questions PART A (10 2 = 20 Marks) PART B (5 16 = 80 Marks) function? (8) B.E./B.Tech. DEGREE EXAMINATION, NOVEMBER/DECEMBER 2009 EC 2202 DATA STRUCTURES AND OBJECT ORIENTED Time: Three hours PROGRAMMING IN C++ Answer ALL questions Maximum: 100 Marks 1. When do we declare a

More information

Absolute C++ Walter Savitch

Absolute C++ Walter Savitch Absolute C++ sixth edition Walter Savitch Global edition This page intentionally left blank Absolute C++, Global Edition Cover Title Page Copyright Page Preface Acknowledgments Brief Contents Contents

More information

The Foundation of C++: The C Subset An Overview of C p. 3 The Origins and History of C p. 4 C Is a Middle-Level Language p. 5 C Is a Structured

The Foundation of C++: The C Subset An Overview of C p. 3 The Origins and History of C p. 4 C Is a Middle-Level Language p. 5 C Is a Structured Introduction p. xxix The Foundation of C++: The C Subset An Overview of C p. 3 The Origins and History of C p. 4 C Is a Middle-Level Language p. 5 C Is a Structured Language p. 6 C Is a Programmer's Language

More information

Contents. 1 Introduction to Computers, the Internet and the World Wide Web 1. 2 Introduction to C Programming 26

Contents. 1 Introduction to Computers, the Internet and the World Wide Web 1. 2 Introduction to C Programming 26 Preface xix 1 Introduction to Computers, the Internet and the World Wide Web 1 1.1 Introduction 2 1.2 What Is a Computer? 4 1.3 Computer Organization 4 1.4 Evolution of Operating Systems 5 1.5 Personal,

More information

DEPARTMENT OF COMPUTER APPLICATIONS B.C.A. - FIRST YEAR ( REGULATION) SECOND SEMESTER LESSON PLAN SRM INSTITUTE OF SCIENCE AND TECHNOLOGY

DEPARTMENT OF COMPUTER APPLICATIONS B.C.A. - FIRST YEAR ( REGULATION) SECOND SEMESTER LESSON PLAN SRM INSTITUTE OF SCIENCE AND TECHNOLOGY DEPARTMENT OF COMPUTER APPLICATIONS B.C.A. - FIRST YEAR (2015-2016 REGULATION) SECOND SEMESTER LESSON PLAN SRM INSTITUTE OF SCIENCE AND TECHNOLOGY FACULTY OF SCIENCE AND HUMANITIES SRM NAGAR, KATTANKULATHUR

More information

Problem Solving with C++

Problem Solving with C++ GLOBAL EDITION Problem Solving with C++ NINTH EDITION Walter Savitch Kendrick Mock Ninth Edition PROBLEM SOLVING with C++ Problem Solving with C++, Global Edition Cover Title Copyright Contents Chapter

More information

Table of Contents. Chapter 1: Introduction to Data Structures... 1

Table of Contents. Chapter 1: Introduction to Data Structures... 1 Table of Contents Chapter 1: Introduction to Data Structures... 1 1.1 Data Types in C++... 2 Integer Types... 2 Character Types... 3 Floating-point Types... 3 Variables Names... 4 1.2 Arrays... 4 Extraction

More information

WITH C+ + William Ford University of the Pacific. William Topp University of the Pacific. Prentice Hall, Englewood Cliffs, New Jersey 07632

WITH C+ + William Ford University of the Pacific. William Topp University of the Pacific. Prentice Hall, Englewood Cliffs, New Jersey 07632 DATA STRUCTURES WITH C+ + William Ford University of the Pacific William Topp University of the Pacific Prentice Hall, Englewood Cliffs, New Jersey 07632 CONTENTS Preface xvii CHAPTER 1 INTRODUCTION 1

More information

CONTENTS. PART 1 Structured Programming 1. 1 Getting started 3. 2 Basic programming elements 17

CONTENTS. PART 1 Structured Programming 1. 1 Getting started 3. 2 Basic programming elements 17 List of Programs xxv List of Figures xxix List of Tables xxxiii Preface to second version xxxv PART 1 Structured Programming 1 1 Getting started 3 1.1 Programming 3 1.2 Editing source code 5 Source code

More information

Practical C++ Programming

Practical C++ Programming SECOND EDITION Practical C++ Programming Steve Oualline O'REILLY' Beijing Cambridge Farnham Koln Paris Sebastopol Taipei Tokyo Preface xv Part I. The Basics 1. What Is C++? 3 A Brief History of C++ 3 C++

More information

LESSON PLAN B.C.A. - FIRST YEAR ( REGULATION) SECOND SEMESTER

LESSON PLAN B.C.A. - FIRST YEAR ( REGULATION) SECOND SEMESTER DEPARTMENT OF COMPUTER APPLICATIONS LESSON PLAN B.C.A. - FIRST YEAR (2014-2015 REGULATION) SECOND SEMESTER SRM UNIVERSITY FACULTY OF SCIENCE AND HUMANITIES SRM NAGAR, KATTANKULATHUR 603 203 SRM UNIVERSITY

More information

Preface to the Second Edition Preface to the First Edition Brief Contents Introduction to C++ p. 1 A Review of Structures p.

Preface to the Second Edition Preface to the First Edition Brief Contents Introduction to C++ p. 1 A Review of Structures p. Preface to the Second Edition p. iii Preface to the First Edition p. vi Brief Contents p. ix Introduction to C++ p. 1 A Review of Structures p. 1 The Need for Structures p. 1 Creating a New Data Type Using

More information

CS201 - Introduction to Programming Glossary By

CS201 - Introduction to Programming Glossary By CS201 - Introduction to Programming Glossary By #include : The #include directive instructs the preprocessor to read and include a file into a source code file. The file name is typically enclosed with

More information

Short Notes of CS201

Short Notes of CS201 #includes: Short Notes of CS201 The #include directive instructs the preprocessor to read and include a file into a source code file. The file name is typically enclosed with < and > if the file is a system

More information

OBJECT ORIENTED DATA STRUCTURE & ALGORITHMS

OBJECT ORIENTED DATA STRUCTURE & ALGORITHMS OBJECT ORIENTED DATA STRUCTURE & ALGORITHMS C++ PROGRAMMING LANGUAGE CONTENT C++ Language Contents: Introduction to C++ Language Difference and Similarities between C and C++ Role Of Compilers and Assemblers

More information

About Codefrux While the current trends around the world are based on the internet, mobile and its applications, we try to make the most out of it. As for us, we are a well established IT professionals

More information

DYNAMIC MEMORY ALLOCATION AND DEALLOCATION

DYNAMIC MEMORY ALLOCATION AND DEALLOCATION COURSE TITLE DATA STRUCTURE DETAILED SYLLABUS SR.NO NAME OF CHAPTERS & DETAILS HOURS ALLOTTED 1 USER DEFINED DATATYPE /STRUCTURE About structure Defining structure Accessing structure element Array of

More information

PESIT Bangalore South Campus Department of MCA Course Information for

PESIT Bangalore South Campus Department of MCA Course Information for 1. GENERAL INFORMATION: PESIT Bangalore South Campus Department of MCA Course Information for Data Structures Using C(13MCA21) Academic Year: 2015 Semester: II Title Code Duration (hrs) Lectures 48 Hrs

More information

Welcome to Teach Yourself Acknowledgments Fundamental C++ Programming p. 2 An Introduction to C++ p. 4 A Brief History of C++ p.

Welcome to Teach Yourself Acknowledgments Fundamental C++ Programming p. 2 An Introduction to C++ p. 4 A Brief History of C++ p. Welcome to Teach Yourself p. viii Acknowledgments p. xv Fundamental C++ Programming p. 2 An Introduction to C++ p. 4 A Brief History of C++ p. 6 Standard C++: A Programming Language and a Library p. 8

More information

Contents. 2 Introduction to C++ Programming,

Contents. 2 Introduction to C++ Programming, cppfp2_toc.fm Page vii Thursday, February 14, 2013 9:33 AM Chapter 24 and Appendices F K are PDF documents posted online at www.informit.com/title/9780133439854 Preface xix 1 Introduction 1 1.1 Introduction

More information

DETAILED SYLLABUS INTRODUCTION TO C LANGUAGE

DETAILED SYLLABUS INTRODUCTION TO C LANGUAGE COURSE TITLE C LANGUAGE DETAILED SYLLABUS SR.NO NAME OF CHAPTERS & DETAILS HOURS ALLOTTED 1 INTRODUCTION TO C LANGUAGE About C Language Advantages of C Language Disadvantages of C Language A Sample Program

More information

CHAPTER 1 Introduction to Computers and Programming CHAPTER 2 Introduction to C++ ( Hexadecimal 0xF4 and Octal literals 031) cout Object

CHAPTER 1 Introduction to Computers and Programming CHAPTER 2 Introduction to C++ ( Hexadecimal 0xF4 and Octal literals 031) cout Object CHAPTER 1 Introduction to Computers and Programming 1 1.1 Why Program? 1 1.2 Computer Systems: Hardware and Software 2 1.3 Programs and Programming Languages 8 1.4 What is a Program Made of? 14 1.5 Input,

More information

B.V. Patel Institute of Business Management, Computer & Information Technology, Uka Tarsadia University

B.V. Patel Institute of Business Management, Computer & Information Technology, Uka Tarsadia University Unit 1 Programming Language and Overview of C 1. State whether the following statements are true or false. a. Every line in a C program should end with a semicolon. b. In C language lowercase letters are

More information

Appendix. Grammar. A.1 Introduction. A.2 Keywords. There is no worse danger for a teacher than to teach words instead of things.

Appendix. Grammar. A.1 Introduction. A.2 Keywords. There is no worse danger for a teacher than to teach words instead of things. A Appendix Grammar There is no worse danger for a teacher than to teach words instead of things. Marc Block Introduction keywords lexical conventions programs expressions statements declarations declarators

More information

C Programming SYLLABUS COVERAGE SYLLABUS IN DETAILS

C Programming SYLLABUS COVERAGE SYLLABUS IN DETAILS C Programming C SYLLABUS COVERAGE Introduction to Programming Fundamentals in C Operators and Expressions Data types Input-Output Library Functions Control statements Function Storage class Pointer Pointer

More information

17CS33:Data Structures Using C QUESTION BANK

17CS33:Data Structures Using C QUESTION BANK 17CS33:Data Structures Using C QUESTION BANK REVIEW OF STRUCTURES AND POINTERS, INTRODUCTION TO SPECIAL FEATURES OF C Learn : Usage of structures, unions - a conventional tool for handling a group of logically

More information

Tokens, Expressions and Control Structures

Tokens, Expressions and Control Structures 3 Tokens, Expressions and Control Structures Tokens Keywords Identifiers Data types User-defined types Derived types Symbolic constants Declaration of variables Initialization Reference variables Type

More information

DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING UNIT-1

DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING UNIT-1 DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING Year & Semester : I / II Section : CSE - 1 & 2 Subject Code : CS6202 Subject Name : Programming and Data Structures-I Degree & Branch : B.E C.S.E. 2 MARK

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

Prepared By: Ms. Nidhi Solanki (Assist. Prof.) Page 1

Prepared By: Ms. Nidhi Solanki (Assist. Prof.) Page 1 QUESTION BANK ON COURSE: 304: PRELIMINARIES: 1. What is array of pointer, explain with appropriate example? 2 2. Differentiate between call by value and call by reference, give example. 3. Explain pointer

More information

Introduction to Computers and C++ Programming p. 1 Computer Systems p. 2 Hardware p. 2 Software p. 7 High-Level Languages p. 8 Compilers p.

Introduction to Computers and C++ Programming p. 1 Computer Systems p. 2 Hardware p. 2 Software p. 7 High-Level Languages p. 8 Compilers p. Introduction to Computers and C++ Programming p. 1 Computer Systems p. 2 Hardware p. 2 Software p. 7 High-Level Languages p. 8 Compilers p. 9 Self-Test Exercises p. 11 History Note p. 12 Programming and

More information

R10 SET - 1. Code No: R II B. Tech I Semester, Supplementary Examinations, May

R10 SET - 1. Code No: R II B. Tech I Semester, Supplementary Examinations, May www.jwjobs.net R10 SET - 1 II B. Tech I Semester, Supplementary Examinations, May - 2012 (Com. to CSE, IT, ECC ) Time: 3 hours Max Marks: 75 *******-****** 1. a) Which of the given options provides the

More information

C-LANGUAGE CURRICULAM

C-LANGUAGE CURRICULAM C-LANGUAGE CURRICULAM Duration: 2 Months. 1. Introducing C 1.1 History of C Origin Standardization C-Based Languages 1.2 Strengths and Weaknesses Of C Strengths Weaknesses Effective Use of C 2. C Fundamentals

More information

Introduction p. 1 Pseudocode p. 2 Algorithm Header p. 2 Purpose, Conditions, and Return p. 3 Statement Numbers p. 4 Variables p. 4 Algorithm Analysis

Introduction p. 1 Pseudocode p. 2 Algorithm Header p. 2 Purpose, Conditions, and Return p. 3 Statement Numbers p. 4 Variables p. 4 Algorithm Analysis Introduction p. 1 Pseudocode p. 2 Algorithm Header p. 2 Purpose, Conditions, and Return p. 3 Statement Numbers p. 4 Variables p. 4 Algorithm Analysis p. 5 Statement Constructs p. 5 Pseudocode Example p.

More information

OBJECT ORIENTED PROGRAMMING USING C++ CSCI Object Oriented Analysis and Design By Manali Torpe

OBJECT ORIENTED PROGRAMMING USING C++ CSCI Object Oriented Analysis and Design By Manali Torpe OBJECT ORIENTED PROGRAMMING USING C++ CSCI 5448- Object Oriented Analysis and Design By Manali Torpe Fundamentals of OOP Class Object Encapsulation Abstraction Inheritance Polymorphism Reusability C++

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

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: Pre-requisite Knowledge and Skills, Inspire with C Programming, Checklist for Installation, The Programming Languages, The main

More information

Introduction to Programming Using Java (98-388)

Introduction to Programming Using Java (98-388) Introduction to Programming Using Java (98-388) Understand Java fundamentals Describe the use of main in a Java application Signature of main, why it is static; how to consume an instance of your own class;

More information

Appendices E through H are PDF documents posted online at the book s Companion Website (located at

Appendices E through H are PDF documents posted online at the book s Companion Website (located at chtp7_printonlytoc.fm Page vii Monday, January 23, 2012 1:30 PM Appendices E through H are PDF documents posted online at the book s Companion Website (located at www.pearsonhighered.com/deitel). Preface

More information

C Programming. Course Outline. C Programming. Code: MBD101. Duration: 10 Hours. Prerequisites:

C Programming. Course Outline. C Programming. Code: MBD101. Duration: 10 Hours. Prerequisites: C Programming Code: MBD101 Duration: 10 Hours Prerequisites: You are a computer science Professional/ graduate student You can execute Linux/UNIX commands You know how to use a text-editing tool You should

More information

VALLIAMMAI ENGINEERING COLLEGE

VALLIAMMAI ENGINEERING COLLEGE VALLIAMMAI ENGINEERING COLLEGE SRM Nagar, Kattankulathur 603 203 DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING QUESTION BANK B.E. - Electrical and Electronics Engineering IV SEMESTER CS6456 - OBJECT ORIENTED

More information

PROBLEM SOLVING WITH FORTRAN 90

PROBLEM SOLVING WITH FORTRAN 90 David R. Brooks PROBLEM SOLVING WITH FORTRAN 90 FOR SCIENTISTS AND ENGINEERS Springer Contents Preface v 1.1 Overview for Instructors v 1.1.1 The Case for Fortran 90 vi 1.1.2 Structure of the Text vii

More information

Introduction to C++ Systems Programming

Introduction to C++ Systems Programming Introduction to C++ Systems Programming Introduction to C++ Syntax differences between C and C++ A Simple C++ Example C++ Input/Output C++ Libraries C++ Header Files Another Simple C++ Example Inline Functions

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

Data Structures in C++ Using the Standard Template Library

Data Structures in C++ Using the Standard Template Library Data Structures in C++ Using the Standard Template Library Timothy Budd Oregon State University ^ ADDISON-WESLEY An imprint of Addison Wesley Longman, Inc. Reading, Massachusetts Harlow, England Menlo

More information

Cpt S 122 Data Structures. Course Review FINAL. Nirmalya Roy School of Electrical Engineering and Computer Science Washington State University

Cpt S 122 Data Structures. Course Review FINAL. Nirmalya Roy School of Electrical Engineering and Computer Science Washington State University Cpt S 122 Data Structures Course Review FINAL Nirmalya Roy School of Electrical Engineering and Computer Science Washington State University Final When: Wednesday (12/12) 1:00 pm -3:00 pm Where: In Class

More information

The Waite Group's. New. Primer Plus. Second Edition. Mitchell Waite and Stephen Prata SAMS

The Waite Group's. New. Primer Plus. Second Edition. Mitchell Waite and Stephen Prata SAMS The Waite Group's New Primer Plus Second Edition Mitchell Waite and Stephen Prata SAMS PUBLISHING A Division of Prentice Hall Computer Publishing 11711 North College, Carmel, Indiana 46032 USA Contents

More information

Chapter 15 - C++ As A "Better C"

Chapter 15 - C++ As A Better C Chapter 15 - C++ As A "Better C" Outline 15.1 Introduction 15.2 C++ 15.3 A Simple Program: Adding Two Integers 15.4 C++ Standard Library 15.5 Header Files 15.6 Inline Functions 15.7 References and Reference

More information

MaanavaN.Com CS1203 OBJECT ORIENTED PROGRAMMING DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING

MaanavaN.Com CS1203 OBJECT ORIENTED PROGRAMMING DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING SUB CODE / SUBJECT: CS1203 / Object oriented programming YEAR / SEM: II / III QUESTION BANK UNIT I FUNDAMENTALS PART-A (2 MARKS) 1. What is Object Oriented

More information

About Codefrux While the current trends around the world are based on the internet, mobile and its applications, we try to make the most out of it. As for us, we are a well established IT professionals

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

Tentative Teaching Plan Department of Software Engineering Name of Teacher Dr. Naeem Ahmed Mahoto Course Name Computer Programming

Tentative Teaching Plan Department of Software Engineering Name of Teacher Dr. Naeem Ahmed Mahoto Course Name Computer Programming Mehran University of Engineering Technology, Jamshoro FRM-003/00/QSP-004 Dec, 01, 2001 Tentative Teaching Plan Department of Software Engineering Name of Teacher Dr. Naeem Ahmed Mahoto Course Name Computer

More information

Computer Programming C++ (wg) CCOs

Computer Programming C++ (wg) CCOs Computer Programming C++ (wg) CCOs I. The student will analyze the different systems, and languages of the computer. (SM 1.4, 3.1, 3.4, 3.6) II. The student will write, compile, link and run a simple C++

More information

DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING B.E SECOND SEMESTER CS 6202 PROGRAMMING AND DATA STRUCTURES I TWO MARKS UNIT I- 2 MARKS

DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING B.E SECOND SEMESTER CS 6202 PROGRAMMING AND DATA STRUCTURES I TWO MARKS UNIT I- 2 MARKS DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING B.E SECOND SEMESTER CS 6202 PROGRAMMING AND DATA STRUCTURES I TWO MARKS UNIT I- 2 MARKS 1. Define global declaration? The variables that are used in more

More information

"Charting the Course... Java Programming Language. Course Summary

Charting the Course... Java Programming Language. Course Summary Course Summary Description This course emphasizes becoming productive quickly as a Java application developer. This course quickly covers the Java language syntax and then moves into the object-oriented

More information

Question Paper Code : 97044

Question Paper Code : 97044 Reg. No. : Question Paper Code : 97044 B.E./B.Tech. DEGREE EXAMINATION NOVEMBER/DECEMBER 2014 Third Semester Computer Science and Engineering CS 6301 PROGRAMMING AND DATA STRUCTURES-II (Regulation 2013)

More information

KLiC C. About. Tools: Turbo C++ Syllabus:

KLiC C. About. Tools: Turbo C++ Syllabus: KLiC C About C is basic programming language in which you can program easily and develop effective applications, games etc. This course is split up into several sections, lessons, and Exercises for you

More information

A Fast Review of C Essentials Part I

A Fast Review of C Essentials Part I A Fast Review of C Essentials Part I Structural Programming by Z. Cihan TAYSI Outline Program development C Essentials Functions Variables & constants Names Formatting Comments Preprocessor Data types

More information

Java Fundamentals p. 1 The Origins of Java p. 2 How Java Relates to C and C++ p. 3 How Java Relates to C# p. 4 Java's Contribution to the Internet p.

Java Fundamentals p. 1 The Origins of Java p. 2 How Java Relates to C and C++ p. 3 How Java Relates to C# p. 4 Java's Contribution to the Internet p. Preface p. xix Java Fundamentals p. 1 The Origins of Java p. 2 How Java Relates to C and C++ p. 3 How Java Relates to C# p. 4 Java's Contribution to the Internet p. 5 Java Applets and Applications p. 5

More information

SRM ARTS AND SCIENCE COLLEGE SRM NAGAR, KATTANKULATHUR

SRM ARTS AND SCIENCE COLLEGE SRM NAGAR, KATTANKULATHUR SRM ARTS AND SCIENCE COLLEGE SRM NAGAR, KATTANKULATHUR 603203 DEPARTMENT OF COMPUTER SCIENCE & APPLICATIONS QUESTION BANK (2017-2018) Course / Branch : M.Sc CST Semester / Year : EVEN / II Subject Name

More information

Code No: R Set No. 1

Code No: R Set No. 1 Code No: R05010106 Set No. 1 1. (a) Draw a Flowchart for the following The average score for 3 tests has to be greater than 80 for a candidate to qualify for the interview. Representing the conditional

More information

END TERM EXAMINATION

END TERM EXAMINATION END TERM EXAMINATION THIRD SEMESTER [BCA] DECEMBER 2007 Paper Code: BCA 209 Subject: Object Oriented Programming Time: 3 hours Maximum Marks: 75 Note: Attempt all questions. Internal choice is indicated.

More information

C++ (Non for C Programmer) (BT307) 40 Hours

C++ (Non for C Programmer) (BT307) 40 Hours C++ (Non for C Programmer) (BT307) 40 Hours Overview C++ is undoubtedly one of the most widely used programming language for implementing object-oriented systems. The C++ language is based on the popular

More information

RAJIV GANDHI COLLEGE OF ENGINEERING AND TECHNOLOGY DEPARTMENT OF INFORMATION TECHNOLOGY OBJECT ORIENTED PROGRAMMING QUESTION BANK UNIT I 2 MARKS

RAJIV GANDHI COLLEGE OF ENGINEERING AND TECHNOLOGY DEPARTMENT OF INFORMATION TECHNOLOGY OBJECT ORIENTED PROGRAMMING QUESTION BANK UNIT I 2 MARKS RAJIV GANDHI COLLEGE OF ENGINEERING AND TECHNOLOGY DEPARTMENT OF INFORMATION TECHNOLOGY OBJECT ORIENTED PROGRAMMING YEAR/SEM:II & III UNIT I 1) Give the evolution diagram of OOPS concept. 2) Give some

More information

Linked List. April 2, 2007 Programming and Data Structure 1

Linked List. April 2, 2007 Programming and Data Structure 1 Linked List April 2, 2007 Programming and Data Structure 1 Introduction head A linked list is a data structure which can change during execution. Successive elements are connected by pointers. Last element

More information

Learning C# 3.0. Jesse Liberty and Brian MacDonald O'REILLY. Beijing Cambridge Farnham Köln Sebastopol Taipei Tokyo

Learning C# 3.0. Jesse Liberty and Brian MacDonald O'REILLY. Beijing Cambridge Farnham Köln Sebastopol Taipei Tokyo Learning C# 3.0 Jesse Liberty and Brian MacDonald O'REILLY Beijing Cambridge Farnham Köln Sebastopol Taipei Tokyo Table of Contents Preface xv 1. C# and.net Programming 1 Installing C# Express 2 C# 3.0

More information

JAYARAM COLLEGE OF ENGINEERING AND TECHNOLOGY Pagalavadi, Tiruchirappalli (An approved by AICTE and Affiliated to Anna University)

JAYARAM COLLEGE OF ENGINEERING AND TECHNOLOGY Pagalavadi, Tiruchirappalli (An approved by AICTE and Affiliated to Anna University) Estd: 1994 JAYARAM COLLEGE OF ENGINEERING AND TECHNOLOGY Pagalavadi, Tiruchirappalli - 621014 (An approved by AICTE and Affiliated to Anna University) ISO 9001:2000 Certified Subject Code & Name : CS 1202

More information

VALLIAMMAI ENGNIEERING COLLEGE SRM Nagar, Kattankulathur DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING QUESTION BANK

VALLIAMMAI ENGNIEERING COLLEGE SRM Nagar, Kattankulathur DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING QUESTION BANK VALLIAMMAI ENGNIEERING COLLEGE SRM Nagar, Kattankulathur 603203. DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING QUESTION BANK Degree & Branch : B.E E.C.E. Year & Semester : II / IV Section : ECE 1, 2 &

More information

R13. II B. Tech I Semester Supplementary Examinations, May/June DATA STRUCTURES (Com. to ECE, CSE, EIE, IT, ECC)

R13. II B. Tech I Semester Supplementary Examinations, May/June DATA STRUCTURES (Com. to ECE, CSE, EIE, IT, ECC) SET - 1 II B. Tech I Semester Supplementary Examinations, May/June - 2016 PART A 1. a) Write a procedure for the Tower of Hanoi problem? b) What you mean by enqueue and dequeue operations in a queue? c)

More information

I BSc(IT) [ Batch] Semester II Core: Object Oriented Programming With C plus plus - 212A Multiple Choice Questions.

I BSc(IT) [ Batch] Semester II Core: Object Oriented Programming With C plus plus - 212A Multiple Choice Questions. Dr.G.R.Damodaran College of Science (Autonomous, affiliated to the Bharathiar University, recognized by the UGC)Reaccredited at the 'A' Grade Level by the NAAC and ISO 9001:2008 Certified CRISL rated 'A'

More information

CSCI 171 Chapter Outlines

CSCI 171 Chapter Outlines Contents CSCI 171 Chapter 1 Overview... 2 CSCI 171 Chapter 2 Programming Components... 3 CSCI 171 Chapter 3 (Sections 1 4) Selection Structures... 5 CSCI 171 Chapter 3 (Sections 5 & 6) Iteration Structures

More information

An Object Oriented Programming with C

An Object Oriented Programming with C An Object Oriented Programming with C By Tanmay Kasbe Dr. Ravi Singh Pippal IDEA PUBLISHING WWW.ideapublishing.in i Publishing-in-support-of, IDEA PUBLISHING Block- 9b, Transit Flats, Hudco Place Extension

More information

Reg. No. : Question Paper Code : 27157

Reg. No. : Question Paper Code : 27157 WK 3 Reg. No. : Question Paper Code : 27157 B.E./B.Tech. DEGREE EXAMINATION, NOVEMBER/DECEMBER 2015. Time : Three hours Second Semester Computer Science and Engineering CS 6202 PROGRAMMING AND DATA STRUCTURES

More information

P.G.TRB - COMPUTER SCIENCE. c) data processing language d) none of the above

P.G.TRB - COMPUTER SCIENCE. c) data processing language d) none of the above P.G.TRB - COMPUTER SCIENCE Total Marks : 50 Time : 30 Minutes 1. C was primarily developed as a a)systems programming language b) general purpose language c) data processing language d) none of the above

More information

SRE VIDYASAAGAR HIGHER SECONDARY SCHOOL. TWO MARKS

SRE VIDYASAAGAR HIGHER SECONDARY SCHOOL. TWO MARKS SRE VIDYASAAGAR HIGHER SECONDARY SCHOOL. COMPUTER SCIENCE - STAR OFFICE TWO MARKS LESSON I 1. What is meant by text editing? 2. How to work with multiple documents in StarOffice Writer? 3. What is the

More information

Course Text. Course Description. Course Objectives. StraighterLine Introduction to Programming in C++

Course Text. Course Description. Course Objectives. StraighterLine Introduction to Programming in C++ Introduction to Programming in C++ Course Text Programming in C++, Zyante, Fall 2013 edition. Course book provided along with the course. Course Description This course introduces programming in C++ and

More information

C Refresher, Advance C, Coding Standard, Misra C Compliance & Real-time Programming

C Refresher, Advance C, Coding Standard, Misra C Compliance & Real-time Programming C Refresher, Advance C, Coding Standard, Misra C Compliance & Real-time Programming Course Overview This course transforms an IT-Professional or a Student into an expert C Programming Person with concepts

More information

Bachelor Level/ First Year/ Second Semester/ Science Full Marks: 60 Computer Science and Information Technology (CSc. 154) Pass Marks: 24

Bachelor Level/ First Year/ Second Semester/ Science Full Marks: 60 Computer Science and Information Technology (CSc. 154) Pass Marks: 24 Prepared By ASCOL CSIT 2070 Batch Institute of Science and Technology 2065 Bachelor Level/ First Year/ Second Semester/ Science Full Marks: 60 Computer Science and Information Technology (CSc. 154) Pass

More information

CS PROGRAMMING & ATA STRUCTURES I. UNIT I Part - A

CS PROGRAMMING & ATA STRUCTURES I. UNIT I Part - A CS6202 - PROGRAMMING & ATA STRUCTURES I Question Bank UNIT I Part - A 1. What are Keywords? 2. What is the difference between if and while statement? 3. What is the difference between while loop and do

More information

EC8393FUNDAMENTALS OF DATA STRUCTURES IN C Unit 3

EC8393FUNDAMENTALS OF DATA STRUCTURES IN C Unit 3 UNIT 3 LINEAR DATA STRUCTURES 1. Define Data Structures Data Structures is defined as the way of organizing all data items that consider not only the elements stored but also stores the relationship between

More information

Jayaram college of Engineering and Technology, Pagalavadi. CS2203 Object Oriented Programming Question Bank Prepared By: S.Gopalakrishnan, Lecturer/IT

Jayaram college of Engineering and Technology, Pagalavadi. CS2203 Object Oriented Programming Question Bank Prepared By: S.Gopalakrishnan, Lecturer/IT CS2203 Object Oriented Programming Question Bank Prepared By: S.Gopalakrishnan, Lecturer/IT Two Mark Questions UNIT - I 1. DEFINE ENCAPSULATION. Encapsulation is the process of combining data and functions

More information

Introduction to C++ Introduction. Structure of a C++ Program. Structure of a C++ Program. C++ widely-used general-purpose programming language

Introduction to C++ Introduction. Structure of a C++ Program. Structure of a C++ Program. C++ widely-used general-purpose programming language Introduction C++ widely-used general-purpose programming language procedural and object-oriented support strong support created by Bjarne Stroustrup starting in 1979 based on C Introduction to C++ also

More information

CS201 Some Important Definitions

CS201 Some Important Definitions CS201 Some Important Definitions For Viva Preparation 1. What is a program? A program is a precise sequence of steps to solve a particular problem. 2. What is a class? We write a C++ program using data

More information

S Y B Voc Software Development Syllabus

S Y B Voc Software Development Syllabus S Y B Voc Software Development Syllabus Course Level Job Roles Course Name: Pattern: Examination Pattern: Eligibility: Medium of Instruction: NSQF Level-VI 1. Jr. Software Developer 2. Trainer Software

More information

Draw a diagram of an empty circular queue and describe it to the reader.

Draw a diagram of an empty circular queue and describe it to the reader. 1020_1030_testquestions.text Wed Sep 10 10:40:46 2014 1 1983/84 COSC1020/30 Tests >>> The following was given to students. >>> Students can have a good idea of test questions by examining and trying the

More information

Introduction to C++ with content from

Introduction to C++ with content from Introduction to C++ with content from www.cplusplus.com 2 Introduction C++ widely-used general-purpose programming language procedural and object-oriented support strong support created by Bjarne Stroustrup

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: ) BACHELOR OF COMPUTER APPLICATIONS (B.C.A.) Structure for B.C.A. CBCS Programme Semester-III (SY) COURSE NO. COURSE TYPE SUBJECT CREDIT BCA-EC-301 ELECTIVE 02 BCA-FC-301 FOUNDATION 02 BCA-CC-301 CORE Operating

More information

Table of Contents. Preface... xxi

Table of Contents. Preface... xxi Table of Contents Preface... xxi Chapter 1: Introduction to Python... 1 Python... 2 Features of Python... 3 Execution of a Python Program... 7 Viewing the Byte Code... 9 Flavors of Python... 10 Python

More information

Advanced C++ Programming Workshop (With C++11, C++14, C++17) & Design Patterns

Advanced C++ Programming Workshop (With C++11, C++14, C++17) & Design Patterns Advanced C++ Programming Workshop (With C++11, C++14, C++17) & Design Patterns This Advanced C++ Programming training course is a comprehensive course consists of three modules. A preliminary module reviews

More information

Model Viva Questions for Programming in C lab

Model Viva Questions for Programming in C lab Model Viva Questions for Programming in C lab Title of the Practical: Assignment to prepare general algorithms and flow chart. Q1: What is a flowchart? A1: A flowchart is a diagram that shows a continuous

More information

Character Set. The character set of C represents alphabet, digit or any symbol used to represent information. Digits 0, 1, 2, 3, 9

Character Set. The character set of C represents alphabet, digit or any symbol used to represent information. Digits 0, 1, 2, 3, 9 Character Set The character set of C represents alphabet, digit or any symbol used to represent information. Types Uppercase Alphabets Lowercase Alphabets Character Set A, B, C, Y, Z a, b, c, y, z Digits

More information

XII- COMPUTER SCIENCE VOL-II MODEL TEST I

XII- COMPUTER SCIENCE VOL-II MODEL TEST I MODEL TEST I 1. What is the significance of an object? 2. What are Keyword in c++? List a few Keyword in c++?. 3. What is a Pointer? (or) What is a Pointer Variable? 4. What is an assignment operator?

More information

End-Term Examination Second Semester [MCA] MAY-JUNE 2006

End-Term Examination Second Semester [MCA] MAY-JUNE 2006 (Please write your Roll No. immediately) Roll No. Paper Code: MCA-102 End-Term Examination Second Semester [MCA] MAY-JUNE 2006 Subject: Data Structure Time: 3 Hours Maximum Marks: 60 Note: Question 1.

More information

C++ for System Developers with Design Pattern

C++ for System Developers with Design Pattern C++ for System Developers with Design Pattern Introduction: This course introduces the C++ language for use on real time and embedded applications. The first part of the course focuses on the language

More information

Contents Chapter 1 Introduction to Programming and the Java Language

Contents Chapter 1 Introduction to Programming and the Java Language Chapter 1 Introduction to Programming and the Java Language 1.1 Basic Computer Concepts 5 1.1.1 Hardware 5 1.1.2 Operating Systems 8 1.1.3 Application Software 9 1.1.4 Computer Networks and the Internet

More information

Variables Data types Variable I/O. C introduction. Variables. Variables 1 / 14

Variables Data types Variable I/O. C introduction. Variables. Variables 1 / 14 C introduction Variables Variables 1 / 14 Contents Variables Data types Variable I/O Variables 2 / 14 Usage Declaration: t y p e i d e n t i f i e r ; Assignment: i d e n t i f i e r = v a l u e ; Definition

More information