Basic Computer Concepts Flashcards
- is an electronic device that accepts data from the user, processes it, produces results, displays them to the users, and stores the results for future usage
Computer
- is a collection of unorganized facts & figures and does not provide any further information regarding patterns, context, etc. Hence data means “unstructured facts and figures”.
Data
is a structured data i.e. organized meaningful and processed data. To process the data and convert into information, a computer is used.
Information
Give the four functions of computers
• Input
• Process
• Store
• Output
Give the 7 Characteristics of Computer System
- Memory
- Automation
- Reliability
- Versatility
- Diligence
- Accuracy
- Speed
The Basic Applications of Computer
• Home
• Medical Field
• Entertainment
• Industry
• Education
• Government
• Banking
• Business
• Training
• Arts
• Science & Engineering
Give the Components of Computer System
Input Device
Central Processing Unit
-Control Unit
-Arithmetic/Logic Unit
Memory Unit
Output Device
- All types of processing, such as comparisons, decision-making and processing of non-numeric information takes place here
ALU
- This part of CPU extracts instructions, performs execution, maintains and directs operations of entire system.
Control Unit
- This is unit in which data and instructions given to computer as well as results are stored.
Memory Unit
- It controls all activities of computer
- Supervises flow of data within CPU
- Directs flow of data within CPU
- Transfers data to Arithmetic and Logic Unit
- Transfers results to memory
- Fetches results from memory to output devices
Functions of Control Unit
- Any of various languages for expressing a set of detailed instructions for a digital computer
Computer Programming Language
- Allow us to give instructions to a computer in a language the computer understands
Computer Programming Language
Give the hierarchy of Computer Language from highest to lowest
High level language
Assembley language
Machine Language
Computer Hardware
What language type is Web Scripting?
Java Script
What language type is HTML and XML?
WWW Display Languages
What language type is Tex, PostScript, SGML?
Document Formatting Languages
What language type is PERL?
Scripting languages
What language type is Prolog and Lisp?
Declarative Languages
What language type is C++, C#, Ada, Java, Visual Basic, and Python?
Object Oriented Languages
What language type is Cobol and SQL?
Business Oriented Languages
What language type is Fortran, Algol, and C?
Algorithmic languages
C evolved from two previous languages
BCPL (Basic Combined Programming Language) and B
BCPL was developed in _____ by ______
1967 by Martin Richards
_________ modeled many features in Martin Richards’s B language
Ken Thompson
In ______, who used B to create early versions of the UNIX operating system at Bell Laboratories?
1970, Ken Thompson
He evolved the C language from B at Bell Laboraties
Dennis Ritchie
The C language was originally implemented on a _______ computer in ______
DEC PDP-11, 1972
C uses many of the important concepts of _____ and ____ while adding data typing and other powerful features
BCPL, B
By the late _____s, C had evolved into what is now referred to as “_______”
1970, Traditional C
“The C Programming Language” book was published in ______ and written by _____ and _____
1978, Kernighan, Ritchie
• The rapid expansion of C over various types of computers (sometimes called _______) led to many variations that were similar but often incompatible.
Hardware platforms
• In ______, the X3J11 technical committee was created under the American National Standards Committee on Computers and Information Processing (X3) to “provide an ______________________ of the language.”
1983, unambiguous and machine independent definition
In 1989, the standard was approved and updated in _______. The standards document is referred to as _________.
1999, INCITS/ISO/IEC 9899-1999
Give the 6 Program Development Life Cycle in Order
- Problem Definition
- Problem Analysis
- Algorithm Development
- Coding & Documentation
- Testing & Debugging
- Maintenance
- The solution to any computing problem involves executing a series of actions in a specific order. A procedure for solving a problem in terms of
1. The actions to be executed
2. The order in which these actions are to be executed
Algorithm
What makes a good algorithm?
- Correctness
- Efficiency
Should always give the correct solution
Correctness
- Should use minimum resources and should perform at an acceptable speed
Efficiency
How do you measure efficiency?
By Asymptotic Analysis
- Refers to defining the mathematical foundation/framing of its run-time performance
Asymptotic Analysis
- Specifies the order in which statements are to be executed in a computer program
Control Structure
is the order in which individual statements, instructions or function calls of an imperative program are executed or evaluated
Control Flow/Structure
Give the 3 Types of Control Structure
- Sequential
- Selection
- Repetition
- default mode. Sequential execution of code statements (one line after another)
Sequential Control Structure
- used for decisions, branching. Choosing between 2 or more alternative paths.
Selection Control Structure
- used for looping, i.e. repeating a piece of code multiple times in a row.
Repetition Control Structure
- An artificial and informal language that helps you develop algorithm
Pseudocode
- Similar to everyday English; it’s convenient and user friendly although it’s not an actual computer programming language
Pseudocode
- A graphical representation of an algorithm or of a portion of an algorithm
Flowchart
- Drawn using certain special-purpose symbols such as rectangles, diamonds, ovals, and small circles; these symbols are connected by arrows called flowlines
Flowchart
In a flowchart, symbols connected by arrows are called ________
Flowlines
In a flowchart, a circle or oblong represents:
Start and End
In a flowchart, a slanted rectangle represents the ______
Output or Display
In a flowchart, a rectangle represents the _______
Input or Process
In a flowchart, a tiny circle indicates ________
Continuation
In a flowchart, a diamond represents __________
Decisions
Diamonds or decisions in a flowchart is the only one that can have ___ input and ___ outputs
One, two
must be placed at the beginning of a file. These directives perform different types of functions, but they are commonly use to include a header files
Preprocessor directives (#)
is a file with extension .h which contains C function declarations and macro definitions to be shared between several source files.
Header File
There are two types of header files:
the files that the programmer writes and
the files that comes with your compiler.
a self-contained block of code, other languages call them procedure or subroutine. It is just a series of statements grouped together and given a name.
Function
Give the 4 Elements of C Program
- Preprocessor directives (#)
- Function
- Statements
- Comments
- Commands that the computer executes when the program runs.
Statements
All statements end with a __________
Semicolon (;)
are used to write some valuable notes while programming. They also increase the readability of the program.
Comments
Give the two types of comments
- Single Line (denoted by //)
- Multi Line (denoted by /* comment */)
- an entity that doesn’t change
Constants
An entity that may change
Variable
What are the types of C Constants?
Primary Constants and Secondary Constants
What are under Primary Constants?
Integer Constant
Real Constant
Character Constant
Real constants are often called ____________ and could be written in two forms
floating point constants
What are the two forms of the Real Constant?
Fractional form and Exponential form
is a single alphabet, a single digit, or a single special symbol enclosed within single inverted commas
Character Constant
For a character constant, both inverted commas should point to the left (true or false)
True
What are some secondary constants?
Array
Pointer
Structure
Union
Enum
The allowable range for integer constants is ______ to _______
-32768 ; 32767
For real constants (exponential form), the mantissa part and the exponential part should be separated by a letter _.
e
What is the range of real constants in exponential form?
-3.4e38 to 3.4e38
(True or False) No commas or blanks are allowed within a real constant
True
The maximum length of a character constant can be ____ character
1
It defines what type of data the variable will hold
C Data Types
Give the 5 C Data Types
Int
Char
Float
Double
Void
Used to hold an integer
Int
Can hold/store a character in it
Char
Used to hold a float value
Float
Used to hold a double value
Double
Give range of data type, bytes, and format: signed char
-128 to +127
1 byte
%c
Give range of data type, bytes, and format: unsigned char
0 to 255
1 byte
%c
Give range of data type, bytes, and format: short signed int
-32768 to +32767
2 bytes
%d
Give range of data type, bytes, and format: short unsigned integer
0 to 65535
2 bytes
%u
Give range of data type, bytes, and format: signed integer
-2147483648 to +2147483647
4 bytes
%d
Note: this is the default of int
Additional note: range is the same as long signed integer
Give range of data type, bytes, and format: unsigned integer
0 to 4294967295
4 bytes
%u
Give range of data type, bytes, and format: long signed integer
-2147483648 to +2147483647
4 bytes
%ld
Give range of data type, bytes, and format: long unsigned integer
0 to 4294967295
4 bytes
%lu
Give range of data type, bytes, and format: float
-3.4e38 to +3.4e38
4 bytes
%f
Give range of data type, bytes, and format: double
-1.7e308 to +1.7e308
8 bytes
%lf
Give range of data type, bytes, and format: long double
-1.7e4932 to +1.7e4932
10 bytes
%Lf
Give the 5 Types of Variables in C
- Local Variable
- Global Variable
- Static Variable
- Automatic Variable
- External Variable
Type of variable: declared inside the function or block
Local Variable
Type of variable: declared outside the function or block. Any function can change the value of global variable – it is available to all the functions
Global Variable
Type of variable: declared with static keyword. It retains its value between multiple function calls
Static Variable
Type of variable: all variable in c that are declared inside the block are automatic variable by default. We can explicitly declare an automatic variable using auto keyword
Automatic Variable
Type of variable: can share a variable in multiple C source files. To declare an external variable, you need to use an external keyword
External Variable
A variable name is any combination of 1 to ___ alphabets, digits, or underscores.
31
(True or False) First character in the variable name must be an alphabet or underscore
True
- A statement in which a variable is stored by the compiler.
Variable Declaration
- The different ways of changing an expression from one data type to another.
Type Casting
- Specify the actions to be performed during the execution of program code.
- are normally executed in the sequence they appear in the program code.
Executable Statements
ASCII printable characters:
A to Z
65 to 90
ASCII printable characters:
a to z
97 to 122
Give me the 5 types of Errors
- Syntax Error
- Run-time error
- Linker Error
- Logical Error
- Semantic Error
- also known as the compilation errors
- occurred at the compilation time, or we can say that the syntax errors are thrown by the compilers
- mainly occurred due to the mistakes while typing or do not follow the syntax of the specified programming language.
Syntax Error
- Sometimes the errors exist during the execution-time even after the successful compilation known as run-time errors. When the program is running, and it is not able to perform the operation is the main cause of the run-time error.
Run-time Error
- mainly generated when the executable file of the program is not created. This can be happened either due to the wrong function prototyping or usage of the wrong header file.
Linker Error
- leads to an undesired output. These errors produce the incorrect output, but they are error-free
Logical Error
- occurred when the statements are not understandable by the compiler
Semantic Error
- program that processes statements written in a particular programming language and turns them into machine language or “code” that a computer’s processor uses
Compiler
What are the 3 logical operators in C?
&& - AND operator
|| - OR operator
! - NOT operator
The AND operator:
When one of the conditions is false, the expression becomes false
The OR operator
When one of the conditions is true, then the expression is true.
Non-zero value
True
Zero Value
False
The AND (&&) operator and OR (||) operator associates from _______ to _______.
left ; right
(True or False) The NOT (!) operator has the highest precedence and it associates from right to left.
True
- The group of statements after the if up to and not including the else is called an ‘_______’.
If block
- The group of statements after the else is called an ‘________’.
Else block
(True or False) We can drop the pair of braces if there is only one statement to be executed in the if and else block
True