11 Supporting Applications and Developers Flashcards

1
Q

Software project management that tries to implement small chunks of product often is called…?

A

Agile or Iterative Project Management

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

Software project management that uses clearly defined steps or phases to implement things like requirements, design, development, testing, and deployment is called…?

A

Waterfall or Sequential project management

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

What is a sprint?

A

A time period in Agile that developers have to develop their code

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

In the context of application support and development, what is a Design Pattern?

A

used to describe a repeatable solution to a problem that can often be linked together

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

What is open source software?

A

Software that is distributed with its source code, making it available for use, modification, and distribution with its original rights

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

What two versions of the GPL license are currently available?

A

v2 and v3`

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

a permissive open source license does what?

A

Allows users to do nearly anything they want with the code with few exceptions

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

GPL is an example of what license type?

A

Restrictive

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

Apache 2.0 is an example of what license type?

A

Permissive

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

What is the SDLC?

A

Software Development Lifecycle: defines a process that starts with the definition of the problem that needs to be solved, design of a solution, testing of that solution, ends with final solution in production

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

What is waterfall project management?

A

aka sequential project management, clearly defined steps or phases of project management that must be completed to move on to the next phase

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

What are the 5 steps in waterfall project management?

A
  1. Planning and Requirements
  2. Design
  3. Delivery and Implementation
  4. Testing
  5. Launching and Maintenance
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What are some of the common problems with waterfall project management?

A

The rigidity of the schedule causes issues as the scope of the project changes during its development. New stakeholders appear, some things might take more time than anticipated, can lead to missed deadlines and unhappy stakeholders

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

What type of project is served best by the waterfall method of management?

A

Small projects that are extremely well defined

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

What is Agile project management

A

It is a combination of iterative and incremental process models with focus on rapid adaptability. It breaks the product into small incremental builds which are provided in iterations

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

What is frontend architecture?

A

The code and its structure that make up the interface for the application. Usually a web interface or some kind of GUI.

17
Q

In a fully functional app, what is the frontend’s primary purpose other than presenting a user interface?

A

Sending requests that are serviced by the backend

18
Q

What is the backend’s primary purpose?

A

Perform whatevery functions necessary, be it retrieving information from a database, performing calculations, to send data back to the frontend and serve the client

19
Q

What does a well designed frontend and backend accomplish?

A

Frontend -> ease of use
Backend -> efficiency and reliability

20
Q

What are the ten requirements for Open Source Software?

A

Free redistribution
Include the source code
Allow for modifications and derived works
Integrity of the original author’s source code
Does not allow discrimination against persons or groups
Does not allow discrimination against any fields of endeavor
Distribution of the original license
License must not be specific to any product
License must not restrict other accompanying software
License must not be predicated on any technology or style of interface

21
Q

What are the 4 types of licenses?

A

Public domain
Permissive License
Restrictive License
Proprietary License

22
Q

What are the main differences between GPLv2 and GPLv3 licenses?

A

They are both copyleft licenses: restrictive. v3 is more specific about the grant of patent rights. v3 is also compatible with apache 2.0 license, and v2 is not.

23
Q

If code licensed under apache 2.0 is combined with code licensed under GPLv3 what would the resulting code have to be licensed under?

A

GPLv3, since it is the more restrictive license