Web Development

This class was created by Brainscape user Eugene Park. Visit their profile to learn more about the creator.

Decks in this class (95)

HTML SKELETON
Where do you put non visible cont...,
Where do you put visible content ...,
Where do the and tags go in a val...
4  cards
HTML SYNTAX
Give five examples of html elemen...,
What is the purpose of html attri...,
Give an example of an html entity...
3  cards
HTML BLOCK AND INLINE
How do block level elements affec...,
How do inline elements affect the...,
What are the default width and he...
4  cards
HTML LISTS
What is the difference between an...,
Is an html list a block element o...
2  cards
HTML LINKS
What html tag is used to link to ...,
What is an absolute url,
What is a relative url
3  cards
HTML RELATIVE LINKS
How do you indicate the relative ...,
How do you indicate the relative ...,
How do you indicate the relative ...
4  cards
HTML FORMS
What is the purpose of an html fo...,
Give five examples of form contro...,
Give three examples of type attri...
4  cards
HTML TABLES
What are the six primary html ele...,
What purpose do the thead and tbo...,
Give two examples of data that wo...
3  cards
CSS SYNTAX
What are the names of the individ...,
In css how do you select elements...,
In css how do you select elements...
4  cards
CSS COLORS
Name three different types of val...
1  cards
CSS BOX MODEL
What css properties make up the b...,
Which css property pushes boxes a...,
Which css property add space betw...
3  cards
CSS PSEUDO CLASS
What is a pseudo class,
What are css pseudo classes usefu...
2  cards
CSS FONTS
Name two types of units that can ...,
What css property controls the fo...
2  cards
CSS FLEXBOX
What is the default flex directio...,
What is the default flex wrap of ...
2  cards
CSS LAYOUT CLASSES
Why do two div elements verticall...,
What is the default flex directio...
2  cards
CSS POSITIONING
What is the default value for the...,
How does setting position relativ...,
How does setting position relativ...
7  cards
JS PRIMITIVES & VARIABLES
What is the purpose of variables,
How do you declare a variable,
How do you initialize assign a va...
13  cards
JS OPERATORS & EXPRESSIONS
What data type is returned by an ...,
What is string concatenation,
What purpose s does the plus oper...
5  cards
JS OBJECTS
What are objects used for,
What are object properties,
Describe object literal notation
5  cards
JS ARRAYS
What are arrays used for,
Describe array literal notation,
How are arrays different from pla...
6  cards
JS FUNCTIONS
What is a function in javascript,
Describe the parts of a function ...,
Describe the parts of a function ...
8  cards
JS METHODS
Why do we log things to the console,
What is a method,
How is a method different from an...
14  cards
JS IF
Give 6 examples of comparison ope...,
What data type do comparison expr...,
What is the purpose of an if stat...
7  cards
JS LOOPS
What is the purpose of a loop,
What is the purpose of a conditio...,
What does iteration mean in the c...
10  cards
CSS CASCADE
What are the four components of t...,
What does the term source order m...,
How is it possible for the styles...
5  cards
CSS TRANSFORMS
What does the transform property do,
Give four examples of css transfo...
2  cards
CSS TRANSITIONS
The transition property is shorth...
1  cards
DOM QUERYING
Why do we log things to the console,
What is a model,
Which document is being referred ...
12  cards
DOM EVENTS
What is the purpose of events and...,
Are all possible parameters requi...,
What method of element objects le...
7  cards
DOM MANIPULATION
What is the classname property of...,
How do you update the css class a...,
What is the textcontent property ...
7  cards
JS Forms
What event is fired when a user c...,
What does the eventpreventdefault...,
What does submitting a form witho...
10  cards
DOM CREATION
Does the documentcreateelement me...,
How do you add an element as a ch...,
What do you pass as the arguments...
7  cards
CSS MEDIA QUERIES
Give two examples of media featur...,
Which html meta tag is used in mo...
2  cards
DOM EVENT DELEGATION
What is the eventtarget,
Why is it possible to listen for ...,
What dom element property tells y...
6  cards
JS VIEW SWAPPING
What is the eventtarget,
What is the affect of setting an ...,
What does the elementmatches meth...
7  cards
CSS RESPONSIVE LAYOUT
What is a breakpoint in responsiv...,
What is the advantage of using a ...,
If you introduce css rules for a ...
3  cards
JS JSON
What is json,
What are serialization and deseri...,
How do you serialize a data struc...
4  cards
JS LOCAL STORAGE
How do you store data in localsto...,
How do you retrieve data from loc...,
What data type can localstorage s...
4  cards
JS CUSTOM METHODS
What is a method,
How can you tell the difference b...,
How is a method different from an...
7  cards
JS THIS
What is this in javascript,
What does it mean to say that thi...,
When is the value of this determi...
5  cards
JS PROTOTYPES
What kind of inheritance does the...,
What is a prototype in javascript,
How is it possible to call method...
4  cards
JS CONSTRUCTORS
What does the new operator do,
What property of javascript funct...,
What does the instanceof operator do
3  cards
JS TIMERS
What is a callback function,
Besides adding an event listener ...,
How can you set up a function to ...
5  cards
HTTP MESSAGES
What is a client,
What is a server,
Which http method does a browser ...
7  cards
JS AJAX
What is ajax,
What does the ajax acronym stand for,
Which object is built into the br...
5  cards
ES6 CONST LET
What is a code block what are som...,
What does block scope mean,
What is the scope of a variable d...
6  cards
ES6 TEMPLATE LITERALS
What is the syntax for writing a ...,
What is string interpolation
2  cards
ES6 DESTRUCTURING
What is destructuring conceptually,
Let variable,
What is the syntax for array dest...
4  cards
ES6 ARROW FUNCTIONS
What is the syntax for defining a...,
When an arrow function s body is ...,
How is the value of this determin...
4  cards
COMMAND LINE BASICS
What is a cli,
What is a gui,
Man
13  cards
NODE JS
What is nodejs,
What can nodejs be used for,
What is a repl
5  cards
NODE PROCESS ARGV
What is the process object in a n...,
How do you access the process obj...,
What is the data type of processa...
3  cards
NODE MODULE SYSTEM
What is a javascript module,
What values are passed into a nod...,
Give two examples of truly global...
3  cards
NODE REQUIRE
What is the purpose of moduleexpo...,
How do you import functionality i...
2  cards
EVENT LOOP
What is the javascript event loop,
What is different between blockin...
2  cards
NODE FS READFILE
What is a directory,
What is a relative file path,
What is an absolute file path
5  cards
NODE FS WRITEFILE
What method is available in the n...
1  cards
HTTP MESSAGES RECAP
What is a client,
What is a server,
Which http method does a browser ...
7  cards
NPM INTRO
What is npm,
What is a package,
How can you create a packagejson ...
5  cards
EXPRESS INTRO
How do you add express to your pa...,
What express application method s...
2  cards
EXPRESS HELLO WORLD
How do you mount a middleware wit...,
Which objects does an express app...
2  cards
EXPRESS GET JSON
What is the appropriate content t...
1  cards
EXPRESS DELETE
What is the significance of an ht...
1  cards
EXPRESS POST JSON
What does the expressjson middlew...
1  cards
POSTGRES INTRO
What is postgresql and what are s...,
What are some advantages of learn...,
What is one way to see if postgre...
3  cards
POSTGRES DATABASE
What is a database schema,
What is a table,
What is a row
3  cards
SQL SELECT
What is sql and how is it differe...,
How do you retrieve specific colu...,
How do you filter rows based on s...
8  cards
SQL INSERT
How do you add a row to a sql table,
What is a tuple,
How do you add multiple rows to a...
4  cards
SQL UPDATE
How do you update rows in a datab...,
Why is it important to include a ...
2  cards
SQL DELETE
How do you delete rows from a dat...,
How do you accidentally delete al...
2  cards
SQL JOIN
What is a foreign key,
How do you join two sql tables,
How do you temporarily rename col...
3  cards
SQL AGGREGATES
What are some examples of aggrega...
1  cards
ES6 PROMISES
What are the three states a promi...,
How do you handle the fulfillment...,
How do you handle the rejection o...
3  cards
ARRAY FILTER
What is arrayprototypefilter usef...
1  cards
ARRAY MAP
What is arrayprototypemap useful for
1  cards
ARRAY REDUCE
What is arrayprototypereduce usef...
1  cards
WEBPACK INTRO
What is webpack,
How do you add a devdependency to...,
What is an npm script
4  cards
ES6 CLASSES
What is syntactic sugar,
What is the typeof an es6 class,
Describe es6 class syntax
4  cards
ES6 MODULES
How are es modules different from...,
What kind of modules can webpack ...
2  cards
REACT ELEMENTS
What is react,
What is a react element,
How do you mount a react element ...
3  cards
BABEL INTRO
What is babel,
What is a plug in,
What is a webpack loader
4  cards
REACT JSX
What is jsx,
Why must the react object be impo...,
How can you make webpack and babe...
3  cards
REACT FUNCTION COMPONENTS
What is a react component,
How do you define a function comp...,
How do you mount a component to t...
3  cards
REACT PROPS AND EXPRESSIONS
What are props in react,
How do you pass props to a component,
How do you write javascript expre...
3  cards
REACT CLASS COMPONENTS
How do you create class component...,
How do you access props in a clas...
2  cards
REACT EVENTS AND STATE
What is the purpose of state in r...,
How to you pass an event handler ...
2  cards
REACT FORM CONTROLS
What are controlled components,
What two props must you pass to a...
2  cards
REACT RENDERING LISTS
What array method is commonly use...,
What is the best value to use as ...
2  cards
EXPRESS STATIC
What does expressstatic return,
What is the local __dirname varia...,
What does the join method of node...
3  cards
FETCH
What does fetch return,
What is the default request metho...,
How do you specify the request me...
3  cards
FETCH IN REACT
When does react call a component ...,
Name three reactcomponent lifecyc...,
How do you pass data to a child c...
3  cards
DATA STRUCTURES STACKS
What does the acronym lifo mean,
What methods are available on a s...,
What must you do to access the va...
3  cards
DATA STRUCTURES QUEUES
What does the acronym fifo mean,
What methods are available on a q...,
What must you do to access the va...
3  cards
DATA STRUCTURES LINKED LISTS
How are linked lists different fr...,
How would you access an arbitrary...
2  cards
JAVASCRIPT CLOSURES
What must the return value of myf...,
What does this code do const wrap...,
In javascript when is a function ...
4  cards

More about
Web Development

  • Class purpose General learning

Learn faster with Brainscape on your web, iPhone, or Android device. Study Eugene Park's Web Development flashcards now!

How studying works.

Brainscape's adaptive web mobile flashcards system will drill you on your weaknesses, using a pattern guaranteed to help you learn more in less time.

Add your own flashcards.

Either request "Edit" access from the author, or make a copy of the class to edit as your own. And you can always create a totally new class of your own too!

What's Brainscape anyway?

Brainscape is a digital flashcards platform where you can find, create, share, and study any subject on the planet.

We use an adaptive study algorithm that is proven to help you learn faster and remember longer....

Looking for something else?

V School Web Development
  • 8 decks
  • 237 flashcards
  • 143 learners
Decks: Html Css, Pure Js, Js Methods, And more!
Web Dev
  • 18 decks
  • 434 flashcards
  • 9 learners
Decks: Html, Css, Javascript Fundamentals, And more!
Human Growth and Development
  • 27 decks
  • 1041 flashcards
  • 310 learners
Decks: Ch 1 Freud Erickson And Piaget, Ch 1 The Lifespan Perspective, Ch 2 Biological Beginnings, And more!
Make Flashcards