Home   About me

ITpastabowl rice_bowl

9626 Information Technology study material.©

Theory miscellaneous and other extra notes

Management Information System (MIS)

A management information system provides summary information to managers to enable them to make decisions. The MIS will collate data
from a database and present it in the form of reports and charts. The reports and charts are created by people, but once they are created
they can be reused as the data changes within the data sources.

Testing data

Types of test data
TypeOutput
NormalData should pass the validation rule
AbnormalData should generate error message
ExtremeData will pass only because its on the boundary.
For ex Range of 10-20 and data being 10

Advantages disadvantages of simulation

Advantages include: Disadvantages include:

Advantages and disadvantages of normalisation

Advantages Disadvantages

File access types

Indexed sequential access diagram for indexed sequential access Imagine reading a book, if you need something specific, you can quickly look it up in the index. The index tells you where to find
the information, so you don't have to read the entire book.
So, in Indexed Sequential Access, you can go through data in order (sequential) or jump to specific parts using an index,
making it efficient for finding things in a large set of information.
The index is small enough to store in main memory and so all that needs to be done to find a record is to search the index,
find the location in storage and then read the records from that point until the record is found.

Direct file access The use of indexed sequential file access still requires some serial access of data and there are problems with trying to maintain
a file in a sequential order as new records are added and old records deleted. In direct access, data is stored in a way
that allows direct retrieval without the need to go through the data sequentially. This is achieved through methods like hashing
or maintaining an organized structure that allows rapid access based on a unique identifier or address.