FCC & Reading Week 1 Flashcards

Reveiw FCC week one assignments

1
Q

algorithm

A

series of elementary steps

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

source code

A

commands to make computer to take actions

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

programming language

A

way to give orders to a computer

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

assembly language

A

primitive human-readable representation of machine language

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

ECMAScript

A

ES2015 or ES6

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

console.log()

A

function to write a message to the console

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

value types

A

number strings

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

string concatenation

A

+

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

execution

A

asking the computer to process orders

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

interpreted language

A

from source code to machine language one line at a time

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

compiled language

A

taking the whole program to machine language all at once through a compiler program

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

algorithm

A

an ordered sequence of operations solving a given problem

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

browser

A

software to visit and use a web application

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

Node.js

A

a framework that allows JavaScript outside the browser

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

MongoDB

A

database program written in JavaScript using JSON documents

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

String

A

data encased in ‘ ‘ or “ “

17
Q

Handle special characters in a string

A

\

18
Q

Statement

A

each instruction in a program

19
Q

JavaScript statement usually ends in

A

;

20
Q

Comment a single line of code

A

//

21
Q

Comment multiple lines of code

A

/* . */

22
Q

keyword to define a variable

A

var

23
Q

assignment operator in JavaScripts

A

=

24
Q

Equals operator in JavaScript

A

==

25
Q

seven major math operators in JavaScript

A

+ - * / % ++ –

26
Q

use camelCase to name a variable

A

var myCamelCase

27
Q

create uninitialized variable

A

var myVariable;

28
Q

declare and initialize a variable

A

var myVariable = 5.2;

29
Q

add two numbers in JS

A

var myAdd = 5 + 6;

30
Q

multiply two numbers in JS

A

var myMult = 10 * 3;

31
Q

find the remainder of a number

A

var myRemain = 12%5;

32
Q

increment a number in JS

A
var i = 0;
i++;
33
Q

decrement a number in JS

A
var i = 0;
i--;
34
Q

value of uninitialized JS variable

A

“undefined”

35
Q

JavaScript is case sensitive

A

true

36
Q

addition of compound assignment

A

myVar+=5;

37
Q

subtraction of compound assignment

A

myVar-=5;

38
Q

compound assignment multiplication

A

myVar*=5;

39
Q

compound assignment of division

A

myVar/=5;