System.out.println("");
What is Java
A list or collection of similar things.
What is array.
System.out.printf("%.2f", variable);
What is set the decimal place by two places?
print("Hello World!")
What is Python
A self-contained set of instructions for performing a specific task within a computer program.
What is a Function
String name = "Your name";
What is assigning a String variable?
int main() {
cout << "Hello World!";
return 0;
What is C++
Errors where the program runs, but not as intended by the programmer.
What is a semantic error?
A tag-based programming language designed to create websites.
What is HTML?
A programming construct that allows for a block of code to be executed continuously until a condition is met.
What is Loop
System.out.print("My name is " + name);
What is a concatenation?
#include <stdio.h>
int main() {
printf("Hello World!");
return 0;
}
What is C?
How a computer takes in information from the world.
What is Input
10 % 5
What is modulus division?