Module 1 Flashcards
What is Runtime Environment?
The set of processes related to a specific computer program that are in use by the computer as that program is running.
Ex: Memory allocation, interfacing with the operating system, passing data between sub programs, etc.
What is Node.js?
A runtime environment htat lets you run JavaScript code outside of a web browser - typically on a web server.
What is a Library?
-
A collection of files or a set of automatic commands a computer performs.
What is a framework?
-
A fully-functioning system that provides a complete set of generic functionality as is, and it can be mofified by the programmer to fit their needs.
What is the difference between a Library and a Framework?
A library is code that can be called by another, primary program. A framework is itself a working program that can call other code.
What is a breakpoint?
A place in a computer code where execution is interrupted for debugging purposes.
In Visual Studio Code, the … panel is where you can execute commands as if you were in a Command Lind Interface without leaving VS code.
-
Terminal.
I Visual Studio Code, how can you access the dropdown called the Command palette?
CRTL + SHIFT + P
In Visual Studio Code, the …. panel is where you can execute commands as if you were in a Command Line Interface without leaving VS code.
- Output
- Terminal
- Problemns
- Terminal
What URI stands for?
Uniform Resource Identifier.
What is URI?
A unique string that identify a resource on the WWW that can identify anything, such as people, places, etc.
Ex: URL is an URI.
What is am Upstream Branch?
A remote branch that is connected to a local branch.
What is an Issue in GitHub?
A task for a project that can be shared between the developers.
The CSS rule-set is composed of:
Selector + Declaration {property: value; property: value}
h1
{
color: blue;
height:20 px;
}
A(n) ____ is a line that measures coordinates.
Axis