Git
Agile Scrum
JS Engine
App Development Process
ES6
100

This CLI command creates a new repository.  It can be used to convert an existing un-versioned project to a Git repository or create a new, empty repository. Usually the first command you’ll run in a new
project.

What is Git Init?

100

An approach or methodology that stresses collaborative environments in order to accomplish effective responses to change.

What is Agile?

100

Often abbreviated JS - a programming language that is one of the core technologies of the World Wide Web alongside HTML and CSS

What is JavaScript?

100

A set of programs, documentation & configuration of data.

What is Software?

100

Number, string, boolean, null, undefined, symbol and bigint and a complex type: object are all these in JavaScript.

What is Primitive Types?

200

This CLI command is used to target an existing repository to make a copy of the target
repository.

What is Git Clone?

200

The main questions pushing this daily meeting are: “What did I complete yesterday?, “What will I work on today?”, and “Am I blocked by anything?”

What is Daily Standup?
200

A fast low-level register based interpreter written using the backend of TurboFan.  “V8”

What is Ignition?

200

A visual blueprint rarely built by the developer. Tells a full story of the application.

What is a wireframe?

200

If, else, else if and switch statements.  Used for checking a specific condition and executing
the code based on the specified condition.

What is a conditional?

300

The opposite of "git clone", instead of downloading your code from GitHub, it uploads your changes and code back to GitHub?

What is Git Push?

300

This meeting is done so at the end of an iteration, it should be used to allow the team to better understand what did and did not work, and then take that information, create a solution, and apply that solution into the next sprint.

What is a Retrospective?

300

When the JS engine detects a code to be this, only then the optimizing compiler kicks in.

What is Hot?

300

Debugging, Validating, and an MVP is done during this phase of the App Development Process.

What is Testing?

300

A value that can either be TRUE or FALSE.  If you want to know “yes” or “no” about something,
then you would want to use “This” function.

What is a boolean?

400

To get the latest changes from your remote repository.

What is Git Pull Origin Master?

400

Ideally consists of meeting with the development team, the scrum master and product owner. This ceremony generally would take place at the beginning of a sprint.

What is Sprint Planning?
400

It performs the following tasks: Compiler optimization, Garbage collection, Hot code management, Caching, Other runtime aspects of the program.

What is the JavaScript Engine?

400

Your app is ready to submit and your looking to put it on the app store.

What is deployment?

400

In JavaScript this is short for not a number.

What is NaN?

500

Git Pull is a combination of these two Git terms.

What is fetch and merge?

500

 0, 1, 1, 2, 3, 5, 8, 13, 21, etc.

What is the Fibonacci sequence?
500

Before handing over to compiler toolchain, JavaScript code is parsed into this.

What is the Abstract Syntax Tree (AST)?
500

The five stages of the SDLC in the correct order.

What is Planning, Analysis, Design,Implementation, Maintenance?

500

also known as an ECMAScript.  “This” is the newer version of JavaScript introduced in 2015.  It is
the standard that the JavaScript programming language uses.  It provides the specification on how the JavaScript programming language should work.

What is ES6?