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.
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
In computer programming, what is the concept that allows for the definition of classes that receive the structure and behavior of another class?
Which of the following is not a valid way of declaring color values in CSS?
Which of the following is best defined as “a collection of files or a set of automatic commands a computer performs”?
Prior to the development of CSS, what language was used to style web pages?