SlideShare a Scribd company logo
1
Systems Analysis and Design
Elements of Systems Design
2
Topics
 Elements of Design
 Inputs for System Design
 Design and Integrate the Network
 Design the Application Architecture
 Design the User Interfaces
 Design the System Interfaces
 Prototype for Design Details
 Deployment Environment
 Software Application Functions
 Internet and Web-Based Application
Architecture
 Middleware
3
Elements of Design
 Design is process of describing, organizing,
and structuring system components at
architectural design level and detailed
design level
Focused on preparing for construction
Like developing blueprints
 Three questions
What components require systems design?
What are inputs to and outputs of design
process?
How is systems design done?
4
Components Requiring Systems
Design
5
Inputs for System Design
 Design
Converts functional models from analysis into models
that represent the solution
Focused on technical issues
Requires less user involvement than analysis
 Design may use structured or OO approaches
Database can be relational, OO, or hybrid
User interface issues
6
Analysis versus Design
7
Traditional
Structured
and Object-
Oriented
Models
8
SDLC Phases with Design Phase
Activities
9
Design Phase Activities and Key
Questions
10
Design and Integrate the Network
 Network specialists establish network based on
strategic plan
 Project team typically integrates system into
existing network
 Technical requirements have to do with
communication via networks
 Technical issues handled by network specialists
Reliability, security, throughput, synchronization
11
Design the Application Architecture
and Software
 Specify how system use cases are carried
out
 Described during system analysis as logical
models of system activities
 After design alternative is selected, detailed
computer processing is designed as
physical models
 Approach varies depending on development
and deployment environments
12
Design the User Interfaces
 User interface quality is critical aspect of system
 Design of user interface defines how user interacts
with system
GUI – windows, dialog boxes, mouse interaction
Sound, video, voice commands
 To user of system, user interface is the system
 User interface specialists – interface designers,
usability consultants, human factors engineers
13
Design the System Interfaces
 System interfaces enable systems to share
and exchange information
Internal organization systems
Interfaces with systems outside organization
New system interfaces with package application
that organization has purchased and installed
 System interfaces can be complex
 Organization needs very specialized
technical skills to work on these interfaces
14
Design and Integrate the Database
 System analysis data model used to create
physical database model
 Collection of traditional computer files, relational
databases, and/or object-oriented databases
 Technical requirements, such as response times,
determine database performance needs
 Design work might involve
Performance tuning
Integration between new and existing databases
15
Prototype for Design Details
 Continue to create and evaluate
prototypes during design phase
 Prototypes confirm design choices
Database
Network architecture
Controls
Programming environment
 Rapid application development (RAD)
design prototypes evolve into finished
system
16
Design and Integrate the System
Controls
 Final design activity to ensure system has
adequate safeguards (system controls) to
protect organizational assets
 Controls are needed for all other design
activities
User interface – limit access to authorized users
System interface – protect from other systems
Application architecture – record transactions
Database – protect from software/hardware
failure
Network design – protect communications
17
Network Design
 Integrate network needs of new system
into existing network infrastructure
 Describe processing activity and network
connectivity at each system location
 Describe communications protocols and
middleware that connects layers
 Ensure that network capacity is sufficient
Data size per access type and average
Peak number of access per minute or hour
18
Computer Networks
 Set of transmission lines, specialized
hardware, and communication protocols
 Enables communication among different
users and computer systems
 Local area network (LAN) less than one
kilometer long – connects computers
within single building
 Wide area network (WAN) over one
kilometer long – implies much greater,
global, distances
 Router – directs information within
network
19
A Possible Network Configuration
for RMO
20
The Internet, Intranets, and
Extranets
 Internet – global collection of
networks that use TCP/IP networking
protocols
 Intranets
Private networks using same TCP/IP
protocols as the Internet
Limited to internal users
 Extranets
Intranets that have been extended
outside the organization
21
Network Diagram for RMO
Customer Support System
22
Deployment Environment
 Deployment environment definition
bridges analysis and design
Hardware
System software
Networking
 Common deployment environments
in which system will operate
 Related design patterns and
architectures for application software
23
Application Architecture
 Complex hardware/networks require more
complex software architectures
 There are commonly used approaches
(patterns) for application architecture
Client/server architecture
Three-layer client/server architecture
Web services architecture
Internet and Web-based application
architecture
24
Software Application Functions
 Presentation logic (i.e. HCI)
 Application logic (i.e. the processing of business
rules processing)
 Data access logic (i.e. the processing required
to access data – database queries in SQL)
 Data storage (i.e. data files)
 There are several alternatives for the processing
environment:
Centralized systems
Distributed computing
25
Centralized systems
• Prior to the early 1970’s there was only one technological environment –
the mainframe computer system at a central location
• The only options focused around kinds of input/output (e.g., keypunch,
key-to-tape, or interactive input using video display terminal) and
whether input/output devices would be placed in remote locations
• Although they are no longer the preferred platform for deploying ISs,
they are still widely used as a subsystem of a larger, sometimes
distributed information system or for large-scale batch processing
applications (e.g., banking, insurance, government, etc.) where:
– Some input transactions don’t need to be processed in real time
– On-line data-entry personnel can be centrally located
– Large numbers of periodic outputs are produced by the system
There are three types of centralized systems: single, clustered and
multicomputer architectures
26
• Places all information system resources on a single computer system
and its directly attached peripheral devices
• Users interact with the system via simple input/output devices directly
connected to the computer
• Requires all users be located near the computer
• All 4 software application functions are realized on a mainframe
computer (server host) – server-based architecture
Advantage:
• Simplicity of maintenance: relatively easy to design, build and operate
Disadvantage:
• The capacity limits make single computer impractical or unusable for
large ISs: cannot provide all the required processing, data storage, and
data retrieval tasks. However, many systems require more computing
power than one single machine can provide (a clustered or
multicomputer architecture is required)
Single Computer Architecture
27
Single-Computer, Clustered, and
Multicomputer Architectures
28
Server-based Architecture
29
Clustered Architecture
• Clustered architecture is a group (or cluster) of computers
of the same type that have the same operating environment
and share resources
• Computers from the same manufacturer and model family are
networked together
• Application programs may be executed on any machine in the
cluster without modification due to similar hardware and
operating systems
• Cluster acts like a single large computer system (program
movement and access to resources on other machines occur
quickly and efficiently due to rapid and direct communication
at the operating system level)
• Often one computer may act as entry point and the others
function as slave computers
30
• Multicomputer architecture is a group of dissimilar computers that
are linked together but the hardware and operating systems are not
required to be a similar as in the clustered architecture
• Hardware and software differences do not allow movement of
application programs between computers (instead, resources are
exclusively assigned to each computer system)
• System still functions like one single large computer
• Can have central computer and slave computers
–Main computer may execute programs and hold database
–The front-end computer may handle all communication lines with
other computers or simple terminals
Notes on Centralized Systems
• Clustered architectures may be cost efficient and provide greater total
capacity if similar operating system and hardware are used
• Multicomputer architectures are good when the centralized system
can be decomposed into relatively independent subsystems (each
possibly with its own operating system and/or hardware platform)
Multicomputer Architecture
31
Distributed Architecture
 Distributes system across several
computers and locations – distributed
computing
 Relies on communication networks for
geographic connectivity
 Client/server architecture dominant
model for distributed computing
32
Client/Server Architecture
The dominant architectural model for distributing information
resources
• Two-tire architecture divides the information system
processes into two classes:
– Server: manages system resources and provides access
to those resources and services to other computers on the
network
– Client computer: uses communication interface to
requests services from other computers on the network
• Computer software that implements communication protocols
on the network is called middleware
 Advantage – deployment flexibility
Location, scalability, maintainability
 Disadvantage – complexity
Performance, security, and reliability
33
Interaction Among Multiple
Clients and a Single Server
34
Client/Server Architecture: shared
printer
35
“Fat” Client Architecture
36
“Fat” Server Architecture
37
• The data layer is a layer on a client-server configuration that
manages stored data implemented as one or more databases
• The business logic layer contains the programs that
implement the rules and procedures of business processing
(or program logic of the application)
• The view layer contains the user interface and other
components to access the system (accepts user input, and
formats and displays processing results)
• This approach is called tree-layer architecture
 The IS divided into three layer is relatively easy to distribute
and replicate across a network (interactions among the layers
are always have a form of either request or response)
 It makes the layer relatively independent of one another, thus
they can be placed on different computer systems with
network connections and middleware serving
Three-Layer Client/Server
Architecture
38
Three-Layer Architecture
39
Three-Layer Architecture Software
Application Functions
40
• When processing requirements or data resources are complex, three-
layer architecture can be expanded into a larger number of layers (n-
layer or n-tiered architecture)
Next slide shows an example in which the data layer is split into two
separate layers: the combined database server and servers that control
the individual databases (marketing, production, accounting).
The business logic layer interacts with a combined database server that
provides a unified view of the data stored in several different
databases.
The responses from the individual database servers are then combined
to create a single response to send to the business logic layer.
N-Layer Client/Server Architecture
41
N-Layer Architecture
42
Four-Tier Architecture
43
Internet and Web-Based
Application Architecture
 Web is complex example of
client/server architecture
 Can use Web protocols and browsers
as application interfaces
 Benefits
Accessibility
Low-cost communication
Widely implemented standards
44
Negative Aspects of
Internet Application Delivery
 Breaches of security
 Fluctuating reliability of network
throughput
 Throughput can be limited
 Volatile, changing standards
45
Web Services Architecture
 A client/server architecture
 Packages software functionality into
server processes (“services”)
 Makes services available to
applications via Web protocols
 Web services are available to internal
and external applications
Developers can assemble an application
using existing Web services
46
Web Services Architecture
(continued)
47
Middleware
 Aspect of distributed computing
 Connects parts of an application and enables
requests and data to pass between them
 Transaction process monitors, object request
brokers (ORBs), Web services directories
 Designers reply on standard frameworks and
protocols incorporated into middleware
48

More Related Content

Similar to Elements of Systems Design.ppt

CPIS351-chapter9.ppt contains about system analysis and design
CPIS351-chapter9.ppt contains about system analysis and designCPIS351-chapter9.ppt contains about system analysis and design
CPIS351-chapter9.ppt contains about system analysis and design
NaglaaAbdelhady
 
Distributed Computing system
Distributed Computing system Distributed Computing system
Distributed Computing system
Sarvesh Meena
 
CCUnit1.pdf
CCUnit1.pdfCCUnit1.pdf
CCUnit1.pdf
AnayGupta26
 
Distributed Systems.pptx
Distributed Systems.pptxDistributed Systems.pptx
Distributed Systems.pptx
salutiontechnology
 
SOFTWARE COMPUTING
SOFTWARE COMPUTINGSOFTWARE COMPUTING
SOFTWARE COMPUTING
DrThenmozhiKarunanit
 
Chapter 5-IT infrastructure(REV 2.0).pptx
Chapter 5-IT infrastructure(REV 2.0).pptxChapter 5-IT infrastructure(REV 2.0).pptx
Chapter 5-IT infrastructure(REV 2.0).pptx
MohdSyaifuadJasemi
 
CLOUD ENABLING TECHNOLOGIES.pptx
 CLOUD ENABLING TECHNOLOGIES.pptx CLOUD ENABLING TECHNOLOGIES.pptx
CLOUD ENABLING TECHNOLOGIES.pptx
Dr Geetha Mohan
 
L4Network Architecture.pptx
L4Network Architecture.pptxL4Network Architecture.pptx
L4Network Architecture.pptx
GarimaJain745610
 
Software engg. pressman_ch-10
Software engg. pressman_ch-10Software engg. pressman_ch-10
Software engg. pressman_ch-10
Dhairya Joshi
 
Clusters
ClustersClusters
Clusters
Muhammad Ishaq
 
1..pptxcloud commuting cloud commuting cloud commuting
1..pptxcloud commuting cloud commuting cloud commuting1..pptxcloud commuting cloud commuting cloud commuting
1..pptxcloud commuting cloud commuting cloud commuting
SarthakSrivastava70
 
Apos week 1 4
Apos week 1   4Apos week 1   4
Apos week 1 4
alixafar
 
Chapter 10
Chapter 10Chapter 10
Chapter 10
webhostingguy
 
Network rollout-solution-brochure
Network rollout-solution-brochureNetwork rollout-solution-brochure
Network rollout-solution-brochure
Taha77
 
Computing notes
Computing notesComputing notes
Computing notes
thenraju24
 
Architec design introduction
Architec design introductionArchitec design introduction
Architec design introduction
Dr.Jayanthi ramasamy
 
Models of Distributed System
Models of Distributed SystemModels of Distributed System
Models of Distributed System
Ashish KC
 
chap-0 .ppt
chap-0 .pptchap-0 .ppt
chap-0 .ppt
Lookly Sam
 
Distributed Processing
Distributed ProcessingDistributed Processing
Distributed Processing
Imtiaz Hussain
 
Distributed architecture (SAD)
Distributed architecture (SAD)Distributed architecture (SAD)
Distributed architecture (SAD)
Khubaib Ahmad Kunjahi
 

Similar to Elements of Systems Design.ppt (20)

CPIS351-chapter9.ppt contains about system analysis and design
CPIS351-chapter9.ppt contains about system analysis and designCPIS351-chapter9.ppt contains about system analysis and design
CPIS351-chapter9.ppt contains about system analysis and design
 
Distributed Computing system
Distributed Computing system Distributed Computing system
Distributed Computing system
 
CCUnit1.pdf
CCUnit1.pdfCCUnit1.pdf
CCUnit1.pdf
 
Distributed Systems.pptx
Distributed Systems.pptxDistributed Systems.pptx
Distributed Systems.pptx
 
SOFTWARE COMPUTING
SOFTWARE COMPUTINGSOFTWARE COMPUTING
SOFTWARE COMPUTING
 
Chapter 5-IT infrastructure(REV 2.0).pptx
Chapter 5-IT infrastructure(REV 2.0).pptxChapter 5-IT infrastructure(REV 2.0).pptx
Chapter 5-IT infrastructure(REV 2.0).pptx
 
CLOUD ENABLING TECHNOLOGIES.pptx
 CLOUD ENABLING TECHNOLOGIES.pptx CLOUD ENABLING TECHNOLOGIES.pptx
CLOUD ENABLING TECHNOLOGIES.pptx
 
L4Network Architecture.pptx
L4Network Architecture.pptxL4Network Architecture.pptx
L4Network Architecture.pptx
 
Software engg. pressman_ch-10
Software engg. pressman_ch-10Software engg. pressman_ch-10
Software engg. pressman_ch-10
 
Clusters
ClustersClusters
Clusters
 
1..pptxcloud commuting cloud commuting cloud commuting
1..pptxcloud commuting cloud commuting cloud commuting1..pptxcloud commuting cloud commuting cloud commuting
1..pptxcloud commuting cloud commuting cloud commuting
 
Apos week 1 4
Apos week 1   4Apos week 1   4
Apos week 1 4
 
Chapter 10
Chapter 10Chapter 10
Chapter 10
 
Network rollout-solution-brochure
Network rollout-solution-brochureNetwork rollout-solution-brochure
Network rollout-solution-brochure
 
Computing notes
Computing notesComputing notes
Computing notes
 
Architec design introduction
Architec design introductionArchitec design introduction
Architec design introduction
 
Models of Distributed System
Models of Distributed SystemModels of Distributed System
Models of Distributed System
 
chap-0 .ppt
chap-0 .pptchap-0 .ppt
chap-0 .ppt
 
Distributed Processing
Distributed ProcessingDistributed Processing
Distributed Processing
 
Distributed architecture (SAD)
Distributed architecture (SAD)Distributed architecture (SAD)
Distributed architecture (SAD)
 

More from KRISHNARAJ207

INTERNSHIP PRESENTATION.pptx
INTERNSHIP PRESENTATION.pptxINTERNSHIP PRESENTATION.pptx
INTERNSHIP PRESENTATION.pptx
KRISHNARAJ207
 
22BAB09-OPERATION MANAGEMENT.pptx
22BAB09-OPERATION MANAGEMENT.pptx22BAB09-OPERATION MANAGEMENT.pptx
22BAB09-OPERATION MANAGEMENT.pptx
KRISHNARAJ207
 
22BA005.pptx
22BA005.pptx22BA005.pptx
22BA005.pptx
KRISHNARAJ207
 
BATCH-4 PROJECT PPT.pdf
BATCH-4 PROJECT PPT.pdfBATCH-4 PROJECT PPT.pdf
BATCH-4 PROJECT PPT.pdf
KRISHNARAJ207
 
BATCH-4 PROJECT .pdf
BATCH-4 PROJECT .pdfBATCH-4 PROJECT .pdf
BATCH-4 PROJECT .pdf
KRISHNARAJ207
 
ankurjobrotation-140217103220-phpapp02.pptx
ankurjobrotation-140217103220-phpapp02.pptxankurjobrotation-140217103220-phpapp02.pptx
ankurjobrotation-140217103220-phpapp02.pptx
KRISHNARAJ207
 
UNIT-1.ppt
UNIT-1.pptUNIT-1.ppt
UNIT-1.ppt
KRISHNARAJ207
 
methodsofperformanceappraisal-170222015553.pptx
methodsofperformanceappraisal-170222015553.pptxmethodsofperformanceappraisal-170222015553.pptx
methodsofperformanceappraisal-170222015553.pptx
KRISHNARAJ207
 
Unit 5 ED.pptx
Unit 5 ED.pptxUnit 5 ED.pptx
Unit 5 ED.pptx
KRISHNARAJ207
 
work culture ppt.pptx
work culture ppt.pptxwork culture ppt.pptx
work culture ppt.pptx
KRISHNARAJ207
 
Control.ppt
Control.pptControl.ppt
Control.ppt
KRISHNARAJ207
 
22BA001 IE S 2.pptx
22BA001 IE S 2.pptx22BA001 IE S 2.pptx
22BA001 IE S 2.pptx
KRISHNARAJ207
 
22BA001 IE 1.pptx
22BA001 IE 1.pptx22BA001 IE 1.pptx
22BA001 IE 1.pptx
KRISHNARAJ207
 
22BA003 IE 1.pptx
22BA003 IE 1.pptx22BA003 IE 1.pptx
22BA003 IE 1.pptx
KRISHNARAJ207
 
Financial IS.pptx
Financial IS.pptxFinancial IS.pptx
Financial IS.pptx
KRISHNARAJ207
 
dbms.ppt
dbms.pptdbms.ppt
dbms.ppt
KRISHNARAJ207
 
DFD1.ppt
DFD1.pptDFD1.ppt
DFD1.ppt
KRISHNARAJ207
 
group behaviour.ppt
group behaviour.pptgroup behaviour.ppt
group behaviour.ppt
KRISHNARAJ207
 
ultrasonic-welding-828-SNggldd.pptx
ultrasonic-welding-828-SNggldd.pptxultrasonic-welding-828-SNggldd.pptx
ultrasonic-welding-828-SNggldd.pptx
KRISHNARAJ207
 
budgets-1222199522318591-8.pptx
budgets-1222199522318591-8.pptxbudgets-1222199522318591-8.pptx
budgets-1222199522318591-8.pptx
KRISHNARAJ207
 

More from KRISHNARAJ207 (20)

INTERNSHIP PRESENTATION.pptx
INTERNSHIP PRESENTATION.pptxINTERNSHIP PRESENTATION.pptx
INTERNSHIP PRESENTATION.pptx
 
22BAB09-OPERATION MANAGEMENT.pptx
22BAB09-OPERATION MANAGEMENT.pptx22BAB09-OPERATION MANAGEMENT.pptx
22BAB09-OPERATION MANAGEMENT.pptx
 
22BA005.pptx
22BA005.pptx22BA005.pptx
22BA005.pptx
 
BATCH-4 PROJECT PPT.pdf
BATCH-4 PROJECT PPT.pdfBATCH-4 PROJECT PPT.pdf
BATCH-4 PROJECT PPT.pdf
 
BATCH-4 PROJECT .pdf
BATCH-4 PROJECT .pdfBATCH-4 PROJECT .pdf
BATCH-4 PROJECT .pdf
 
ankurjobrotation-140217103220-phpapp02.pptx
ankurjobrotation-140217103220-phpapp02.pptxankurjobrotation-140217103220-phpapp02.pptx
ankurjobrotation-140217103220-phpapp02.pptx
 
UNIT-1.ppt
UNIT-1.pptUNIT-1.ppt
UNIT-1.ppt
 
methodsofperformanceappraisal-170222015553.pptx
methodsofperformanceappraisal-170222015553.pptxmethodsofperformanceappraisal-170222015553.pptx
methodsofperformanceappraisal-170222015553.pptx
 
Unit 5 ED.pptx
Unit 5 ED.pptxUnit 5 ED.pptx
Unit 5 ED.pptx
 
work culture ppt.pptx
work culture ppt.pptxwork culture ppt.pptx
work culture ppt.pptx
 
Control.ppt
Control.pptControl.ppt
Control.ppt
 
22BA001 IE S 2.pptx
22BA001 IE S 2.pptx22BA001 IE S 2.pptx
22BA001 IE S 2.pptx
 
22BA001 IE 1.pptx
22BA001 IE 1.pptx22BA001 IE 1.pptx
22BA001 IE 1.pptx
 
22BA003 IE 1.pptx
22BA003 IE 1.pptx22BA003 IE 1.pptx
22BA003 IE 1.pptx
 
Financial IS.pptx
Financial IS.pptxFinancial IS.pptx
Financial IS.pptx
 
dbms.ppt
dbms.pptdbms.ppt
dbms.ppt
 
DFD1.ppt
DFD1.pptDFD1.ppt
DFD1.ppt
 
group behaviour.ppt
group behaviour.pptgroup behaviour.ppt
group behaviour.ppt
 
ultrasonic-welding-828-SNggldd.pptx
ultrasonic-welding-828-SNggldd.pptxultrasonic-welding-828-SNggldd.pptx
ultrasonic-welding-828-SNggldd.pptx
 
budgets-1222199522318591-8.pptx
budgets-1222199522318591-8.pptxbudgets-1222199522318591-8.pptx
budgets-1222199522318591-8.pptx
 

Recently uploaded

amptalk_RecruitingDeck_english_2024.06.05
amptalk_RecruitingDeck_english_2024.06.05amptalk_RecruitingDeck_english_2024.06.05
amptalk_RecruitingDeck_english_2024.06.05
marketing317746
 
HOW TO START UP A COMPANY A STEP-BY-STEP GUIDE.pdf
HOW TO START UP A COMPANY A STEP-BY-STEP GUIDE.pdfHOW TO START UP A COMPANY A STEP-BY-STEP GUIDE.pdf
HOW TO START UP A COMPANY A STEP-BY-STEP GUIDE.pdf
46adnanshahzad
 
Creative Web Design Company in Singapore
Creative Web Design Company in SingaporeCreative Web Design Company in Singapore
Creative Web Design Company in Singapore
techboxsqauremedia
 
The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...
The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...
The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...
APCO
 
3 Simple Steps To Buy Verified Payoneer Account In 2024
3 Simple Steps To Buy Verified Payoneer Account In 20243 Simple Steps To Buy Verified Payoneer Account In 2024
3 Simple Steps To Buy Verified Payoneer Account In 2024
SEOSMMEARTH
 
Authentically Social by Corey Perlman - EO Puerto Rico
Authentically Social by Corey Perlman - EO Puerto RicoAuthentically Social by Corey Perlman - EO Puerto Rico
Authentically Social by Corey Perlman - EO Puerto Rico
Corey Perlman, Social Media Speaker and Consultant
 
How are Lilac French Bulldogs Beauty Charming the World and Capturing Hearts....
How are Lilac French Bulldogs Beauty Charming the World and Capturing Hearts....How are Lilac French Bulldogs Beauty Charming the World and Capturing Hearts....
How are Lilac French Bulldogs Beauty Charming the World and Capturing Hearts....
Lacey Max
 
Building Your Employer Brand with Social Media
Building Your Employer Brand with Social MediaBuilding Your Employer Brand with Social Media
Building Your Employer Brand with Social Media
LuanWise
 
2022 Vintage Roman Numerals Men Rings
2022 Vintage Roman  Numerals  Men  Rings2022 Vintage Roman  Numerals  Men  Rings
2022 Vintage Roman Numerals Men Rings
aragme
 
Organizational Change Leadership Agile Tour Geneve 2024
Organizational Change Leadership Agile Tour Geneve 2024Organizational Change Leadership Agile Tour Geneve 2024
Organizational Change Leadership Agile Tour Geneve 2024
Kirill Klimov
 
Structural Design Process: Step-by-Step Guide for Buildings
Structural Design Process: Step-by-Step Guide for BuildingsStructural Design Process: Step-by-Step Guide for Buildings
Structural Design Process: Step-by-Step Guide for Buildings
Chandresh Chudasama
 
一比一原版新西兰奥塔哥大学毕业证(otago毕业证)如何办理
一比一原版新西兰奥塔哥大学毕业证(otago毕业证)如何办理一比一原版新西兰奥塔哥大学毕业证(otago毕业证)如何办理
一比一原版新西兰奥塔哥大学毕业证(otago毕业证)如何办理
taqyea
 
Best Forex Brokers Comparison in INDIA 2024
Best Forex Brokers Comparison in INDIA 2024Best Forex Brokers Comparison in INDIA 2024
Best Forex Brokers Comparison in INDIA 2024
Top Forex Brokers Review
 
Creative Web Design Company in Singapore
Creative Web Design Company in SingaporeCreative Web Design Company in Singapore
Creative Web Design Company in Singapore
techboxsqauremedia
 
Chapter 7 Final business management sciences .ppt
Chapter 7 Final business management sciences .pptChapter 7 Final business management sciences .ppt
Chapter 7 Final business management sciences .ppt
ssuser567e2d
 
Mastering B2B Payments Webinar from BlueSnap
Mastering B2B Payments Webinar from BlueSnapMastering B2B Payments Webinar from BlueSnap
Mastering B2B Payments Webinar from BlueSnap
Norma Mushkat Gaffin
 
Business storytelling: key ingredients to a story
Business storytelling: key ingredients to a storyBusiness storytelling: key ingredients to a story
Business storytelling: key ingredients to a story
Alexandra Fulford
 
How MJ Global Leads the Packaging Industry.pdf
How MJ Global Leads the Packaging Industry.pdfHow MJ Global Leads the Packaging Industry.pdf
How MJ Global Leads the Packaging Industry.pdf
MJ Global
 
BeMetals Investor Presentation_June 1, 2024.pdf
BeMetals Investor Presentation_June 1, 2024.pdfBeMetals Investor Presentation_June 1, 2024.pdf
BeMetals Investor Presentation_June 1, 2024.pdf
DerekIwanaka1
 
Top mailing list providers in the USA.pptx
Top mailing list providers in the USA.pptxTop mailing list providers in the USA.pptx
Top mailing list providers in the USA.pptx
JeremyPeirce1
 

Recently uploaded (20)

amptalk_RecruitingDeck_english_2024.06.05
amptalk_RecruitingDeck_english_2024.06.05amptalk_RecruitingDeck_english_2024.06.05
amptalk_RecruitingDeck_english_2024.06.05
 
HOW TO START UP A COMPANY A STEP-BY-STEP GUIDE.pdf
HOW TO START UP A COMPANY A STEP-BY-STEP GUIDE.pdfHOW TO START UP A COMPANY A STEP-BY-STEP GUIDE.pdf
HOW TO START UP A COMPANY A STEP-BY-STEP GUIDE.pdf
 
Creative Web Design Company in Singapore
Creative Web Design Company in SingaporeCreative Web Design Company in Singapore
Creative Web Design Company in Singapore
 
The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...
The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...
The APCO Geopolitical Radar - Q3 2024 The Global Operating Environment for Bu...
 
3 Simple Steps To Buy Verified Payoneer Account In 2024
3 Simple Steps To Buy Verified Payoneer Account In 20243 Simple Steps To Buy Verified Payoneer Account In 2024
3 Simple Steps To Buy Verified Payoneer Account In 2024
 
Authentically Social by Corey Perlman - EO Puerto Rico
Authentically Social by Corey Perlman - EO Puerto RicoAuthentically Social by Corey Perlman - EO Puerto Rico
Authentically Social by Corey Perlman - EO Puerto Rico
 
How are Lilac French Bulldogs Beauty Charming the World and Capturing Hearts....
How are Lilac French Bulldogs Beauty Charming the World and Capturing Hearts....How are Lilac French Bulldogs Beauty Charming the World and Capturing Hearts....
How are Lilac French Bulldogs Beauty Charming the World and Capturing Hearts....
 
Building Your Employer Brand with Social Media
Building Your Employer Brand with Social MediaBuilding Your Employer Brand with Social Media
Building Your Employer Brand with Social Media
 
2022 Vintage Roman Numerals Men Rings
2022 Vintage Roman  Numerals  Men  Rings2022 Vintage Roman  Numerals  Men  Rings
2022 Vintage Roman Numerals Men Rings
 
Organizational Change Leadership Agile Tour Geneve 2024
Organizational Change Leadership Agile Tour Geneve 2024Organizational Change Leadership Agile Tour Geneve 2024
Organizational Change Leadership Agile Tour Geneve 2024
 
Structural Design Process: Step-by-Step Guide for Buildings
Structural Design Process: Step-by-Step Guide for BuildingsStructural Design Process: Step-by-Step Guide for Buildings
Structural Design Process: Step-by-Step Guide for Buildings
 
一比一原版新西兰奥塔哥大学毕业证(otago毕业证)如何办理
一比一原版新西兰奥塔哥大学毕业证(otago毕业证)如何办理一比一原版新西兰奥塔哥大学毕业证(otago毕业证)如何办理
一比一原版新西兰奥塔哥大学毕业证(otago毕业证)如何办理
 
Best Forex Brokers Comparison in INDIA 2024
Best Forex Brokers Comparison in INDIA 2024Best Forex Brokers Comparison in INDIA 2024
Best Forex Brokers Comparison in INDIA 2024
 
Creative Web Design Company in Singapore
Creative Web Design Company in SingaporeCreative Web Design Company in Singapore
Creative Web Design Company in Singapore
 
Chapter 7 Final business management sciences .ppt
Chapter 7 Final business management sciences .pptChapter 7 Final business management sciences .ppt
Chapter 7 Final business management sciences .ppt
 
Mastering B2B Payments Webinar from BlueSnap
Mastering B2B Payments Webinar from BlueSnapMastering B2B Payments Webinar from BlueSnap
Mastering B2B Payments Webinar from BlueSnap
 
Business storytelling: key ingredients to a story
Business storytelling: key ingredients to a storyBusiness storytelling: key ingredients to a story
Business storytelling: key ingredients to a story
 
How MJ Global Leads the Packaging Industry.pdf
How MJ Global Leads the Packaging Industry.pdfHow MJ Global Leads the Packaging Industry.pdf
How MJ Global Leads the Packaging Industry.pdf
 
BeMetals Investor Presentation_June 1, 2024.pdf
BeMetals Investor Presentation_June 1, 2024.pdfBeMetals Investor Presentation_June 1, 2024.pdf
BeMetals Investor Presentation_June 1, 2024.pdf
 
Top mailing list providers in the USA.pptx
Top mailing list providers in the USA.pptxTop mailing list providers in the USA.pptx
Top mailing list providers in the USA.pptx
 

Elements of Systems Design.ppt

  • 1. 1 Systems Analysis and Design Elements of Systems Design
  • 2. 2 Topics  Elements of Design  Inputs for System Design  Design and Integrate the Network  Design the Application Architecture  Design the User Interfaces  Design the System Interfaces  Prototype for Design Details  Deployment Environment  Software Application Functions  Internet and Web-Based Application Architecture  Middleware
  • 3. 3 Elements of Design  Design is process of describing, organizing, and structuring system components at architectural design level and detailed design level Focused on preparing for construction Like developing blueprints  Three questions What components require systems design? What are inputs to and outputs of design process? How is systems design done?
  • 5. 5 Inputs for System Design  Design Converts functional models from analysis into models that represent the solution Focused on technical issues Requires less user involvement than analysis  Design may use structured or OO approaches Database can be relational, OO, or hybrid User interface issues
  • 8. 8 SDLC Phases with Design Phase Activities
  • 9. 9 Design Phase Activities and Key Questions
  • 10. 10 Design and Integrate the Network  Network specialists establish network based on strategic plan  Project team typically integrates system into existing network  Technical requirements have to do with communication via networks  Technical issues handled by network specialists Reliability, security, throughput, synchronization
  • 11. 11 Design the Application Architecture and Software  Specify how system use cases are carried out  Described during system analysis as logical models of system activities  After design alternative is selected, detailed computer processing is designed as physical models  Approach varies depending on development and deployment environments
  • 12. 12 Design the User Interfaces  User interface quality is critical aspect of system  Design of user interface defines how user interacts with system GUI – windows, dialog boxes, mouse interaction Sound, video, voice commands  To user of system, user interface is the system  User interface specialists – interface designers, usability consultants, human factors engineers
  • 13. 13 Design the System Interfaces  System interfaces enable systems to share and exchange information Internal organization systems Interfaces with systems outside organization New system interfaces with package application that organization has purchased and installed  System interfaces can be complex  Organization needs very specialized technical skills to work on these interfaces
  • 14. 14 Design and Integrate the Database  System analysis data model used to create physical database model  Collection of traditional computer files, relational databases, and/or object-oriented databases  Technical requirements, such as response times, determine database performance needs  Design work might involve Performance tuning Integration between new and existing databases
  • 15. 15 Prototype for Design Details  Continue to create and evaluate prototypes during design phase  Prototypes confirm design choices Database Network architecture Controls Programming environment  Rapid application development (RAD) design prototypes evolve into finished system
  • 16. 16 Design and Integrate the System Controls  Final design activity to ensure system has adequate safeguards (system controls) to protect organizational assets  Controls are needed for all other design activities User interface – limit access to authorized users System interface – protect from other systems Application architecture – record transactions Database – protect from software/hardware failure Network design – protect communications
  • 17. 17 Network Design  Integrate network needs of new system into existing network infrastructure  Describe processing activity and network connectivity at each system location  Describe communications protocols and middleware that connects layers  Ensure that network capacity is sufficient Data size per access type and average Peak number of access per minute or hour
  • 18. 18 Computer Networks  Set of transmission lines, specialized hardware, and communication protocols  Enables communication among different users and computer systems  Local area network (LAN) less than one kilometer long – connects computers within single building  Wide area network (WAN) over one kilometer long – implies much greater, global, distances  Router – directs information within network
  • 19. 19 A Possible Network Configuration for RMO
  • 20. 20 The Internet, Intranets, and Extranets  Internet – global collection of networks that use TCP/IP networking protocols  Intranets Private networks using same TCP/IP protocols as the Internet Limited to internal users  Extranets Intranets that have been extended outside the organization
  • 21. 21 Network Diagram for RMO Customer Support System
  • 22. 22 Deployment Environment  Deployment environment definition bridges analysis and design Hardware System software Networking  Common deployment environments in which system will operate  Related design patterns and architectures for application software
  • 23. 23 Application Architecture  Complex hardware/networks require more complex software architectures  There are commonly used approaches (patterns) for application architecture Client/server architecture Three-layer client/server architecture Web services architecture Internet and Web-based application architecture
  • 24. 24 Software Application Functions  Presentation logic (i.e. HCI)  Application logic (i.e. the processing of business rules processing)  Data access logic (i.e. the processing required to access data – database queries in SQL)  Data storage (i.e. data files)  There are several alternatives for the processing environment: Centralized systems Distributed computing
  • 25. 25 Centralized systems • Prior to the early 1970’s there was only one technological environment – the mainframe computer system at a central location • The only options focused around kinds of input/output (e.g., keypunch, key-to-tape, or interactive input using video display terminal) and whether input/output devices would be placed in remote locations • Although they are no longer the preferred platform for deploying ISs, they are still widely used as a subsystem of a larger, sometimes distributed information system or for large-scale batch processing applications (e.g., banking, insurance, government, etc.) where: – Some input transactions don’t need to be processed in real time – On-line data-entry personnel can be centrally located – Large numbers of periodic outputs are produced by the system There are three types of centralized systems: single, clustered and multicomputer architectures
  • 26. 26 • Places all information system resources on a single computer system and its directly attached peripheral devices • Users interact with the system via simple input/output devices directly connected to the computer • Requires all users be located near the computer • All 4 software application functions are realized on a mainframe computer (server host) – server-based architecture Advantage: • Simplicity of maintenance: relatively easy to design, build and operate Disadvantage: • The capacity limits make single computer impractical or unusable for large ISs: cannot provide all the required processing, data storage, and data retrieval tasks. However, many systems require more computing power than one single machine can provide (a clustered or multicomputer architecture is required) Single Computer Architecture
  • 29. 29 Clustered Architecture • Clustered architecture is a group (or cluster) of computers of the same type that have the same operating environment and share resources • Computers from the same manufacturer and model family are networked together • Application programs may be executed on any machine in the cluster without modification due to similar hardware and operating systems • Cluster acts like a single large computer system (program movement and access to resources on other machines occur quickly and efficiently due to rapid and direct communication at the operating system level) • Often one computer may act as entry point and the others function as slave computers
  • 30. 30 • Multicomputer architecture is a group of dissimilar computers that are linked together but the hardware and operating systems are not required to be a similar as in the clustered architecture • Hardware and software differences do not allow movement of application programs between computers (instead, resources are exclusively assigned to each computer system) • System still functions like one single large computer • Can have central computer and slave computers –Main computer may execute programs and hold database –The front-end computer may handle all communication lines with other computers or simple terminals Notes on Centralized Systems • Clustered architectures may be cost efficient and provide greater total capacity if similar operating system and hardware are used • Multicomputer architectures are good when the centralized system can be decomposed into relatively independent subsystems (each possibly with its own operating system and/or hardware platform) Multicomputer Architecture
  • 31. 31 Distributed Architecture  Distributes system across several computers and locations – distributed computing  Relies on communication networks for geographic connectivity  Client/server architecture dominant model for distributed computing
  • 32. 32 Client/Server Architecture The dominant architectural model for distributing information resources • Two-tire architecture divides the information system processes into two classes: – Server: manages system resources and provides access to those resources and services to other computers on the network – Client computer: uses communication interface to requests services from other computers on the network • Computer software that implements communication protocols on the network is called middleware  Advantage – deployment flexibility Location, scalability, maintainability  Disadvantage – complexity Performance, security, and reliability
  • 37. 37 • The data layer is a layer on a client-server configuration that manages stored data implemented as one or more databases • The business logic layer contains the programs that implement the rules and procedures of business processing (or program logic of the application) • The view layer contains the user interface and other components to access the system (accepts user input, and formats and displays processing results) • This approach is called tree-layer architecture  The IS divided into three layer is relatively easy to distribute and replicate across a network (interactions among the layers are always have a form of either request or response)  It makes the layer relatively independent of one another, thus they can be placed on different computer systems with network connections and middleware serving Three-Layer Client/Server Architecture
  • 40. 40 • When processing requirements or data resources are complex, three- layer architecture can be expanded into a larger number of layers (n- layer or n-tiered architecture) Next slide shows an example in which the data layer is split into two separate layers: the combined database server and servers that control the individual databases (marketing, production, accounting). The business logic layer interacts with a combined database server that provides a unified view of the data stored in several different databases. The responses from the individual database servers are then combined to create a single response to send to the business logic layer. N-Layer Client/Server Architecture
  • 43. 43 Internet and Web-Based Application Architecture  Web is complex example of client/server architecture  Can use Web protocols and browsers as application interfaces  Benefits Accessibility Low-cost communication Widely implemented standards
  • 44. 44 Negative Aspects of Internet Application Delivery  Breaches of security  Fluctuating reliability of network throughput  Throughput can be limited  Volatile, changing standards
  • 45. 45 Web Services Architecture  A client/server architecture  Packages software functionality into server processes (“services”)  Makes services available to applications via Web protocols  Web services are available to internal and external applications Developers can assemble an application using existing Web services
  • 47. 47 Middleware  Aspect of distributed computing  Connects parts of an application and enables requests and data to pass between them  Transaction process monitors, object request brokers (ORBs), Web services directories  Designers reply on standard frameworks and protocols incorporated into middleware
  • 48. 48