SeniorSide Flashcards
What are the three great virtues of a programmer?
Laziness, Impatience, Hubris
Name at least one use case for each of the commands listed in this exercise.
Cat- print contents of something
Ls- see the contents of current directory
Pwd- see the path of where you are
Echo- command line version of console.log
Touch- if touch a file that doesn’t exist then it gets created. Otherwise, its access time gets updated to right now
Mkdir- make new directory
Mv- renaming files or moving files
Rm- deleting or remove files, but if directory then use -r
Cp- copy a file
What is a GUI?
“gooey” graphical user interface. Ex. Finder in mac is a GUI for manipulating file system or file explorer in windows
What is a CLI?
Command line interface
What is Array.prototype.filter useful for?
creates a new array while excluding certain items
What is Array.prototype.map useful for?
creates a new array with transformed array elements
What is Array.prototype.reduce useful for?
combines the items of array into a single thing
What is Node.js?
A program that allows Javascript to be run outside of a web browser
What can Node.js be used for?
It is commonly used to build back ends for Web applications, command-line programs, or any kind of automation that developers wish to perform.
What is a REPL?
A read–eval–print loop (REPL), also termed an interactive toplevel or language shell, is a simple, interactive computer programming environment that takes single user inputs (i.e., single expressions), evaluates (executes) them, and returns the result to the user; a program written in a REPL environment is executed piecewise.
When was Node.js created?
2009
What back end languages have you heard of?
node.js, Python, PHP, Ruby
What is a computer process?
a process is the instance of a computer program that is being executed by one or many threads. It contains the program code and its activity. Depending on the operating system (OS), a process may be made up of multiple threads of execution that execute instructions concurrently.[1][2]
While a computer program is a passive collection of instructions, a process is the actual execution of those instructions. Several processes may be associated with the same program; for example, opening up several instances of the same program often results in more than one process being executed.
Roughly how many computer processes are running on your host operating system (Task Manager or Activity Monitor)?
a lot, about 470 when i checked
Why should a full stack Web developer know that computer processes exist?
Because their job is to make processes talk to each other and computer applications are made of multiple processes
You will create a client (browser application) and own server on same computer
What is the process object in a Node.js program?
Process object is global (accessible everywhere without declaring it) and provides information about, and control over, the current Node.js process
How do you access the process object in a Node.js program?
use the process keyword
What is the data type of process.argv in Node.js?
array of strings
What is the JavaScript Event Loop?
Tool for observing when call stack is empty so it can move item from task queue to call stack (JavaScript has a concurrency model based on an event loop, which is responsible for executing the code, collecting and processing events, and executing queued sub-tasks. This model is quite different from models in other languages like C and Java.
What is different between “blocking” and “non-blocking” with respect to how code is executed?
Blocking is when the execution of additional JavaScript in the Node.js process must wait until a non-JavaScript operation completes. This happens because the event loop is unable to continue running JavaScript while a blocking operation is occurring.
Blocking methods execute synchronously and non-blocking methods execute asynchronously.
Blocking code is code executing on the call stack right now and non-blocking is code on the callback queue
What is a JavaScript module?
a javascript file
What values are passed into a Node.js module’s local scope?
exports, require, module, __filename, __dirname
Give two examples of truly global variables in a Node.js program.
process, clearInterval
What is the purpose of module.exports in a Node.js module?
to provide functionality to other modules
How do you import functionality into a Node.js module from another Node.js module?
Use require function and pass in path to file
What is a directory?
A folder that lists other files
What is a relative file path?
starts with ./ or leave it off
What is an absolute file path?
The full path from the root of file system
What module does Node.js include for manipulating the file system?
fs
What method is available in the Node.js fs module for writing data to a file?
writeFile
Are file operations using the fs module synchronous or asynchronous?
both
writefile sync is blocking so is syncrhnous
whereas writeFile is asynch
What is JSON?
javascript object notation-data interchange format
What are serialization and deserialization and why are they useful?
Serialization is the process of turning an object in memory into a stream of bytes so you can do stuff like store it on disk or send it over the network.
Deserialization is the reverse process: turning a stream of bytes into an object in memory.
Serialization is the process of converting an object into a stream of bytes to store the object or transmit it to memory, a database, or a file. Its main purpose is to save the state of an object in order to be able to recreate it when needed. The reverse process is called deserialization.
How to you serialize data into a JSON string using JavaScript?
JSON.stringify
How do you deserialize a JSON string using JavaScript?
JSON.parse
What is NPM?
Node package manager- npm consists of three distinct components:
• the website
• the Command Line Interface (CLI)
• the registry
What is a package in npm?
A file or directory that is described by a package.json file
How can you create a package.json with npm?
npm init or npm init –yes
What is a dependency and how to you add one to a package?
Something that your application requires and just use npm install
What happens when you add a dependency to a package with npm?
Installs files inside the node_modules folder of your current directory
What is a client?
and service requesters, called clients
What is a server?
providers of a resource or service, called servers,
Which HTTP method does a browser issue to a web server when you visit a URL?
GET
What is the format of an HTTP request message?
Starting line with method and target, headers, and body
What is the format of an HTTP response message?
Status line, headers, and body
How do you add express to your package dependencies?
npm installing it
What Express application method binds the server to a network PORT?
.listen
How do you register a middleware with an Express application?
Use method and passing in a callback function with two parameters req and res
Which objects does an Express application pass to your middleware to manage the request/response lifecycle of the server?
request object, response object, and next function call
What is the Content-Type header of HTTP requests and responses used for?
The Content-Type entity header is used to indicate the media type of the resource.
In responses, a Content-Type header tells the client what the content type of the returned content actually is.
What does express.static() return?
function
What is the local __dirname variable in a Node.js module?
Directory that the file itself is in
What does the join() method of Node’s path module do?
Concatenates all the arguments into one string while adding backslashes
What is the appropriate Content-Type header for requests and responses that contain JSON in their bodies?
application/json
What does the express.json() middleware do and when would you need it?
middleware that parses and body param in the request object as a JSON object, When the client sends data and server receives the data as JSON
What is the significance of an HTTP request’s method?
Its just semantics
What is Webpack?
Webpack is an open-source JavaScript module bundler. It is made primarily for JavaScript, but it can transform front-end assets like HTML, CSS, and images if the corresponding loaders are included. webpack takes modules with dependencies and generates static assets representing those modules
How do you add a devDependency to a package?
npm install package –save-dev
What is an NPM script?
npm scripts are, well, scripts. We use scripts to automate repetitive tasks. is literally a command line command inside of package json
How do you execute Webpack with npm run?
npm install build (or any other command inside script tag, it’s arbitrary)
What is an ES6 module and how is it different from a CommonJS module?
have import and export vs require and module.export
browsers can use es6 modules but not commonJS
What kind of modules can Webpack support?
supports a ton of module types
What is React?
React is an open-source JavaScript library for building user interfaces.
What is a React element?
It is an object. using JS objects to describe DOM elements
How do you mount a React element to the DOM?
Render method of the reactDOM
What is Babel?
Babel is a JavaScript compiler
Babel is a toolchain that is mainly used to convert ECMAScript 2015+ code into a backwards compatible version of JavaScript in current and older browsers or environments.
What is a Plug-in?
software component that adds extra functionality to a computer program. an enhancement
What is a Webpack loader?
Loaders are transformations that are applied to the source code of a module. They allow you to pre-process files as you import or “load” them.
Webpack can apply loaders to files
How can you make Babel and Webpack work together?
In webpack.config.js add the loader for babel-loader
What is JSX?
Javascript syntax extension that allows you to write HTML in javascript (React)
Why must the React object be imported when authoring JSX in a module?
jsx tags compiles into React.createElement. Ex. The h1 tag is actually a function call
How can you make Webpack and Babel work together to convert JSX into valid JavaScript?
Add the plugin transform react and also the babel-loader
What is a React component?
Conceptually, components are like JavaScript functions. They accept arbitrary inputs (called “props”) and return React elements describing what should appear on the screen. function that returns react elements
How do you define a function component in React?
like a regular function but with a capital letter function otherwise interpreted as HTML tag
How do you mount a component to the DOM?
Render method of react dom object but make sure to have angle brackets around react element like < element />
What are props in React?
Is an object that are properties of React Element
How do you pass props to a component?
Prop name with equal then value
How do you write JavaScript expressions in JSX?
curly braces
What Array method is commonly used to create a list of React elements?
map
What is the best value to use as a “key” prop when rendering lists?
string that uniquely identifies item (most commonly to use ids from data)
How do you create “class” component in React?
extend react.component and must have at least a render method
How do you access props in a class component?
use this.props
What is the purpose of state in React?
Keep track of things that change over time
How to you pass an event handler to a React element?
pass in event handler as a prop as a function
What are controlled components and how do you work with them?
When you change (onChange), then notify us so then update state and then passes back in the new value. So input element has value with state and onChange event
What are the three states a Promise can be in?
Pending, fulfilled, and rejected
How do you handle the fulfillment of a Promise?
.then method and pass in a callback function
How do you handle the rejection of a Promise?
.catch method and pass in callback function or put in a second callback to the then method
What does fetch() return?
promise object that returns a response
What is the default request method used by fetch()?
GET
How do you specify the request method (GET, POST, etc.) when calling fetch?
Second argument of fetch as an object with method key
When does React call a component’s componentDidMount method?
After component is mounted on DOM (after first render runs)
Name three React.Component lifecycle methods.
Constructor, render, componentdidmount
How do you pass data to a child component?
props
What is PostgreSQL and what are some alternative relational databases?
A relational database. sqlite, mySQL
What are some advantages of learning a relational database?
Support good guarantees about data integrity and widely used.
What is one way to see if PostgreSQL is running?
Sudo service postgresql status or check top
What is a database schema?
A collection of tables. A schema defines how the data in a relational database should be organized. In relational databases, you typically have to define your schema up front and the database server will make sure that any data being written to the database conforms to that schema.
What is a table?
a list of rows each having the same set of attributes
What is a row?
A homogenous set of attributes. each row has same attributes
What is SQL and how is it different from languages like JavaScript?
declarative programming (issue description and it figures out what to do) language like html and css. JS is imperative(issue instructions)
How do you retrieve specific columns from a database table?
Select keyword followed by a comma separated list of the identifier in double quotes
How do you filter rows based on some specific criteria?
Where clause and can use comparative operators like = < > !=
What are the benefits of formatting your SQL?
easier to read and change
What are four comparison operators that can be used in a where clause?
operators like = < > !=
How do you limit the number of rows returned in a result set?
Limit clause
How do you retrieve all columns from a database table?
Select *
How do you control the sort order of a result set?
Order by clause
How do you add a row to a SQL table?
insert into “table name” () values ()
What is a tuple?
list of values
How do you add multiple rows to a SQL table at once?
insert into () values (), (), ()
How to you get back the row being inserted into a table without a separate select statement?
returning *;
How do you update rows in a database table?
update “table” set “name”=’key’ where “id”=’id’
Why is it important to include a where clause in your update statements?
will update everything
How do you delete rows from a database table?
delete from “table name” where
How do you accidentally delete all rows from a table?
delete from “table name”
What is a foreign key?
data attribute that two tables have the same value of . but dont need to be same column name (so dont have to do something like [using (“supplierId”)]. but can do join “suppliers” on “products”.”supplierId” = “suppliers”.”id”
How do you join two SQL tables?
select from join using
How do you temporarily rename columns or tables in a SQL statement?
Use the as alias
What are some examples of aggregate functions?
sum, count, max, min
What is the purpose of a group by clause?
Instead, you want to separate rows into groups and perform aggregate functions on those groups of rows. This is done with a group by clause.