Problem Solving Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

things you can touch (the machines, wiring, and other physical components of a computer or other electronic system.)

A

hardware

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

set of instructions; intangible (the programs and other operating information used by a computer.)

A

software

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

software developers write _________

A

programs

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

software is in _________ language

A

programming

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

The grammar rules include ________ and _________.

A

syntax, semantics

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

a set of instructions in a specific sequence which must correctly describe the logic of a particular need

A

correct program

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

computers can only understand _________ language

A

machine

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

Programming languages are usable by humans but must be translated to ______ code

A

machine

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

The 2 types of translators (translate programming language into machine code)

A

compilers (more common) and interpreters

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

Both types of translators can identify errors in your program and are limited to identifying ________ errors

A

syntactical

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

after is translated, the program can be _____, or __________

A

run, executed

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

Computers receive ______, process that input, and _______ the results

A

input, output

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

2 types of internal memory

A

memory, main(primary) memory

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

is the place in a computer where the operating system, application programs, and data in current use are kept so that they can be quickly reached by the computer’s processor. Volatile- its contents are lost when the computer loses power

A

RAM (random access memory)

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

Computer hardware that stores programs or data that cannot be added to, modified, or deleted. It does not require power to maintain its contents, and is often used to save instructions that enable the computer’s operating system to communicate with other hardware. Not volatile

A

ROM (read only memory)

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

is all addressable data storage that is not currently in the computer’s main storage or memory. Synonyms are auxiliary storage and secondary storage. It is more permanent and can be retrieved after the computer loses power

A

External storage

17
Q

Examples of external storage

A

hard drives, USB drives, burn-abled CD/DVD

18
Q

What is memory measured in?

A

nanoseconds

19
Q

What is hard drive speed measured in?

A

milliseconds

20
Q

what is the purpose of writing programs?

A

to solve problems

21
Q

General problem solving steps

A
  1. Understand the problem
  2. Dissect the problem into manageable pieces
  3. Design a solution
  4. Consider alternatives to the solution and refine it 5.Implement the solution
  5. Test the solution and fix any problems that exist
22
Q

Software problems fail because the _________ wasn’t understood

A

problem

23
Q

Avoid _________ assumptions

A

undocumented

24
Q

Problem solving is fundamental to _________ _________.

A

software development

25
Q

_______-_______ approach - dissect solutions into classes and pieces

A

object-oriented

26
Q

English papers

  1. Thesis Statement (understanding the problem)
  2. Source Cards (Analysis)
  3. Outline
  4. Rough Draft (testing)
  5. Final Draft
A

english term paper - problem solving approach

27
Q

Steps to software development (5)

A
  1. Understand the problem
  2. Plan the logic
  3. Code the program
  4. Test the program
  5. Deploy the program and maintain it
28
Q

One of the most difficult parts of software development. User’s ideas of their needs may be vague. User may frequently change their mind mid-project. Good software developer plays many roles: detective, etc. First step to software development

A

Understand the Problem

29
Q

Designs a plan to solve the problem. Common tools used are flowcharts (graphical representation) and pseudocode (outline). Involve writing the steps in English. Second step in software development.

A

Plan the logic

30
Q

Why is planning important?

A

Even professional programmers do this. Without good planning it turns into spaghetti code (is a pejorative phrase for source code that has a complex and tangled control structure, especially one using many GOTO statements, exceptions, threads, or other “unstructured” branching constructs). Even building a dog house takes some engineering and design. Poor engineering leads to ad-hoc structures (ex. Winchester Mystery House). Poor engineering has disastrous consequences.

31
Q

After the requirements have been elicited, a solution must be implemented. Software developers use programming languages to implement the solution. The third step in software development

A

Code the Problem

32
Q

is a programming environment that has been packaged as an application program, typically consisting of a code editor, a compiler, a debugger, and a graphical user interface (GUI) builder

A

An integrated development environment (IDE)

33
Q

Once you have made the program, you must test it. Two types of errors can occur: Syntax errors (grammatical errors) and logical errors. Run-time errors are a special type of logic error that can cause the program to crash. This is the 4th step in software development.

A

Test the Program

34
Q

The three levels of testing

A
  1. Unit testing (the creator testing the program)
  2. Integration testing ( is the phase in software testing in which individual software modules are combined and tested as a group. It occurs after unit testing and before acceptance testing)
  3. Acceptance testing ( is a level of the software testing where a system is tested for acceptability. The purpose of this test is to evaluate the system’s compliance with the business requirements and assess whether it is acceptable for delivery.)
35
Q

Deploying a program means delivering a software and all of its components to the client or user of the program (can be as simple as a single file or could take months) The fifth and final step in software development.

A

Deployment and Maintenance

36
Q

a previous software solution that fulfilled a business need. May be replaced when cost of maintenance is too high.

A

legacy system

37
Q

entire set of actions an organization must take to switch over to using new software. Can take months or years

A

conversion