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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>My Europe Travel Wishlist</title> | |
| </head> | |
| <body> | |
| <h1>My Europe Travel Wishlist</h1> | |
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
| 1. Divide 588 by 2: | |
| 588 ÷ 2 = 294 (quotient), remainder = 0. | |
| The remainder (0) becomes the least significant bit (rightmost). | |
| 2. Divide the quotient (294) by 2: | |
| 294 ÷ 2 = 147 (quotient), remainder = 0. | |
| The remainder (0) is the next bit. | |
| 3. Divide the quotient (147) by 2: | |
| 147 ÷ 2 = 73 (quotient), remainder = 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
| 1. Divide 67 by 3: | |
| 67 ÷ 3 = 22 (quotient) with a remainder of 1. | |
| Record the remainder: 1. | |
| 2. Divide the quotient (22) by 3: | |
| 22 ÷ 3 = 7 (quotient) with a remainder of 1. | |
| Record the remainder: 1. | |
| 3. Divide the quotient (7) by 3: | |
| 7 ÷ 3 = 2 (quotient) with a remainder of 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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Webform with Validation</title> | |
| <style> | |
| body { | |
| font-family: Arial, sans-serif; | |
| margin: 20px; |
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
| #start by importing the Turtle library | |
| import turtle | |
| # Set up the screen | |
| screen = turtle.Screen() | |
| screen.title("Pong") | |
| screen.bgcolor("black") | |
| screen.setup(width=800, height=600) | |
| screen.tracer(0) |