SlideShare une entreprise Scribd logo
1  sur  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.

Contenu connexe

Tendances

Computer Fundamentals
Computer FundamentalsComputer Fundamentals
Computer Fundamentalsarchikabhatia
 
information system lecture notes
information system lecture notesinformation system lecture notes
information system lecture notesnaeem_mnm
 
Types & Fundamentals of Information System
Types & Fundamentals of Information SystemTypes & Fundamentals of Information System
Types & Fundamentals of Information SystemAwais Mansoor Chohan
 
Management information system ( MIS )
Management information system ( MIS )Management information system ( MIS )
Management information system ( MIS )QualitativeIn
 
Data Processing and its Types
Data Processing and its TypesData Processing and its Types
Data Processing and its TypesMuhammad Zubair
 
Introduction to Operating Systems
Introduction to Operating SystemsIntroduction to Operating Systems
Introduction to Operating SystemsShweta Shah
 
What is computer hardware and software
What is computer hardware and softwareWhat is computer hardware and software
What is computer hardware and softwareparag dhok
 
Types of application software
Types of application softwareTypes of application software
Types of application softwareJesus Obenita Jr.
 
Data processing cycle , stages of data processing cycle.
Data processing cycle , stages of data processing cycle.Data processing cycle , stages of data processing cycle.
Data processing cycle , stages of data processing cycle.samina khan
 
Memory & storage devices
Memory & storage devicesMemory & storage devices
Memory & storage devicesHamza Mughal
 
Fundamentals of Computer.pptx
Fundamentals of Computer.pptxFundamentals of Computer.pptx
Fundamentals of Computer.pptxZORAIZ HAIDER
 
Introduction to MS Word
Introduction to MS WordIntroduction to MS Word
Introduction to MS Wordshivamgupta949
 
Information System Concepts & Types of Information Systems
Information System Concepts & Types of Information SystemsInformation System Concepts & Types of Information Systems
Information System Concepts & Types of Information SystemsVR Talsaniya
 

Tendances (20)

Computer Fundamentals
Computer FundamentalsComputer Fundamentals
Computer Fundamentals
 
COMPUTER STORAGE
COMPUTER STORAGECOMPUTER STORAGE
COMPUTER STORAGE
 
Computer Software & its Types
Computer Software & its Types Computer Software & its Types
Computer Software & its Types
 
information system lecture notes
information system lecture notesinformation system lecture notes
information system lecture notes
 
Storage devices
Storage devicesStorage devices
Storage devices
 
Secondary storage devices
Secondary storage devicesSecondary storage devices
Secondary storage devices
 
Types & Fundamentals of Information System
Types & Fundamentals of Information SystemTypes & Fundamentals of Information System
Types & Fundamentals of Information System
 
Management information system ( MIS )
Management information system ( MIS )Management information system ( MIS )
Management information system ( MIS )
 
Data Processing and its Types
Data Processing and its TypesData Processing and its Types
Data Processing and its Types
 
Computer hardware course
Computer hardware courseComputer hardware course
Computer hardware course
 
Introduction to Operating Systems
Introduction to Operating SystemsIntroduction to Operating Systems
Introduction to Operating Systems
 
What is computer hardware and software
What is computer hardware and softwareWhat is computer hardware and software
What is computer hardware and software
 
Types of application software
Types of application softwareTypes of application software
Types of application software
 
Data processing cycle , stages of data processing cycle.
Data processing cycle , stages of data processing cycle.Data processing cycle , stages of data processing cycle.
Data processing cycle , stages of data processing cycle.
 
Memory & storage devices
Memory & storage devicesMemory & storage devices
Memory & storage devices
 
Computer software
Computer softwareComputer software
Computer software
 
Computer software
Computer softwareComputer software
Computer software
 
Fundamentals of Computer.pptx
Fundamentals of Computer.pptxFundamentals of Computer.pptx
Fundamentals of Computer.pptx
 
Introduction to MS Word
Introduction to MS WordIntroduction to MS Word
Introduction to MS Word
 
Information System Concepts & Types of Information Systems
Information System Concepts & Types of Information SystemsInformation System Concepts & Types of Information Systems
Information System Concepts & Types of Information Systems
 

En vedette

Electronic Data Processing
Electronic Data ProcessingElectronic Data Processing
Electronic Data ProcessingAnjan Mahanta
 
Objectives of edp's (2)
Objectives of edp's (2)Objectives of edp's (2)
Objectives of edp's (2)Poonam Dixit
 
Small scale industries..ppt
Small scale industries..pptSmall scale industries..ppt
Small scale industries..pptHems Tekwani
 
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)venkatesh yadav
 
small scale industries opportunities and challlenges
small scale industries opportunities and challlengessmall scale industries opportunities and challlenges
small scale industries opportunities and challlengesShaalvii Sharma
 
small-scale-industries
small-scale-industriessmall-scale-industries
small-scale-industriesSavita Makond
 
Women entrepreneurs
Women entrepreneursWomen entrepreneurs
Women entrepreneursAmit7613
 
Small Scale Industries
Small Scale IndustriesSmall Scale Industries
Small Scale Industriesjennna
 
Cost Of Capital
Cost Of CapitalCost Of Capital
Cost Of Capitalyashpal01
 
Small scale industry
Small scale industrySmall scale industry
Small scale industry17somya
 

En vedette (12)

Electronic Data Processing
Electronic Data ProcessingElectronic Data Processing
Electronic Data Processing
 
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
 

Similaire à Understanding EDP (Electronic Data Processing) Environment

Computer Data Processing And Representation 4
Computer Data Processing And Representation   4Computer Data Processing And Representation   4
Computer Data Processing And Representation 4Amit Chandra
 
Bba203 unit 2data processing concepts
Bba203   unit 2data processing conceptsBba203   unit 2data processing concepts
Bba203 unit 2data processing conceptskinjal patel
 
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_systemnadine016
 
data and information
data and informationdata and information
data and informationuzmajamal
 
Computer Hardware and Software Elements
Computer Hardware and Software ElementsComputer Hardware and Software Elements
Computer Hardware and Software ElementsAdetula Bunmi
 
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 systemsKinshook Chaturvedi
 
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 Keylabskeylabstraining
 
1.sap basis material_keylabs1
1.sap basis material_keylabs11.sap basis material_keylabs1
1.sap basis material_keylabs1chipanda
 
Chapter 5 It Architecture
Chapter 5 It ArchitectureChapter 5 It Architecture
Chapter 5 It ArchitectureUMaine
 
Concepts of Malicious Windows Programs
Concepts of Malicious Windows ProgramsConcepts of Malicious Windows Programs
Concepts of Malicious Windows ProgramsNatraj G
 

Similaire à 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
 

Dernier

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.MaryamAhmad92
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 
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.pptxAreebaZafar22
 
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Ữ Â...Nguyen Thanh Tu Collection
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxCeline George
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...Amil baba
 
Plant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxPlant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxUmeshTimilsina1
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxPooja Bhuva
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structuredhanjurrannsibayan2
 
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...Poonam Aher Patil
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17Celine George
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxmarlenawright1
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxPooja Bhuva
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxannathomasp01
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 

Dernier (20)

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.
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
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
 
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Ữ Â...
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Plant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxPlant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptx
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
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...
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 

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.