What is the difference between form & report?

devquora
devquora

Posted On: Jan 05, 2021

 

    1 Answer Written

  •  devquora
    Answered by devquora

    In Data Structure, a form is a graphical user interface that allows users to enter, view, and modify data. It typically displays a set of fields that correspond to the columns in a database table, and users can enter data into these fields by typing or selecting values from drop-down lists or other input controls. Forms can also include buttons or other controls that trigger actions like saving or deleting data.

    On the other hand, a report is a document that presents data from a database in a structured format. It typically includes tables, charts, or other visualizations that summarize or aggregate data in a way that is useful for decision-making or analysis. Reports can be generated from the data in a database using software tools like Microsoft Access or Crystal Reports.

    In summary, while a form is used for data entry and manipulation, a report is used for data presentation and analysis.

Related Questions

Please Login or Register to leave a response.

Related Questions

Data Structure Interview Questions

What is meant by Object Oriented Programming – OOP?

Object-oriented programming (OOP) is a computer programming technique that organizes software design around data, or objects, rather than functions and logic. An object can be defined as a data field ...

Data Structure Interview Questions

What is meant by Structural Programming?

Structured Programming can be defined as a programming Approach in which the program is made as a single structure. Lines or blocks of codes are written and executed in a sequential manner such as one...

Data Structure Interview Questions

What is meant by Class?

A class is the most important part of object-oriented programming which is used for the purpose of creating objects. It is defined as the template of similar types of objects consists of a declaration...