Download presentation
Presentation is loading. Please wait.
Published byAmber Hunter Modified over 9 years ago
1
Final Exam Review Geb Thomas
2
Information Systems Applications
3
Players in the Game System owners pay for the system to be built and maintained. System users use the system to perform or support the work to be completed. System designers design the system to meet the users’ requirements. System builders construct, test, and deliver the system into operation. Systems analysts facilitate the development of information systems and computer applications by bridging the communications gap that exists between nontechnical system owners and users and technical system designers and builders. IT vendors and consultants sell hardware, software, and services to businesses for incorporation into their information systems.
4
The Development Components
5
The FAST Development Process
6
Model-Driven Development
7
Rapid Application Development
8
Commercial Off-the-Shelf (COTS) Software Route
9
Requirements Analysis Phase in Which FoundCost Ratio Requirements1 Design3-6 Coding10 Development Testing15-40 Acceptance Testing30-70 Operation40-1000
10
The Ishikawa diagram is a graphical tool used to identify, explore, and depict problems and the causes and effects of those problems. It is often referred to as a cause-and-effect diagram or a fishbone diagram. Fishbone Diagram
11
Joint Requirements Planning (JRP) Joint requirements planning (JRP) is a process whereby highly structured group meetings are conducted for the purpose of analyzing problems and defining requirements. JRP is a subset of a more comprehensive joint application development or JAD technique that encompasses the entire systems development process. Participants Sponsor Facilitator Users and Managers Scribes I.T. Staff (These folks don’t contribute, unless spoken to)
12
Data Modeling
13
Entity Relationship Diagrams
14
Important Entity Concepts An entity is a class of persons, places, objects, events, or concepts about which we need to capture and store data. An attribute is a descriptive property or characteristic of an entity. Synonyms include element, property, and field. The data type for an attribute defines what type of data can be stored in that attribute. The domain of an attribute defines what values an attribute can legitimately take on. The default value for an attribute is the value that will be recorded if not specified by the user. Relationships Cardinality: minimum and maximum number of occurrences of one entity that may be related to a single occurrence of the other entity Degree: the number of entities that participate in the relationship.
15
Non-Specific Relationships
16
Another Non-Specific Relationship
18
Context Data Model MEMBER ORDER MEMBER TRANSACTION PRODUCT AGREEMENTPROMOTION responds to places binds is a has conducted generates features sells
19
Key-Based Data Model
20
Fully-Attributed Data Model
21
Data Normalization An entity is in first normal form (1NF) if there are no attributes that can have more than one value for a single instance of the entity. Any attributes that can have multiple values actually describe a separate entity, possibly an entity and relationship. An entity is in second normal form (2NF) if it is already in 1NF and if the values of all nonprimary key attributes are dependent on the full primary key—not just part of it. Any nonkey attributes that are dependent on only part of the primary key should be moved to any entity where that partial key is actually the full key. This may require creating a new entity and relationship on the model. An entity is in third normal form (3NF) if it is already in 2NF and if the values of its nonprimary key attributes are not dependent on any other non- primary key attributes. Any nonkey attributes that are dependent on other nonkey attributes must be moved or deleted. Again, new entities and relationships may have to be added to the data model.
22
Process Modeling
23
A Data Flow Diagram External Entity Data Store Data Flow Process
24
A Decomposition Diagram
25
Types of Events A function is set of related and ongoing activities of a business. An event (or transaction) is a logical unit of work that must be completed as a whole (as part of a function). An elementary process (or primitive process) is a discrete, detailed activity or task required to respond to an event. Usually, several such tasks must be completed to respond to an event.
26
Problems with DFDs
27
Illegal Data Flows
28
Database Design
29
Files Versus Databases File Information System Database (consolidated & integrated data from files) Information System Information System Information System Information System
30
Relational Databases
31
Structured Query Language (SQL) SELECT list_of_columns FROM tables[s] [WHERE search_conditions] SELECT * FROM products (* means all columns) SELECT ProductName, Unitprice * UnitsOnOrder as [Ordered Amount] FROM products WHERE UnitsOnOrder > 0 SELECT ‘The highest price is ’, max(unitprice) FROM Products
32
The Where Clause Comparison operators (=,,, and so on) Combinations or logical negations of conditions (AND, OR, NOT) –Where unitprice 2000 Ranges (Between, Not Between) –Where unitprice between 2000 and 5000 Lists (In, Not in) –Where state in (‘CA’, ‘IN’, ‘MD’)
33
Study Hard Good Luck
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.