Skip to main content

Explain Data Processing Cycle and Main Activities of Data Processing Cycle

After collecting data, it is processed to convert into information. The data is processed again and again until accurate result is achieved. This is called data processing cycle.
Data processing cycle involves following three basic activities:

Major Activities Involved in Data Processing Cycle


Explain data processing cycle and activities involved in data processing cycle
Explain Data processing cycle


1. Input
2. Processing
3. Output

1. INPUT

It is the process in which collected data is given to computer after converting into binary form. Input step can be further divided into following steps:

i) Planning

Here objectives of data processing are defined. For example, in examination system, objective is to process student examination data to get result cards.

ii) Data Collecting

Here data is collected. Data is the raw material for data processing. This must be accurate for getting accurate results.

iii) Input

Here data is entered into computer.

iv) Verification

Here collected data is verified to determine whether it is valid for processing. For example marks must be in numeric form.

v) Coding

Data is stored in computer in binary form. Here data is converted (or coded) into computer readable (binary) form.

2. PROCESSING

Now data is ready for processing. We process collected data to convert into information. Some important activities in processing are as following:

i) Data Classification

Here data is classified into different groups or sub-groups. So that it can be handled easily and separately. For example if we collect data about students of a college we will divide them into D.Com and B.Com class groups.

ii) Data Sorting

Here data is arranged in some order. So that it can be accessed quickly. For example we can sort student data by Roll number or name.

iii) Data Calculation/Processing

Here arithmetic and logical operations are performed on data to get the required result. For example total marks of each student are calculated.

3. OUTPUT

After completing the processing, output is received. Output step involves following steps:

i) Testing

The results are tested to find if they are according to requirements. And any errors are removed. If results are not satisfactory then we repeat above-mentioned steps again and again until the accurate results are found.

ii) Summarizing

Huge results are summarized to make them short and precise.

iii) Storing results

The results are stored properly on secondary storage devices for future use.

iv) Output the result

Here output is produced as softcopy on screen or as hard copy as printout. Information is sent to different places as needed.

v) Feed Back

In this step we take comments from users about output results. If results are not satisfactory then we repeat above-mentioned steps again and again until the accurate results are found. This is all about Data Processing Cycle.

You would also like to read:

Define data and information with examples 
Explain difference between data and information
Explain data processing cycle. What is data processing cycle?
Explain Different types of data processing. What are different levels of data processing?
What is the need / importance of electronic data processing in business?


Comments

Unknown said…
This was something I was searching for and almost met my requirement! Thank you for describing each stage so well. In addition to this I would like to give reference of another article ( http://planningtank.com/computer-applications/data-processing-cycle )along with which I was able to get complete information for my project.

Once again, thanks for the awesome and detailed piece of knowledge!

Popular posts from this blog

Explain different types of storage devices

Topic: Explain different types of storage devices in Computer systems Storage Devices Storage devices are used to store data and instructions permanently. Storage devices are also called secondary storage devices / backing storage devices / external storage devices or auxiliary storage devices. Examples of storage devices include Hard Disk, CD and DVD etc. Why Secondary Storage Devices are Used? Secondary storage devices are used because: Primary memory(RAM) is volatile and temporary. When computer is switched off, all data in ram is erased. Storage devices can store large amounts of data and instructions permanently whereas Primary memory has less capacity of storing data. Types Of Storage Devices There are three main types of storage devices:  Magnetic Tape   Magnetic Disk   Optical Disk   Flash Memory storage devices 1. Magnetic Tape Magnetic tape is the oldest storage device. It is made of plastic coated with magnetic material. Data is stored on mag

Important Objective Type Questions 101-155

MMC stands for multimedia card. SD stands for secure digital card. System Bus  is used to connect main components of a computer such as cpu and main memory. A Port is an interface or a point of attachments. POS stands for Point Of Sale terminal. ATM stands for Automated Teller Machine. PIN stands for Personal identification number. Kbps stands for kilobits per second. Mbps stands for megabits per second. A port that transmits one bit at a time is called Serial Port. A type of port that transmits many bits at a time is called Parallel Port. LPT stands for Line Printer. Examples of system software are Operating System, Utility Programs and Device Drivers. Examples of operating systems are DOS, Windows, Unix and Linux. Examples of Utility programs are File Manager, Image Viewer, Disk Scanner and File Compressor. Software used to detect and remove viruses is called Antivirus . Examples of antivirus programs are Mcaffee, Avast,

Convert Centimeters to Inches Python Programming | Python Program Conver...

YouTube Video Tutorial How to write a Python program to convert centimetres to inches Formula to convert centimetres to inches   Explanation of this Python Program This Python program prompts the user to enter a height in inches, converts it to centimeters, and then prints the converted value. It uses the conversion factor of 2.54 to perform the conversion and rounds the result to two decimal places before displaying it to the user. Here's an explanation of the provided Python program line by line: python inches = float ( input ( 'Enter the Height in inches to convert into centimeters:' )) This line prompts the user to enter a height in inches and assigns the entered value to the variable inches . The input() function is used to receive input from the user, and float() is used to convert the input into a floating-point number. python centimeters = inches * 2.54 This line calculates the equivalent value in centimeters by multiplying the inches variable by the conver