Product/Dev Terminology Flashcards

1
Q

CI

A

Continuous Integration benefits developers most because it allows for code produced to be automatically tested and continuously “integrated” with other developers’ code, and with the existing codebase. The developer benefits from receiving continuous and immediate feedback regarding code and integration errors. As s/he fixes these errors, automated testing tools in this stage will report if the errors were successfully fixed and when the code is accepted. This continuous feedback loop dramatically increases a developer’s productivity.

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

CD

A

Continuous Delivery benefits business users because as soon as code is successfully accepted in the CI stage and a logical function can be tested, it is released to users. They verify that the features meet their expectations and provide feedback to developers who then address the feedback in this stage. This feedback loop between users and developers is continuous and seamless. Whereas in traditional waterfall method, users could wait weeks/months to see the features for the first time, this approach can dramatically reduce the time to just hours/days.

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

Continuous Deployment

A

Continuous Deployment seamlessly pushes code that has been successfully accepted in the CI/CD cycle into the production environment. This stage benefits all key stakeholders, from application investors who fund the development to external consumers and internal end-users as new features/application is available for immediate (external) commercial sale or internal use.

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

CI/CD

A

Continuous Integration/deployment process.

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

TDD

A

Test Driven Development - Summary. Test-driven development (TDD) is a development technique where you must first write a test that fails before you write new functional code. TDD is being quickly adopted by agile software developers for development of application source code and is even being adopted by Agile DBAs for database development.

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

APK

A

Android Package (APK) is the package file format used by the Android operating system for distribution and installation of mobile apps and middleware.

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

Memory Leak

A

A Memory Leak is a situation when there are objects present in the heap that are no longer used, but the garbage collector is unable to remove them from memory and, thus they are unnecessarily maintained. A memory leak is bad because it blocks memory resources and degrades system performance over time.

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