• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/6

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

6 Cards in this Set

  • Front
  • Back

What does it mean that HTTP is a stateless protocol?

It treats each request as an independent transaction that is unable to use information from any previous requests.

What is a session?

A session is a is a semi-permanent connection between two computers (such as a client computer running a web browser and a server running Rails).

What are cookies?

Cookies are small pieces of text placed on the user’s browser.




Because cookies persist from one page to the next, they can store information (such as a user id) that can be used by the application to retrieve the logged-in user from the database.

What does CRUD stand for?

Create, read, update, and delete.

What does REST stand for?

Representational state transfer.

What command allows you to see a complete list of the routes for our application

bundle exec rake routes