UNIT 1.1 Computer Flashcards

1
Q

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.

A

Computer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Is a collection of unorganized facts & figures and does not provide any further information
regarding patterns, context, etc.

A

Data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

It means “unstructured facts and figures”.

A

Data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Is a structured data i.e. organized meaningful and processed data. To process the
data and convert into information, a computer is used.

A

Information

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Refers to mechanical device that makes up computer

A

Hardware

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

It consists of interconnected electronic devices that we can use to control computer’s operation,
input, and output.

A

Computer Hardware

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Is a collection of several components working together

A

Computer Hardware

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

A set of instructions that drives computer to do stipulated tasks

A

Program

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

It operates directly on hardware devices of computer. It provides a platform to
run an application. It provides and supports user functionality. i.e Windows

A

System Software

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Is designed for benefit of users to perform one or more tasks. i.e Powerpoint

A

Application Software

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Is a tool used for processing data into information

A

Computer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

The list of instructions that the computer must follow to
11
be able to process data into information

A

Program or Software

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

The procedure of developing the detailed instructions for the computer

A

Programming

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What are the five-step process of programming?

A
  1. Define the problem
  2. Design the solution/program
  3. Code the program
  4. Test the program
  5. Document the program
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

It means that there should be clear understanding of the problem

A

Problem Definition Step

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

the Problem Definitiion Step requires performing the following:

A
  1. Specify program objectives and identify the users of the program.
  2. Specify the output requirements.
  3. Specify the input requirements.
  4. Specify processing requirements.
  5. Study feasibility of implementing the program.
  6. Document the analysis.
17
Q

In designing the program, the following steps are done:

A
  1. Determine the program logic through top-down approach and modularization, using
    hierarchy charts.
  2. Design details using pseudo-code and /or flowcharts.
  3. Test design with a structural walkthrough. Structural walkthrough consists of
    reviewing process with other programmers and system analyst and scrutinize
    (“walkthrough”) the programmer’s work.
18
Q

Is the step which translates the logic of the program based on the pseudo-code
(algorithm) or flowcharts into a high-level programming language using the syntax and
semantics of the specific language.

A

Program Coding

19
Q

It consists of desk checking, debugging, and running real data to make sure that
the program works.

A

Program Testing

20
Q

Is just reading through or checking the program manually to

ensure that it is free from errors and the logic works.

A

Desk Checking

21
Q

It means detecting, locating, and

removing errors in the computer program.

A

Debugging

22
Q

An Error that can be a typographical error or incorrect format of the statement used.

A

Syntax Error

23
Q

Errors that are

caused by incorrect use of control structures.

A

Logic Error

24
Q

It consists of the written descriptions of what the program is all about
and how to use it.

A

Documenting a program

25
Q

What are the steps of documentation?

A
  1. Write user documentation
  2. Write operator documentation
  3. Write program documentation