Devops Flashcards

1
Q

What is a Build Artifact ?

A

Build artifacts are the files created by the build process

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

What is a Package ?

A

A package is a namespace that organizes a set of related classes and interfaces.

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

What is codebase ?

A

a codebase (or code base) is a collection of source code used to build a particular software system, application

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

What is a deployment pipeline?

A

A Deployment pipeline is the process of taking code from version control and making it readily available to users of your application in an automated fashion.

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

What is a manifest ?

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

What is an JAR artifact ?

A

the JAR file is the basic artifact for Java applications.
Under the hood, it’s essentially a .zip file with the .jar extension. It includes contents such as classes, resources, and meta information files.

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

What is a WAR file ?

A

WAR files are used for bundling Java web applications.
Along with classes and resources, WAR files can contain other JARs in the form of libraries,
JSP files,
Java Servlets,
as well as all types of static web files (HTML, CSS, Javascript, etc.)
WAR files must contain a WEB-INF directory
In contrast to JARs, WAR files cannot be run as standalone applications and we can only use them as components of another application, like a servlet container or an application server.

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