-
Who invented the point-contact transistor amplifier?
William Shockley (shock), Walter Brattain (bratt) and John Bardeen (Bar) in 1947 December 23
-
When was the first transistorized computer (TX-O) completed?
1956
-
When was the first hard drive (RAMAC 305) introduced?
1956 by IBM
-
When was the first intigrated circuit by texas instruments?
1958
-
When was the first mini-computer?
1960 by Digital Equipment (PDP-1) for 120,000$
-
When was ASCII implemented?
1964 American Standard Code for Intormation Interchange
-
What is DRAM?
Dynamic Random Access Memory in 1968
-
When was the kitchen computer released?
1969 by Honeywell for $10,600
-
When was C programming language developed?
1972 by Kernighan and Ritchie
-
What is the Expanded data processing cycle?
Origination, input, process, output, distribution with storage to and from the process.
-
What is Origination in the process?
Refers to the process of collecting the original data.
-
What is Distribution in the process?
Refers to teh distribution of the output data.
-
What is Storage in the process?
Storage keeps data for further processing.
-
What is Input in the process?
Were the initial data are prepared for processing.
-
What is Processing in the process?
Where input data is changed and utilized.
-
What is Output in the process?
Where the results of the preceeding steps are collected and put out to printers or as files or reports
-
What is the Data Processing Cycle?
Input, process, output.
-
What is \n
\n a ``newline'' character
-
What is #include
It is a directive neede by the program to ensure th ecorrect standard library is utilized
-
What is stdio.h
Standard input output
-
What is { }
Signifies the begining and end
-
What is ;
Placed at the end of each line of the program
-
What is getchar( )
A FUNCTION used to input a single character from the keyboard, the character pressed echoed on the monitor
-
What is getch ( )
FUNCTION used to input a single character from the keyboard without echoing the character on the monitor.
-
What is /* */
Used to add memo or notes which will be ignored by the compiler.
-
What is %d
Used for decimal number (whole number)
-
What is %c
Used for a single char in C
-
What is %f
Used for a number with floatin gor decimal point.
-
What is scanf( )
A FUNCTION used to input single character or sequence of characters from the keyboard. NO SPACES ACCEPTED
scanf("control string codes",identifier);
-
What is printf( )
A FUNCTION used to display the argument list on the monitor.
printf("control string codes",argument list);
printf("Hello, %s, you are %d years old", name, age);
|
|