Monday, July 22, 2024

Computer Terms

Abend(abnormal ending):

The termination of the process due to a program or system fault.

Abort  :

To terminate a process before completion. Generally used about a mainframe program, especially one that has gone awry.   

Absolute number:

The value of a number without its sign.

ABS():

A function used for absolute numbers in Excel.

accelerator chip:

The main driver of the video card is a chip that speeds up the processing of graphics data.

No comments:

C program to print invoice

 #include <stdio.h> #include <string.h> #include <ctype.h> #define MAX_ITEMS 5 #define MAX_NAME_LEN 20 #define MAX_CART 10...