Week 3 Flashcards

1
Q

What is software?

A

A set of instructions that tell tell the hardware what to do. Created through the process of programming.

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

What are challenges that can be solved by operating systems?

A
  • Disk fragmentation;
  • Limited memory;
  • Concurrent processes;
  • Compatability;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are distinctions within application software?

A
  • Funtional Perspective
  • Hierarchical perspective
  • User perspective
  • Data perspective
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is meant by distinction functional perspective?

A

Divide them based on the function they have, for example for marketing or for logistics

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

What is meant by the distinction hierarchical perspective?

A
  • Divde them in software that is used for operational purposes or for managerial purposes or strategic purposes
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is meant by the distninction user perspective

A

Divide them in terms of what kind of users are using the platform

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

What is meant by the data perspective?

A

Data is core of information systems. So you divide the applications based on what the data is used for. Handling the present (transactions) or preparing for the future (analytics) or remembering the past (data warehouses)

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

What is cloud computing?

A
  • Use of internet for pooling IT resources.
  • There is dynamic IT resource use and payment (so you give up your own IT center and use external parties for it).
  • You pay for what you actually use;
  • Virtualization and GRID
  • Can be public or pricate
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is virtualization

A

A server can run a 1000 users at the same time as they virtualize machines (so not real machines, but virtualized)

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

What is GRID?

A

A thousand machines acting as one machine to improve performance

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

What are three types of cloud computing?

A
  • Software as a service (SaaS)
  • Platform as a service (PaaS)
  • Infrastructure as a service (IaaS)
  • > in practice often combinations
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is SaaS ?

A

Often what users see. So an application in the cloud. THink about your email

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

What is PaaS?

A

Specically for developers. Like amazon webservices, provides a complete environment for development purposes

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

What is IaaS?

A

Often for IT managers. Only gives you an basic structure, like a windows envirnment. You use it to run your own applications on top of it.

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

What are advantages of Cloud Computing?

A
  • You don’t have to store software yourself
  • Available from every computer with internet access
  • Large quantities of users can use it
  • Services can be leased for as-need basis
  • Your information is backed up externally
  • New applications run and install quicky
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What are disadvantages of Cloud Computing?

A
  • Information is stored at a server of someone else.
  • Must have internet access
  • Relying on third party
17
Q

What are the economic advantages of cloud computing?

A
  • Low entry barriers
  • Scalability
  • Innovation is done for you
  • Reduction of capital expenses and overhead
18
Q

What is open source software?

A

The source code is visible for the users and they can edit/modify it.

  • Typically by programmer communities
  • Typically free, but not necesarilly
19
Q

What is an advantage of Open source software?

A
  • It is usually cheaper;
  • Might be a big community that can help you if you are having problems
  • Users can be used to make improvements
20
Q

What is an disadvantage of open source software?

A
  • There is no provider that is responsible for it if you have problems
21
Q

What is the business model of open source software?

A
  • TO an extent it is for fun by hackers and programmers, so no business model;
  • Some companies focus on open source, so when they gain a lot of users these users might need consultancy services or machines
22
Q

What is modularization?

A
  • Breaking programs up in parts so that a large program is easier to read and debug;
  • It enables that parts of the program can be used in other programs
23
Q

What are the key ideas of modularization?

A
  • Breaking up the program in parts that have a well-designed interface;
  • Interface hides the internal structure of the module;
  • The interface gives guidance on how to use that module;
  • Interface is a stable reference point on how to evolve both the interface as the internal structure;
24
Q

What is the most important modularization paradigm?

A
  • Object-oriented programming

- > with service-orientation as an extension

25
Q

What is object-oriented programming?

A
  • Giving structure to a program so that properties and behaviours are bundled into objects;
  • Model concrete, real-life things (cars, relations, employees) into software objects.
  • Real world objects are the center in the programming (the grouping criterion) and in the overall structure of the program.
26
Q

What are the key items in object oriented programming?

A
  • Class -> category/object
  • instance -> what or who belongs to a class
  • inheritance -> a subclass having all the properties of a class (but can have more)
27
Q

What is procedural programming?

A
  • Structuring your program like a recipe, providing steps in the form of code blocks that carry out tasks to complete a task.