A numeric variable that represents integer values
What is an int/integer variable?
This code does ______
class_ = input("Hi what class are you taking? ")
print("Your class is: " + class_)
What is take print what you tell it or find out what class you're in?
Phone programmed with IOS.
what is an iPhone?
Coding language used to code most websites
What is HTML?
This number is commonly associated with true in most coding languages
what is 1?
THE DOUBLE
A numeric variable that represents decimal values
What is a double variable?
This Java code is used for _____ names you put in.
Scanner name = new Scanner (System.in);
System.out.println("Enter your name");
String name = input.nextLine();
System.out.println("Your name is :+name);
what is printing/displaying?
Linux based Operating System used in most phones developed by google.
What is Android
Minecraft is Programmed with this language
What is Java
This number is commonly associated with false in most coding languages
What is 0?
A variable that represents a single character
What is a char variable?
This code lets you replicate _____ basic board game object
import random
import time
minimum = 1
maximum = 6
roll_again = True
while roll_again:
print("Rolling dice .... ")
time.sleep (random.randint (1,4))
result = random.randint(minimum, maximum)
print(result)
roll_again = False
What is a d6 or dice?
Most common Pc Operating System
What is Windows?
Beginner programming language named after a snake
What is Python?
This language is based off of ones and zeros
What is binary?
A variable that represents true and false values
What is a boolean variable?
This GML code does ___
state = PlayerStateFree;
stateAttack = AttackSlash;
hitByAttack = -1;
lastState = state;
collisionMap = layer_tilemap_get_id(layer_get_id("Col"));
image_speed = 0;
hSpeed = 0;
vSpeed = 0;
speedWalk = 2.0;
speedRoll = 3.3;
distanceRoll = 52;
distanceBonk = 40;
distanceBonkHeight = 12;
speedBonk = 1.5;
z = 0;
spriteRoll = s_player_roll;
spriteRun = s_player_run;
spriteIdle = s_player;
localFrame = 0;
What is create or define variables?
This device uses physical switches to detect input on you computer
What is a mechanical keyboard
Popular games Player Unknown Battlegrounds and Fortnite where made with this engine
What is Unreal Engine/Script?
This variable is based of these two numbers
What is Boolean?
An input variable that frequently undergoes polymorphism
What is a Scanner variable?
This code looks for _____ geometrical value.
Scanner input = new Scanner(System.in);
System.out.println("Enter length");
double length = input.nextDouble();
System.out.println("Enter width");
double width = input.nextDouble();
System.out.println("The _____ is: "+ (length*width));
What is area?
Language used for programming devices with ______ boards
What is arduino?
Games Rivals of Aether and UnderTale where made with this engine
What is Game Maker Studio?
These letters are written on the programming merit badge in binary
What is BSA?