The slowest family of tools.
What are wooden tools?
This game involves multiple minigames, and you can customize your character.
What is Roblox?
The minimum amount of players when there are 2 impostors.
What is 7?
My channel name.
What is Alexmm806?
What will these lines of code do?
PYTHON
variable = 5
if variable == 5:
print("The number is 5")
It will print "The number is 5"
The rarest ore in the game.
What is Diamond Ore?
This game involves pirates, and finding loot underground.
What is Sea of Thieves?
The minimum amount of players when there is 1 impostor.
What is 4?
My YouTube channel name
What is BookedGalaxy436 Gaming?
What will these lines of code do?
HTML
<!DOCTYPE html>
<html>
<body>
<h1>Welcome!</h1>
<p>HELLO THERE!!</p>
</body>
</html>
It will print "Welcome!" in big text, and it will print "HELLO THERE!!" on a new line, in small text.
The fastest combination of enchantments and effects for a pickaxe to mine
What is Haste 2 and Efficiency 5?
This game is a sandbox game made in 2011.
What is Minecraft?
The minimum amount of players when there are 3 impostors.
What is 9?
A Swedish hermit (hermit = someone that plays on the Hermitcraft server) that is building a tree as their base in Hermitcraft season 7.
Who is Iskall85?
What will these lines of code do?
JAVASCRIPT
function alert() {
alert("THIS IS AN ALERT FUNCTION!");
}
Nothing, because the alert() function is never called.
The rarest block in the game.
What is Ancient Debris?
What is Fortnite?
The 3 Among Us maps.
What are Polus, Mira HQ, and The Skeld?
The creator of the famous Minecraft Java Edition server, Hermitcraft.
Who is Xisumavoid?
What will these lines of code do?
JAVASCRIPT
var variable;
function variableFunction() {
variable = 7;
if (variable == 5) {
console.log("The number is 5");
} else {
console.log(`The number is ${number}`);
}
}
It will log "7" in the console.
This update was nicknamed the "Aquatic Update."
What is Minecraft 1.13?
What is Apex Legends?
What will these lines of code do?
PYTHON
boolean_var = True
if boolean_var:
print("IT IS FALSE!")
else:
PRINT("IT IS TRUE!")
It will print "IT IS FALSE."