Unit 7 - Software Flashcards

1
Q

What is DOS?

A

Disk Operating System. An early operating system introduced by Microsoft in 1975 as MS-DOS.

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

What is a BIOS?

A

Basic Input/Output System. A chip that contains the boot instructions for a computer.

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

What is updating your BIOS called?

A

Flashing.

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

What is a POST?

A

Power On Self Test. A BIOS function that checks all hardware is present and working. After that, the OS starts taking over.

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

What is CMOS?

A

Complementary Metal Oxide Semiconductor. It’s powered by a small battery and used to contain the BIOS configuration. If the battery died, settings were lost. The BIOS config is now on flash memory and CMOS just keeps the system clock.

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

What is Firmware?

A

Software for hardware. Hard-coded instructions built into a device that cannot be updated and can be updated with difficulty.

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

What is an API?

A

Application Program Interface. Used to make requests of hardware. API > OS > Drivers > Device.

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

What is FAT?

A

File Allocation Tables. Used by MS-DOS to format disks. Later upgraded to FAT-16 and then FAT-32.

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

What is de-fragmentation?

A

Files being saved and deleted would fragment hard-drives which causes slow access time. Defragmentation was run to resolve this.

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

What is NTFS?

A

New Technology File System. Used by Windows 10 as file system. Can resize volumes and have user quotas.

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

What is APFS?

A

Apple File System, used by MacOS 10.13 as file system. Provides improved access speed, on-demand volume size.

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

What is ext4?

A

Fourth Extended file system. Used by Linux as file system, provides fragmentation protection.

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

What cross support is there across OS for file system?

A

None! If you format a drive on a Mac, Windows cannot read it.

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

What is a MIS?

A

Management Information System. Used for lower and mid-level management.

Managing files, sorting company data, creation action plans, track inventory, budget, porsonnel management.

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

What is TPS?

A

Transaction Processing system. Handles operational transactions. Used by workers.

Payroll systems, order processing, inventory tracking, data validation, funds transfer.

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

What is DSS?

A

Decision Support System. Designed to look at the future and make informed decisions, used by middle management.

Revenue predictions, hiring needs, inventory analysis, future sales.

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

What is EIX?

A

Executive Information System. Similar to DDS but designed for executives, focuses on the big picture.

Performance analyses, inter-departmental productivity, market research data, future performance.

18
Q

What is OLAP?

A

Online analytical processing. High performance data analyses, used by middle management.

Sales figures, product info, product comparison, employee information, data mining, creating reports.

19
Q

What is data ming?

A

Producing useful information from large amounts of data.

20
Q

What is software?

A

Either an OS or an application. OS uses hardware, applications have specific tasks.

21
Q

What is freeware?

A

An app provided for free. Donations might be asked.

22
Q

What is Open Source?

A

Source code of the app is freely shared.

23
Q

What is adware?

A

Software sponsored by adds. You will see them in the app at strategic locations. You can sometimes buy an ad-free version.

24
Q

What is off the shelf?

A

A generic application not tailor-made for a specific user or company.

25
Q

What are the advantages of Subscription apps?

A

Prevent piracy

Software is more affordable due to monthly charges instead of one-off

You usually get upgraded to newer versions for free.

26
Q

What is malware?

A

Destructive or nefarious code. It will have viruses or trojan horses embedded.

27
Q

What is the first version of an app called?

A

Alpha version

28
Q

What is a beta version of an app?

A

A version that contains most of the functionality and which is extensively tested. .

29
Q

What is an embedded system?

A

A special purpose device that performs one primary task again and again. Fire alarm, voting machine, GPS, washing machine.

30
Q

What is a microprocessor?

A

A really small CPU. Data processing logic and control is included on a single integrated circuit, or a small number of them.

31
Q

What is a microcontroller?

A

A chip containing a processor, RAM, output and input all build in. I/O travels through the pins.

They have less RAM, hard to upgrade, and firmware on them. High reliability

32
Q

What are the steps in software development?

A

The life cycle is:

Analyze requirements
Planning
Design
Development
Testing
Deployment/maintenance

33
Q

What is done during Analyse requirements?

A

Ask yourself what the problems are that the software needs to solve, and write them down in a requirements document.

34
Q

What is the Planning phase?

A

You examine the feasibility of the project, specify team assignments, examine risks and strategies, draw up a budget.

35
Q

What is the design phase?

A

You create a design document to determine what is going to be developed. Make sure it is within budget and needs to be analysed for flaws.

36
Q

What is the development phase?

A

This is where coding is happening and the actual software is being created.

37
Q

What happens in the testing phase?

A

Software is Q&A tested for errors and for functionality. Coders will be notified and fix those errors.

38
Q

What is the deployment and maintenance phase?

A

The last phase of software, it is in production, being used, and maintained by updating it to solve bugs and problems.

39
Q

What is the waterfall model?

A

A rigid model flowing downwards, it’s straightforward and moving to the next step when one is completed. You don’t move backwards.

40
Q

What is the spiral development model?

A

You intentionally go through several planning, design, development, testing cycles. It’s very thorough but may take longer to develop.

41
Q

What is the Big Bang Model?

A

A newer model where design, requirements, coding and testen all happen at once with fairly little planning. Big risk, but software can be released faster.