Monday, June 30, 2014

File Processing Systems Diagram

File Processing System ...

Thursday, June 26, 2014

Helpful information

I think the information we are providing is helpful to you all. If you have any queries comment us. Thanky...

Monday, June 23, 2014

Combinational Logic Circuits (Adders, Multiplexers, Demultiplexers etc)

Combinational Logic CircuitsUnlike sequentcial logic blocks whose outputs are dependant on both their present inputs andtheir previous output state giving them some form of Memory, the outputs of CombinationalLogic Circuits are only determined by the logical function of their current input state, logic "0" or logic "1", at any given instant in time as they have no feedback, and any changes to the signals being applied to their inputs will immediately...

Sunday, June 22, 2014

Simplification of boolean expressions

                                          Simplification 1. Simplify the Boolean expression     XY′Z′+XY′Z′W+XZ′    The above expression can be written as    XY′Z′ (1+W) +XZ′    =XY′Z′+XZ′ as 1+W=1    =XZ′ (Y′+1)    =XZ′ as Y′+1=1  2. Simplify the Boolean expression    ...

Saturday, June 21, 2014

Boolean Algebra and logic gates

INTRODUCTION The process of converting control objectives into a ladder logic program requires structured thought. Boolean algebra provides the tools needed to analyze and design these systems. BOOLEAN ALGEBRA The techniques can model a logical system with a single equation. The equation can then be simplified and/or manipulated into new forms. The same techniques developed for circuit designers adapt very well to ladder logic programming. Boolean...

Functional units of computer system,control unit and arithmetic logic section

FUNCTIONAL UNITS OF A COMPUTER SYSTEM Digital computer systems consist of three distinct units. These units are as follows: Input unit Central Processing unit Output unit these units are interconnected by electrical cables to permit communication between them. This allows the computer to function as a system. Input Unit A computer must receive both data and program statements to function properly and be able to solve problems. The method of feeding data and programs to a computer is accomplished by an input device. Computer input devices read...

Friday, June 20, 2014

Introduction to Computer Organization & Architecture:

Computer architecture refers to those attributes of a system visible to a programmeror we can say those attributes that have a direct impact on the logical execution of a program. Computer organization refers to the operational units and their interconnection that realize the architecture specification.  A system consist of set of objects or components such as monitor,keyboard,cpu and softwares as well. so designer analys it as structure and function  Structure it is the arrangement of components Function  it is the operation...

Thursday, June 19, 2014

Database management system (DBMS)

Database:- It is collection of data. Database management system (DBMS):-It is the software that interact between the user,application and data itsel...

Computer system architecture defination

COMPUTER ARCHITECTURE:- Computer architecture is a detail how a set of software and hardware technology standards interact to form a computer syste...

Computer system architecture (CSA) Syllabus

Introduction to Computer Organization & Architecture: Evolution  of  Computers    from    1st  Generation  to  Pentium  and Power PC         Von Neumann machine Flynn's Classification - SISD, SIMD, MISD, MIMD Basic Computer Organization:     Computer Registers, Instruction Codes, Computer Instructions Timing and Control, Instruction Cycle Memory Reference Instructions Input-Output and Interrupt Complete Computer Description Basic Computer...

Wednesday, June 18, 2014

Syllabus for data structure

Introduction: Basic Terminology, Elementary Data Organization, Data Structures and Operations, Algorithm : Complexity, Time-Space Tradeoff, Asymptotic Notations for Complexity( Ω ,θ, O), Array: Introduction, Representation of Linear Arrays in Memory, Traversing Linear Arrays, Arrays: Inserting and Deleting (at Beginning, middle and at the end) Searching: Linear and Binary Search with their Complexity Sorting: Bubble Sort & its Complexity, Linked List: Introduction & its memory representation, Traversing a Linked List,  Insertion...

Tuesday, June 17, 2014

Data Structure

Data structure is a way to organise data in memory. There are five types of data structures:- 1.Array 2.Linked list 3.Queue 4.Stack 5.Trees and Graph...