Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

software engineering, Cheat Sheet of Computational Techniques

software engineering lessons lecture

Typology: Cheat Sheet

2022/2023

Uploaded on 06/12/2025

arman-kesiktas-1
arman-kesiktas-1 🇹🇷

1 document

1 / 78

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
BM306 Software
Engineering
Asst. Prof. Dr. Meryem Şerifi
pf3
pf4
pf5
pf8
pf9
pfa
pfd
pfe
pff
pf12
pf13
pf14
pf15
pf16
pf17
pf18
pf19
pf1a
pf1b
pf1c
pf1d
pf1e
pf1f
pf20
pf21
pf22
pf23
pf24
pf25
pf26
pf27
pf28
pf29
pf2a
pf2b
pf2c
pf2d
pf2e
pf2f
pf30
pf31
pf32
pf33
pf34
pf35
pf36
pf37
pf38
pf39
pf3a
pf3b
pf3c
pf3d
pf3e
pf3f
pf40
pf41
pf42
pf43
pf44
pf45
pf46
pf47
pf48
pf49
pf4a
pf4b
pf4c
pf4d
pf4e

Partial preview of the text

Download software engineering and more Cheat Sheet Computational Techniques in PDF only on Docsity!

BM306 Software

Engineering

Asst. Prof. Dr. Meryem Şerifi

Outline

STRUCTURE CHART

Structured English

Pseudo-Code

DECISION TABLES

Entity-Relationship Model

STRUCTURE CHART

Structure chart is a chart derived from Data Flow Diagram. It represents the system in more detail than DFD. It breaks down the entire system into lowest functional modules, describes functions and sub-functions of each module of the system to a greater detail than DFD. Structure chart represents hierarchical structure of modules. At each layer a specific task is performed.

STRUCTURE CHART

symbols used in construction of structure charts : Module - It represents process or subroutine or task. A control module branches to more than one sub-module. Library Modules are re-usable and invokable from any module.

STRUCTURE CHART

Jump - An arrow is shown pointing inside the module to depict that the control will jump in the middle of the sub module.

STRUCTURE CHART

Loop - A curved arrow represents loop in the module. All sub-modules covered by loop repeat execution of module.

STRUCTURE CHART

Control flow - A directed arrow with filled circle at the end represents control flow.

Structured English

Graphs or diagrams, may are sometimes interpreted differently by different people. Hence, analysts and designers of the software come up with tools such as Structured English.

Structured English

following are some tokens of structured programming. IF-THEN-ELSE, DO-WHILE-UNTIL

Structured English

Customer Authentication in the online shopping environment.

Pseudo-Code

Pseudo code is written more close to programming language. It may be considered as augmented programming language, full of comments and descriptions. Pseudo code avoids variable declaration but they are written using some actual programming language’s constructs, like C, Fortran, Pascal etc.

Pseudo-Code

Pseudo code contains more programming details than Structured English. It provides a method to perform the task, as if a computer is executing the code.

STRUCTURE CHART

STRUCTURE CHART