Questions and Answers
Problems and Solutions
Quotes help make search much faster. Example: "Practice Makes Perfect"
Thursday, January 24, 2013
REST Constraints & Requirements
# 1. HTTP is a protocol that connects clients and ______.
answer1 = 'servers'
# 2. The four HTTP methods are GET, POST, ___, and DELETE.
answer2 = 'PUT'
# 3. A ___ error means the server goofed up. (200, 300, 400, or 500)
answer3 = '500'
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
This is an example of
scrolling text
using Javascript.
Popular Posts
What hotkeys can you use in a Python shell to repeat the previous command you typed?
Answer: Alt - p p stands for previous. If you keep pressing Alt - p, you will continue cycling back through commands you typed before. I...
Codecademy: "Unless"
#sample solution hungry = false unless hungry puts "I'm writing Ruby programs!" else puts "Time to eat!...
Codecademy: "Function and Control Flow"
//sample solution def isEven(x): if(x % 2 == 0): return "yep" else: return "nope"
Codecademy: Structure the Webpage
<!--sample solution--> <html> <head> <title>Week 13 Project</title> </head> ...
Codecademy: Codeyear Nesting conditional statements
//sample solution var yourName = "Pam"; var gender = "female"; var result; //Line 10 starts an if statement //Ne...
Make a Website: HTML Wrap with a div
<!-- Sample solution to index.html --> <!DOCTYPE html> <html> <body> <div class="nav"> ...
Codeschool Sample Solution Selecting Direct Children
$("#tours > li")
Codecademy Sample Solution: Codeyear Make it Respond
// sample solution to script.js $(document).ready(function() { $("ul.tabs li").click(function(){ var pageID = $(t...
Codecademy Sample Solution: In Case of Many Options
puts "What's your favorite language?" language = gets.chomp case language when "Ruby" then puts "Ruby is ...
Codecademy Joining Tables in R Concatenate Data Frames 10/11
#Sample Solution --- title: "Joining Tables in R" output: html_notebook --- ```{r message = FALSE} # load packages library...
No comments:
Post a Comment