This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | ### GET https://www.w3.org/History/19921103-hypertext/hypertext/WWW/TheProject.html | |
| GET https://www.w3.org/History/19921103-hypertext/hypertext/WWW/TheProject.html | |
| ### GET https://http-practice.herokuapp.com/wilders?language=PHP&page=2 | |
| GET https://http-practice.herokuapp.com/wilders?language=PHP&page=2 | |
| ### POST https://http-practice.herokuapp.com/wilders | |
| POST https://http-practice.herokuapp.com/wilders | |
| Content-Type: application/x-www-form-urlencoded | |
| name=Mich%20Mich&language=PHP | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | function hello(name : string) { | |
| console.log("Hello " + name); | |
| } | |
| var firstName: string = "bob"; | |
| hello(firstName); | |
| hello(firstName + " marley"); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | class Person { | |
| name: string; | |
| age: number; | |
| constructor(name: string, age: number) { | |
| this.name = name; | |
| this.age = age; | |
| } | |
| tellMyName() { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | function hello(name : string): void { | |
| console.log("Hello " + name); | |
| } | |
| const firstName: string = "bob"; | |
| hello(firstName); | |
| hello(firstName + " marley"); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | class Senpai{ | |
| public static void main(String[] args){ | |
| System.out.println("Notice me Senpai"); | |
| } | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | public class CandyCount { | |
| public static void main(String[] args) { | |
| double money = 12.4; | |
| double price = 1.2; | |
| int candies = 0; | |
| if (money > 0 && price > 0) { | |
| while ((money - price) >= 0) { | |
| candies = candies +1; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | public class Variable { | |
| public static void main(String[] args) { | |
| String movieName = "Indiana Jones and the Last Crusade"; | |
| boolean haveSeen = true; | |
| int releasedDate = 1989; | |
| float movieRate = 8.2f; | |
| System.out.println(movieRate); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | public class Movies2 { | |
| public static void main(String[] args) { | |
| String [] movies = {"Indiana Jones and the Last Crusade", "Indiana Jones and the Temple of Doom", "Raiders of the Lost Ark"}; | |
| String [][] actorsMovies = | |
| {{"Sean Connery", "Denholm Elliott", "Harrison Ford" }, | |
| {"Harrison Ford", "Kate Capshaw", "Jonathan Ke Quan"}, | |
| {"Harrison Ford", "Karen Allen", "Paul Freeman"}}; | |
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | public class Decipherer { | |
| public static String transcription(String message){ | |
| int key = message.length()/2; | |
| String substring = message.substring (5, 5 + key); | |
| String replace = substring.replace ("@#?"," "); | |
| String reverseMessage = new StringBuilder(replace).reverse().toString(); | |
| return reverseMessage; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | mysql> SHOW TABLES; | |
| +-------------------------+ | |
| | Tables_in_wild_db_quest | | |
| +-------------------------+ | |
| | school | | |
| | wizard | | |
| +-------------------------+ | |
| 2 rows in set (0,00 sec) | |
| mysql> DESCRIBE wizard; | 
OlderNewer