Skip to main content

Importent Points for System Analysis And Design

              ELEMENTS OF SYSTEM ANALYSIS AND DESIGN


Topic 1 : Overview of System Analysis and Design
Topic 2 : Project Selection
Topic 3 : Feasibility Study
Topic 4 : System Req. Spec. and Analysis

Topic 1 : Structured System Design
Topic 2 : Input Design Control
Topic 3 : Output System Design
Topic 4 : File and Database Design

Topic 1 : System Development
Topic 2 : System Control and Quality Assurance
Topic 3 : Documentation
Topic 4 : System Implementation

Topic 1 : Introduction to MIS
Topic 2 : The Technology Component
Topic 3 : The Organisational Impact of MIS
Topic 4 : Building Management Information System

Case A : Info. System Planning
Case B : Preparing for Systems Planning
Case C : System Analysis Completion
Case D : System Design Proposal
Case E : Evaluation and Selection of Systems
Case F : Implementation Plan and Activities

Topic 1 : The Analyst as a Professional
Topic 2 : Human Computer Interaction
Topic 3 : Introduction to Multimedia

Comments

Post a Comment

Popular posts from this blog

Multiple Inheritance

Multiple Inheritance In multiple inheritance a class can access the property of more than one class. This inheritance is use for multiple accessing of properties. In multiple inheritance ambiguty is  occured when same name function is declare in both class and the object is confuse with function is called.  syntax − class derived-class: access baseA, access baseB.... Where access is one of public, protected, or private and would be given for every base class and they will be separated by comma as shown above. Let us try the following  example − #include <iostream.h> #include <conio.h>  // Base Class class Shape  {    public:       void getwidth(int w) {          width = w;       }       void getheight(int h) {          height = h;       }           prot...

CODD RULES of RDBMS

Codd’s rules for RDBMS (i)                 The information rule. (ii)              Guaranteed access of   data (iii)            Systematic treatment of null value. (iv)            On line DB support. (v)              Comprehensive sup-language rule. (vi)            The view update rule. (vii)         Insert update rule. (viii)       Physical data independence. (ix)            Logical data independence. (x)              Integrity rule (xi)  ...