Topic 2.7 - Types of Software Systems Flashcards

1
Q

What is source code?

A

Source code is the raw code produced by developers and defines what they want their software to do.

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

What is meant by proprietary software?

A

This is software where the source code is not included and is also known as closed source. When you download the software, you can’t get access to the source code or make any changes to it.

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

What is meant by open source software? Give some examples:

A

This is software where you can download the source code and make changes to it. A community of developers works on the code and if their changes are good, the code will be merged into the main source code.

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

What is meant by a GPL?

A

GPL stands for General Public License and protects the freedoms of open source code. It ensures that people can’t take open source code and use it in proprietary software and making money of other peoples code and ideas.

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

What is meant by Bespoke Software?

A

Bespoke software is software which is tailor made to the clients specific needs. These projects can often take a long time and prove to be very costly.

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

What is meant by off-the-shelf software?

A

This is ready made software which you can go and buy. These pieces of software become more reliable and cheaper as more people use it. Businesses may need to change some of their practises to get the most out of the software because it’s not bespoke.

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

What is a safety critical system?

A

These systems are not allowed to fail as they can be responsible for people’s lives, company assets or the environment/wildlife. These system have to be complex and constantly monitoring and taking input from the environment. (e.g ABS and aeroplane systems). These systems are written in a low level language so they can respond as quick as possible.

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

What are the benefits of using safety critical systems?

A
  • They can replace people so cheap in long run
  • Can respond to dangerous situations quickly
  • Human workers won’t have to be in dangerous situations
  • System can operate 24/7 year round and doesn’t get tired
  • System can provide useful analytical information
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are some ‘rules’ for creating safety critical systems?

A
  • Restrict all code to very simple control flow constructs. (No GOTO or recursion)
  • All loops must have a fixed upper bound
  • No more than two assertions (logical checks) per function
  • No function should be longer than what can be printed on a sheet of paper
  • Data objects must be declared at the smallest possible level of scope
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

what are the drawbacks of using safety critical systems?

A
  • Businesses may be required to hire expensive and highly qualified maintenance staff
  • Systems be able to handle obvious fault conditions but can not adapt to changes when they haven’t been programmed to deal with that particular situation.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is meant by an expert system?

A

These are knowledge based systems which are designed to replicate a human expert’s knowledge. They use a series of facts and rules (if statements) to come to a conclusion and usually gives its reasoning.

  • NHS Direct
  • Careers Advice
  • Diagnosing car faults
  • Determining an insurance premium
  • Deciding whether to provide a bank loan
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What type of programming language is usually used in expert systems?

A

A 4th generation language called Prolog

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

What are the benefits of expert systems?

A
  • Their speed
  • Give consistent advice
  • Can give a range of possible outcomes (more than one solution to each problem, these are usually ranked)
  • Public access to knowledge
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What are the limitations of expert systems?

A
  • May reduce skill levels when people rely on these systems
  • They can still make mistakes
  • Most expert systems don’t learn from their mistakes
  • Difficult to build a complete and exhaustive system.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly