Questions and Answers
Problems and Solutions
Quotes help make search much faster. Example: "Practice Makes Perfect"
Sunday, April 21, 2013
Codecademy Sample Solution: When To Use 'For'
<html>
<head>
<title>Solo For Loop!</title>
</head>
<body>
<p>
<?php
// Write your for loop below!
for( $i = 50; $i > 4; $i = $i - 5){
echo "<p>$i</p>";
}
?>
</p>
</body>
</html>
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
Codecademy Sample Solution: Codeyear Eliminating Unnecessary HTML
<style> p { margin: 0px; padding-left: 10%; padding-right: 10%; text-align: justify; border-style: dashed;...
Codeyear: Deal It Out
//sample solution // Card Constructor function Card(num1,num2) { //properties var suit = num1; var number = num2; //methods ...
How long do undisturbed fingerprints last in a crime scene?
Years
Codecademy: Codeyear Conditionals
//sample solution var gender = "female"; if (gender === "female") { result = true; } else { result = false; ...
Codeschool Cliffs of Value Modulus Sample Solution
Find an expression using two values and the modulus operator that results as 4 Answer: 32%7
#Codeschool Backbone.js Sample Solution to Define Render
var AppointmentView = Backbone.View.extend({ render: function() { var html = '<li>' + this.model.get('title')...
Codecademy > Learn Java > ArrayList: Manipulation Sample Solution
import java.util.ArrayList; public class Temperatures { public static void main(String[] args) { ArrayList<Integer> weeklyTem...
Codefights candles(candlesNumber, makeNew)
//sample solution function candles(candlesNumber, makeNew) { var newCandles=candlesNumber; var newlyBurnedCandles=0; var lef...
What is the area of a regular hendecagon (11-sided polygon)?
Type in the length of the side of a hendecagon: meters Compute
Codecademy Sample Solution: All On Your Own!
<!DOCTYPE html> <html> <head> <title>Your own do-while</title> <link type='text/css...
No comments:
Post a Comment