Category : Software

Low-Level Language Definition A low-level language is a type of programming language that contains basic instructions recognized by a computer. Unlike high-level languages used by software developers, low-level code is often cryptic and not human-readable. Two common types of low-level programming languages are assembly language and machine language. Software programs and scripts are written in high-level languages, like C#, Swift, and PHP. A software developer can create and edit source ..

Read more

Data Type Definition A data type is a type of data. Of course, that is rather circular definition, and also not very helpful. Therefore, a better definition of a data type is a data storage format that can contain a specific type or range of values. When computer programs store data in variables, each variable ..

Read more

Spreadsheet Definition A spreadsheet is a document that stores data in a grid of horizontal rows and vertical columns. Rows are typically labeled using numbers (1, 2, 3, etc.), while columns are labeled with letters (A, B, C, etc). Individual row/column locations, such as C3 or B12, are referred to as cells. Each cell can ..

Read more

Flat File Definition A flat file database is a database that stores data in a plain text file. Each line of the text file holds one record, with fields separated by delimiters, such as commas or tabs. While it uses a simple structure, a flat file database cannot contain multiple tables like a relational database can. Fortunately, ..

Read more

Dialog Box Definition As the name implies, a dialog box serves to initiate a dialog with the user. It is a window that pops up on the screen with options that the user can select. After the selections have been made, the user can typically click “OK” to enter the changes or “Cancel” to discard ..

Read more

Driver Definition A driver, or device driver, is a software program that enables a specific hardware device to work with a computer’s operating system. Drivers may be required for internal components, such as video cards and optical media drives, as well as external peripherals, such as printers and monitors. Most modern hardware is “plug and play,” meaning the devices will work without requiring driver installation. However, even if ..

Read more

ODBC Definition Stands for “Open Database Connectivity.” With all the different types of databases available, such as Microsoft Access, Filemaker, and MySQL, it is important to have a standard way of transferring data to and from each kind of database. For this reason, the SQL Access group created the ODBC standard back in 1992. Any application ..

Read more

DBMS Definition Stands for “Database Management System.” In short, a DBMS is a database program. Technically speaking, it is a software system that uses a standard method of cataloging, retrieving, and running queries on data. The DBMS manages incoming data, organizes it, and provides ways for the data to be modified or extracted by users ..

Read more

Schema Definition A schema is an outline, diagram, or model. In computing, schemas are often used to describe the structure of different types of data. Two common examples include database and XML schemas. 1. Database Schema A database schema describes the tables and corresponding fields contained in a database. It may be displayed as a list of tables that each contain a ..

Read more

MAMP Definition Stands for “Mac OS X, Apache, MySQL, and PHP.” MAMP is a variation of the LAMP software package that can be installed on Mac OS X. It can be used to run a live web server from a Mac, but is most commonly used for web development and local testing purposes. Apache (or “Apache HTTP Server”) is the component used to ..

Read more