Module 1 Flashcards

(19 cards)

1
Q

What is Runtime Environment?

A

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.

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

What is Node.js?

A

A runtime environment htat lets you run JavaScript code outside of a web browser - typically on a web server.

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

What is a Library?
-

A

A collection of files or a set of automatic commands a computer performs.

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

What is a framework?
-

A

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.

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

What is the difference between a Library and a Framework?

A

A library is code that can be called by another, primary program. A framework is itself a working program that can call other code.

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

What is a breakpoint?

A

A place in a computer code where execution is interrupted for debugging purposes.

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

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.
-

A

Terminal.

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

I Visual Studio Code, how can you access the dropdown called the Command palette?

A

CRTL + SHIFT + P

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

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.

  1. Output
  2. Terminal
  3. Problemns
A
  1. Terminal
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What URI stands for?

A

Uniform Resource Identifier.

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

What is URI?

A

A unique string that identify a resource on the WWW that can identify anything, such as people, places, etc.

Ex: URL is an URI.

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

What is am Upstream Branch?

A

A remote branch that is connected to a local branch.

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

What is an Issue in GitHub?

A

A task for a project that can be shared between the developers.

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

The CSS rule-set is composed of:

A

Selector + Declaration {property: value; property: value}

h1
{
color: blue;
height:20 px;
}

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

A(n) ____ is a line that measures coordinates.

A

Axis

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

In computer programming, what is the concept that allows for the definition of classes that receive the structure and behavior of another class?

  1. Polymorphism
  2. Inheritance
  3. Conditions
  4. Functions
17
Q

Which of the following is not a valid way of declaring color values in CSS?

  1. Color name
  2. Decimal code
  3. CMYK
  4. Hex code
18
Q

Which of the following is best defined as “a collection of files or a set of automatic commands a computer performs”?

  1. IntelliSense
  2. Runtime
  3. Visual Studio Code
  4. Library
19
Q

Prior to the development of CSS, what language was used to style web pages?

  1. Python
  2. HTML
  3. JavaScript
  4. C#