SlideShare ist ein Scribd-Unternehmen logo
1 von 23
Understanding EDP Environment
Objectives 
• Describe organizational structure of an EDP Environment 
• Define computer files 
• Explain the purpose of computer files. 
• Describe the elements of a file 
• List and explain types of files 
• Explain file organization methods. 
• Explain file Access Methods 
• Explain storage media devices. 
• Describe processing activities. 
• Explain vulnerability of files: 
(i) Improper/fraudulent input 
(ii) Software/programme abuse 
• Master the use of keyboard
Data 
Data is defined as any collection of facts. Thus, 
sales reports, inventory figures, test scores, 
customers’ names and addresses, and weather 
reports are all examples of data. Note that data 
may be numerical (e.g, inventory figures and 
test scores) or they may be numerical (e.g. , 
names of students and addresses, drawings).
Data Processing 
Data processing is the manipulation of data into a more 
useful form. 
Data processing includes not only numerical calculations 
but also operations such as the classification of data and 
the transmission of data from one place to another. In 
general, we assume that these operations are performed 
by some type of machine or computer, although some of 
them could also be carried out manually. Data processing 
system refers to the equipment or devices and 
procedures by which the result is achieved.
Types of Data Processing 
Modern data processing employing machines 
and other devices falls into two basic categories: 
• Mechanical Data Processing 
• Electronic Data Processing. 
Mechanical processing system use a combination of manual procedures and 
mechanical equipment. The system uses various devices such as typewriters, 
sorters, calculators, collators, tabulators, duplicators, and verifiers. 
In electronic data processing different types of input, output, and storage 
devices may be interconnected to an electronic computer to process data.
Electronic Data Processing 
Electronic Data Processing (EDP) can refer to the use of 
automated methods to process commercial data. Typically, this 
uses relatively simple, repetitive activities to process large 
volumes of similar information. 
For example: stock updates 
applied to an inventory, 
banking transactions applied 
to account and customer 
master files, booking and 
ticketing transactions to an 
airline's reservation system, 
billing for utility services.
Organizational Structure of an EDP 
Environment 
Any job that comes to an 
organization is in a form of data. 
Requirement analysis has to be 
done and the turnaround time 
has to be determined. After the 
process has been defined then 
contract can be entered into with 
the client. The data is then 
assembled, transferred from the 
client and stored on the server. 
The job can then be processed, 
compared, go through quality 
assurance, export in a required 
format and then transfer back to 
the client
Computer Files 
• Computer files are files maintained in computer-readable 
form. 
• A computer file is a resource for storing information, 
which is available to a computer program and is usually 
based on some kind of durable storage. A file is 
"durable" in the sense that it remains available for other 
programs to use after the program that created it has 
finished executing. 
Computer files can be considered as 
the modern counterpart of paper 
documents which traditionally are 
kept in office and library files, and 
this is the source of the term.
Types of Computer Files 
Computers can store information on several 
different storage magnetic disks, magnetic tapes 
etc. A computer can store millions of bytes of 
data or information. so that we can store and 
access data easily from the storage device the 
operating systems provides us data file system. 
.doc, .xls, .png, .jpeg, etc are various extensions 
for various files.
Some File Types 
Batch file Same as command file - contains operating system commands. 
Binary file Contains data or instructions in binary format. 
Command file Contains operating system commands. It is a text file. 
Data file Contains data 
Directory file Contains bookkeeping information about files that are below it 
Executable file Contains a program or commands in a format executable by a computer 
Library file Contains functions in object format. 
Map file Contains a map of a program 
Object file Contains code that has been compiled 
Text file Contains textual data (that is, data that can be read by humans), including files 
you create with a text editor and any file in ASCII format. 
Word 
processor 
Wp, text, rrf etc 
Print or view Ps, dvi, gif 
Archive Related files grouped into one file, sometimes compressed, for archiving or storage
File Types & Extension 
Extensions are three letters or numbers that appear at the end of a file 
name and indicate what type of file it is. What the file is used for. And if it 
will work on your computer. 
CAD exchange files .dxf 
Drawing Web Format .dwf 
Animations, audio & video 
GIF animations .gif 
Sound files .wav, .au, .aif, .mid 
Video files .mov, .mpeg
File Type Extension 
Text 
ASCII .txt, .asc 
HTML files .html, .htm, .shtml, .dhtml 
RTF files .rtf 
Binary word processing files .doc, .wri 
Images 
Photoshop native format .psd, .pdd 
GIF compressed .gif 
JPEG compressed .jpg, .jpeg, .jpe, .jfif 
TIFF image .tif, .tiff 
Picture format .pic, .pct, .pict 
Portable Net Graphic .png 
CAD
File Organization Method 
File organization is a way of organizing the data 
or records in a file. It does not refer to how files 
are organized in folders, but how the contents 
of a file are added and accessed. There are 
several types of file organization, the most 
common of them are: 
•Sequential 
•Relative 
•Indexed.
Method of File Organization 
• Sequential, 
• Line-sequential, 
• Indexed-sequential, 
• Inverted list 
• Direct or Hashed Access
Sequential Organization 
A sequential file contains records organized in 
the order they were entered. The order of the 
records is fixed. The records are stored and 
sorted in physical, contiguous blocks within each 
block the records are in sequence. 
Records in these files can only be read or 
written sequentially.
Line-Sequential Organization 
Line-sequential files are like sequential files, except 
that the records can contain only characters as 
data. Line-sequential files are maintained by the 
native byte stream files of the operating system. 
In the COBOL environment, line-sequential files 
that are created with WRITE statements with the 
ADVANCING phrase can be directed to a printer as 
well as to a disk.
Indexed-sequential Organization 
Key searches are improved by this system too. 
The single-level indexing structure is the 
simplest one where a file, whose records are 
pairs, contains a key pointer. This pointer is the 
position in the data file of the record with the 
given key. A subset of the records, which are 
evenly spaced along the data file, is indexed, in 
order to mark intervals of data records.
Inverted List 
In file organization, this is a file that is indexed 
on many of the attributes of the data itself. The 
inverted list method has a single index for each 
key type. The records are not necessarily stored 
in a sequence. They are placed in the are data 
storage area, but indexes are updated for the 
record keys and location.
Direct or Hashed Access 
With direct or hashed access a portion of disk 
space is reserved and a "hashing" algorithm 
computes the record address. So there is additional 
space required for this kind of file in the store. 
Records are placed randomly through out the file. 
Records are accessed by addresses that specify 
their disc location. Also, this type of file 
organization requires a disk storage rather than 
tape. It has an excellent search retrieval 
performance, but care must be taken to maintain 
the indexes.
Access Methods 
• Access method is a program or a hardware mechanism 
that moves data between the computer and an 
outlying device such as a hard disk (or other form of 
storage) or a display terminal. 
• There are two type of access method 
 Random Access: you can jump directly to point Z. Disks 
are random access media 
 Sequential Access: you must pass through all 
intervening points to go from A-Z. Tapes are sequential 
access media.
Storage Media Devices 
Storage Media Device is any hardware device capable of holding information. 
Types of computer storage 
• Floppy diskette 
• CD-ROM disc 
• CD-R and CD-RW disc 
• Cloud storage 
• DVD-R, DVD+R, DVD-RW, and DVD+RW disc 
• Jump drive and USB flash drive 
• Hard drive 
• Memory card 
• Memory stick 
• Tape cassette 
• Zip diskette
Processing Activities 
• Assignment 
• Class Discussion
Vulnerability of Files 
Vulnerability of files is a weakness which allows an 
attacker to reduce computer files assurance. 
(i)Improper/fraudulent input: is a type of 
vulnerability in computer software that may be 
used for security exploits. 
(ii)Software/program abuse: this is a situation 
whereby the vulnerability of a software/program is 
taken advantage of in order to make it behave in 
an unintended or unanticipated way. The piece of 
software hackers use to abuse software is called 
exploit.

Weitere ähnliche Inhalte

Was ist angesagt?

How does data flow around a computer system p3 1
How does data flow around a computer system p3 1How does data flow around a computer system p3 1
How does data flow around a computer system p3 1
lukecisco1
 
Overview of computer
Overview of computerOverview of computer
Overview of computer
masniza3703
 

Was ist angesagt? (20)

Information processing cycle
Information processing cycleInformation processing cycle
Information processing cycle
 
Information system
Information systemInformation system
Information system
 
equipment and components of computer
equipment and components of computerequipment and components of computer
equipment and components of computer
 
business data processing
business data processingbusiness data processing
business data processing
 
Data Processing
Data ProcessingData Processing
Data Processing
 
System and Application Software of Computer
System and Application Software of ComputerSystem and Application Software of Computer
System and Application Software of Computer
 
How does data flow around a computer system p3 1
How does data flow around a computer system p3 1How does data flow around a computer system p3 1
How does data flow around a computer system p3 1
 
Decision making with information system
Decision making with information systemDecision making with information system
Decision making with information system
 
Primary and secondary Storage devices
Primary and secondary Storage devicesPrimary and secondary Storage devices
Primary and secondary Storage devices
 
Processing Devices
Processing DevicesProcessing Devices
Processing Devices
 
Types of Data Processing
Types of Data ProcessingTypes of Data Processing
Types of Data Processing
 
Computer hardware
Computer hardwareComputer hardware
Computer hardware
 
Data and Information
Data and InformationData and Information
Data and Information
 
COMPUTER STORAGE
COMPUTER STORAGECOMPUTER STORAGE
COMPUTER STORAGE
 
Files and folder
Files and folderFiles and folder
Files and folder
 
Basic Concepts Of Information Technology (It)
Basic Concepts Of Information Technology (It)Basic Concepts Of Information Technology (It)
Basic Concepts Of Information Technology (It)
 
Overview of computer
Overview of computerOverview of computer
Overview of computer
 
Six major types of information systems
Six major types of information systemsSix major types of information systems
Six major types of information systems
 
Computer systems
Computer systemsComputer systems
Computer systems
 
Computer fundamentals
Computer fundamentalsComputer fundamentals
Computer fundamentals
 

Andere mochten auch (11)

Objectives of edp's (2)
Objectives of edp's (2)Objectives of edp's (2)
Objectives of edp's (2)
 
Small scale industries..ppt
Small scale industries..pptSmall scale industries..ppt
Small scale industries..ppt
 
2nd chapter Small Scale Enterprises(part 1)
2nd chapter Small Scale Enterprises(part 1)2nd chapter Small Scale Enterprises(part 1)
2nd chapter Small Scale Enterprises(part 1)
 
small scale industries opportunities and challlenges
small scale industries opportunities and challlengessmall scale industries opportunities and challlenges
small scale industries opportunities and challlenges
 
Small scale industries
Small scale industriesSmall scale industries
Small scale industries
 
small-scale-industries
small-scale-industriessmall-scale-industries
small-scale-industries
 
Women entrepreneurs
Women entrepreneursWomen entrepreneurs
Women entrepreneurs
 
Small Scale Industries
Small Scale IndustriesSmall Scale Industries
Small Scale Industries
 
Cost Of Capital
Cost Of CapitalCost Of Capital
Cost Of Capital
 
Cost Of Capital
Cost Of CapitalCost Of Capital
Cost Of Capital
 
Small scale industry
Small scale industrySmall scale industry
Small scale industry
 

Ähnlich wie Understanding EDP (Electronic Data Processing) Environment

Lect 21 components_of_database_management_system
Lect 21 components_of_database_management_systemLect 21 components_of_database_management_system
Lect 21 components_of_database_management_system
nadine016
 
I p-o in different data processing systems
I p-o in different data processing systemsI p-o in different data processing systems
I p-o in different data processing systems
Kinshook Chaturvedi
 
1.sap basis material_keylabs1
1.sap basis material_keylabs11.sap basis material_keylabs1
1.sap basis material_keylabs1
chipanda
 
Chapter 5 It Architecture
Chapter 5 It ArchitectureChapter 5 It Architecture
Chapter 5 It Architecture
UMaine
 
Concepts of Malicious Windows Programs
Concepts of Malicious Windows ProgramsConcepts of Malicious Windows Programs
Concepts of Malicious Windows Programs
Natraj G
 

Ähnlich wie Understanding EDP (Electronic Data Processing) Environment (20)

Computer Data Processing And Representation 4
Computer Data Processing And Representation   4Computer Data Processing And Representation   4
Computer Data Processing And Representation 4
 
Bba203 unit 2data processing concepts
Bba203   unit 2data processing conceptsBba203   unit 2data processing concepts
Bba203 unit 2data processing concepts
 
System design
System designSystem design
System design
 
Lect 21 components_of_database_management_system
Lect 21 components_of_database_management_systemLect 21 components_of_database_management_system
Lect 21 components_of_database_management_system
 
Ch02
Ch02Ch02
Ch02
 
Database, Lecture-1.ppt
Database, Lecture-1.pptDatabase, Lecture-1.ppt
Database, Lecture-1.ppt
 
What is Batch Document Processing? A tutorial for document capture.
What is Batch Document Processing?  A tutorial for document capture.What is Batch Document Processing?  A tutorial for document capture.
What is Batch Document Processing? A tutorial for document capture.
 
Unit IV with Answers
Unit IV with AnswersUnit IV with Answers
Unit IV with Answers
 
data and information
data and informationdata and information
data and information
 
ITFT- Dbms
ITFT- DbmsITFT- Dbms
ITFT- Dbms
 
Information Systems
Information SystemsInformation Systems
Information Systems
 
Dbms
DbmsDbms
Dbms
 
Computer Hardware and Software Elements
Computer Hardware and Software ElementsComputer Hardware and Software Elements
Computer Hardware and Software Elements
 
Ch13
Ch13Ch13
Ch13
 
I p-o in different data processing systems
I p-o in different data processing systemsI p-o in different data processing systems
I p-o in different data processing systems
 
data.ppt
data.pptdata.ppt
data.ppt
 
SAP BASIS ONLINE TRAINING MATERIAL by Keylabs
SAP BASIS ONLINE TRAINING MATERIAL by KeylabsSAP BASIS ONLINE TRAINING MATERIAL by Keylabs
SAP BASIS ONLINE TRAINING MATERIAL by Keylabs
 
1.sap basis material_keylabs1
1.sap basis material_keylabs11.sap basis material_keylabs1
1.sap basis material_keylabs1
 
Chapter 5 It Architecture
Chapter 5 It ArchitectureChapter 5 It Architecture
Chapter 5 It Architecture
 
Concepts of Malicious Windows Programs
Concepts of Malicious Windows ProgramsConcepts of Malicious Windows Programs
Concepts of Malicious Windows Programs
 

Kürzlich hochgeladen

The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
heathfieldcps1
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 

Kürzlich hochgeladen (20)

Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 

Understanding EDP (Electronic Data Processing) Environment

  • 2. Objectives • Describe organizational structure of an EDP Environment • Define computer files • Explain the purpose of computer files. • Describe the elements of a file • List and explain types of files • Explain file organization methods. • Explain file Access Methods • Explain storage media devices. • Describe processing activities. • Explain vulnerability of files: (i) Improper/fraudulent input (ii) Software/programme abuse • Master the use of keyboard
  • 3. Data Data is defined as any collection of facts. Thus, sales reports, inventory figures, test scores, customers’ names and addresses, and weather reports are all examples of data. Note that data may be numerical (e.g, inventory figures and test scores) or they may be numerical (e.g. , names of students and addresses, drawings).
  • 4. Data Processing Data processing is the manipulation of data into a more useful form. Data processing includes not only numerical calculations but also operations such as the classification of data and the transmission of data from one place to another. In general, we assume that these operations are performed by some type of machine or computer, although some of them could also be carried out manually. Data processing system refers to the equipment or devices and procedures by which the result is achieved.
  • 5. Types of Data Processing Modern data processing employing machines and other devices falls into two basic categories: • Mechanical Data Processing • Electronic Data Processing. Mechanical processing system use a combination of manual procedures and mechanical equipment. The system uses various devices such as typewriters, sorters, calculators, collators, tabulators, duplicators, and verifiers. In electronic data processing different types of input, output, and storage devices may be interconnected to an electronic computer to process data.
  • 6. Electronic Data Processing Electronic Data Processing (EDP) can refer to the use of automated methods to process commercial data. Typically, this uses relatively simple, repetitive activities to process large volumes of similar information. For example: stock updates applied to an inventory, banking transactions applied to account and customer master files, booking and ticketing transactions to an airline's reservation system, billing for utility services.
  • 7. Organizational Structure of an EDP Environment Any job that comes to an organization is in a form of data. Requirement analysis has to be done and the turnaround time has to be determined. After the process has been defined then contract can be entered into with the client. The data is then assembled, transferred from the client and stored on the server. The job can then be processed, compared, go through quality assurance, export in a required format and then transfer back to the client
  • 8. Computer Files • Computer files are files maintained in computer-readable form. • A computer file is a resource for storing information, which is available to a computer program and is usually based on some kind of durable storage. A file is "durable" in the sense that it remains available for other programs to use after the program that created it has finished executing. Computer files can be considered as the modern counterpart of paper documents which traditionally are kept in office and library files, and this is the source of the term.
  • 9. Types of Computer Files Computers can store information on several different storage magnetic disks, magnetic tapes etc. A computer can store millions of bytes of data or information. so that we can store and access data easily from the storage device the operating systems provides us data file system. .doc, .xls, .png, .jpeg, etc are various extensions for various files.
  • 10. Some File Types Batch file Same as command file - contains operating system commands. Binary file Contains data or instructions in binary format. Command file Contains operating system commands. It is a text file. Data file Contains data Directory file Contains bookkeeping information about files that are below it Executable file Contains a program or commands in a format executable by a computer Library file Contains functions in object format. Map file Contains a map of a program Object file Contains code that has been compiled Text file Contains textual data (that is, data that can be read by humans), including files you create with a text editor and any file in ASCII format. Word processor Wp, text, rrf etc Print or view Ps, dvi, gif Archive Related files grouped into one file, sometimes compressed, for archiving or storage
  • 11. File Types & Extension Extensions are three letters or numbers that appear at the end of a file name and indicate what type of file it is. What the file is used for. And if it will work on your computer. CAD exchange files .dxf Drawing Web Format .dwf Animations, audio & video GIF animations .gif Sound files .wav, .au, .aif, .mid Video files .mov, .mpeg
  • 12. File Type Extension Text ASCII .txt, .asc HTML files .html, .htm, .shtml, .dhtml RTF files .rtf Binary word processing files .doc, .wri Images Photoshop native format .psd, .pdd GIF compressed .gif JPEG compressed .jpg, .jpeg, .jpe, .jfif TIFF image .tif, .tiff Picture format .pic, .pct, .pict Portable Net Graphic .png CAD
  • 13. File Organization Method File organization is a way of organizing the data or records in a file. It does not refer to how files are organized in folders, but how the contents of a file are added and accessed. There are several types of file organization, the most common of them are: •Sequential •Relative •Indexed.
  • 14. Method of File Organization • Sequential, • Line-sequential, • Indexed-sequential, • Inverted list • Direct or Hashed Access
  • 15. Sequential Organization A sequential file contains records organized in the order they were entered. The order of the records is fixed. The records are stored and sorted in physical, contiguous blocks within each block the records are in sequence. Records in these files can only be read or written sequentially.
  • 16. Line-Sequential Organization Line-sequential files are like sequential files, except that the records can contain only characters as data. Line-sequential files are maintained by the native byte stream files of the operating system. In the COBOL environment, line-sequential files that are created with WRITE statements with the ADVANCING phrase can be directed to a printer as well as to a disk.
  • 17. Indexed-sequential Organization Key searches are improved by this system too. The single-level indexing structure is the simplest one where a file, whose records are pairs, contains a key pointer. This pointer is the position in the data file of the record with the given key. A subset of the records, which are evenly spaced along the data file, is indexed, in order to mark intervals of data records.
  • 18. Inverted List In file organization, this is a file that is indexed on many of the attributes of the data itself. The inverted list method has a single index for each key type. The records are not necessarily stored in a sequence. They are placed in the are data storage area, but indexes are updated for the record keys and location.
  • 19. Direct or Hashed Access With direct or hashed access a portion of disk space is reserved and a "hashing" algorithm computes the record address. So there is additional space required for this kind of file in the store. Records are placed randomly through out the file. Records are accessed by addresses that specify their disc location. Also, this type of file organization requires a disk storage rather than tape. It has an excellent search retrieval performance, but care must be taken to maintain the indexes.
  • 20. Access Methods • Access method is a program or a hardware mechanism that moves data between the computer and an outlying device such as a hard disk (or other form of storage) or a display terminal. • There are two type of access method  Random Access: you can jump directly to point Z. Disks are random access media  Sequential Access: you must pass through all intervening points to go from A-Z. Tapes are sequential access media.
  • 21. Storage Media Devices Storage Media Device is any hardware device capable of holding information. Types of computer storage • Floppy diskette • CD-ROM disc • CD-R and CD-RW disc • Cloud storage • DVD-R, DVD+R, DVD-RW, and DVD+RW disc • Jump drive and USB flash drive • Hard drive • Memory card • Memory stick • Tape cassette • Zip diskette
  • 22. Processing Activities • Assignment • Class Discussion
  • 23. Vulnerability of Files Vulnerability of files is a weakness which allows an attacker to reduce computer files assurance. (i)Improper/fraudulent input: is a type of vulnerability in computer software that may be used for security exploits. (ii)Software/program abuse: this is a situation whereby the vulnerability of a software/program is taken advantage of in order to make it behave in an unintended or unanticipated way. The piece of software hackers use to abuse software is called exploit.