Cloud Development Flashcards

1
Q

What is a “service principal”? How is different than a “service account”?

A

Service principal specific to Microsoft, used to identify an application within Azure. Used to authenticate, authorize using other Azure resources.

Service account is a more general term for any non-human identity.

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

In terms of software development, what is an “artifact”?

A

A tangible output or byproduct of the software development process. (.exe, .dll [libraries], .zip [packages], config files, etc.)

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

In terms of software development, what is an “agent”?

A

Computing infrastructure that runs one job at a time (physical machine or virtual machine). Required to use when teams want an automatic build, test, and deploy process.

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

What is a blue green deployment?

A

An application release model that gradually transfers user traffic from a previous version of an app or microservice to a nearly identical new release.

([source])(https://www.redhat.com/en/topics/devops/what-is-blue-green-deployment)

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

What does MERN stand for?

A

MongoDB, Express.js, React.js, Node.js

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

Describe the role of each component in the MERN stack.

A

MongoDB: Database
Express.js: Backend framework
React.js: Frontend library
Node.js: Runtime environment

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

What is a Single Page Application (SPA)?

A

A web application that loads a single HTML page and dynamically updates content without full page reloads.

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

What is the flow of data in a MERN application?

A

Client (React) -> Server (Express/Node) -> Database (MongoDB) -> Server (Express/Node) -> Client (React)

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

What is an API?

A

Application Programming Interface. A set of rules that defines how applications communicate.

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

What is RESTful API?

A

An architectural style for designing networked applications, using HTTP methods (GET, POST, PUT, DELETE) for data manipulation.

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

What type of database is MongoDB?

A

NoSQL, document-oriented database.

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

What is a document in MongoDB?

A

A data structure composed of field-value pairs, similar to JSON objects.

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

What is a collection in MongoDB?

A

A grouping of MongoDB documents.

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

What is the purpose of _id in MongoDB?

A

A unique identifier for each document.

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

What is a schema in MongoDB (conceptually, as it’s schema-less)?

A

The structure and organization of documents within a collection, specifying fields, their data types, and validation rules.

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

What is a query in MongoDB?

A

An operation that retrieves data from a collection based on specified criteria.

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

What is an aggregation pipeline in MongoDB?

A

A series of data processing stages used to transform and analyze data.

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

What is Mongoose?

A

An Object Data Modeling (ODM) library for MongoDB and Node.js.

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

What is the purpose of Express.js?

A

A fast, minimalist web framework for Node.js, providing a robust set of features for handling HTTP requests, middleware, and routing

20
Q

What is middleware in Express.js?

A

Functions that have access to the request object (req), the response object (res), and the next middleware function in the application’s request-response cycle.

21
Q

What is a route in Express.js?

A

A section of Express.js code that associates an HTTP request with a specific function.

22
Q

What are the HTTP methods (verbs) used in RESTful APIs?

A

GET, POST, PUT, DELETE, PATCH.

23
Q

What is req.body?

A

The parsed body of the HTTP request, typically containing data sent from the client.

24
Q

What is res.send()?

A

An Express.js method used to send a response to the client.

25
Q

What is res.json()?

A

An Express.js method used to send a JSON response to the client.

26
Q

What is res.status()?

A

An Express.js method used to set the HTTP status code of the response.

27
Q

What is a route parameter?

A

A variable part of a URL path in Express.js (e.g., /users/:id).

28
Q

What are query parameters?

A

Key value pairs added to the end of a URL after a question mark.

29
Q

What is React.js?

A

A JavaScript library for building user interfaces.

30
Q

What is a component in React.js?

A

A reusable piece of UI.

31
Q

What is JSX?

A

JavaScript XML, a syntax extension for JavaScript that allows you to write HTML-like code in React.

32
Q

What are props in React.js?

A

Properties passed from parent components to child components.

33
Q

What is state in React.js?

A

Data that can change within a component, triggering re-renders.

34
Q

What are React Hooks?

A

Functions that let you ‘hook into’ React state and lifecycle features from function components.

35
Q

What is useState?

A

A React Hook that lets you add state to function components.

36
Q

What is useEffect?

A

A React Hook that lets you perform side effects in function components.

37
Q

What is useContext?

A

A React Hook that lets you consume context values.

38
Q

What is the virtual DOM?

A

A lightweight copy of the actual DOM, used by React to efficiently update the UI.

39
Q

What is React Router?

A

A library that enables navigation between different views in a React SPA.

40
Q

What is Node.js?

A

A JavaScript runtime built on Chrome’s V8 JavaScript engine.

41
Q

What is npm (Node Package Manager)?

A

A package manager for JavaScript and Node.js.

42
Q

What is package.json?

A

A file that contains metadata about a Node.js project, including dependencies.

43
Q

What is require()?

A

A function used to import modules in Node.js.

44
Q

What are modules in Node.js?

A

Reusable blocks of code that can be imported and used in other files.

45
Q

What is asynchronous programming?

A

A programming paradigm that allows multiple operations to run concurrently without blocking each other.