What programming language use this?
COMP SCI vocabulary
Java Syntax
100

System.out.println("");

What is Java

100

A list or collection of similar things.

What is array.

100

System.out.printf("%.2f", variable);

What is set the decimal place by two places?

200

print("Hello World!")

What is Python

200

A self-contained set of instructions for performing a specific task within a computer program.

What is a Function

200

String name = "Your name";

What is assigning a String variable?

300

int main() {
  cout << "Hello World!";
  return 0;

What is C++

300

Errors where the program runs, but not as intended by the programmer.

What is a semantic error?

300

Scanner userInput = new Scanner (System.in);

What is importing the Scanner object?

400

A tag-based programming language designed to create websites.

What is HTML?

400

A programming construct that allows for a block of code to be executed continuously until a condition is met.

What is Loop

400

System.out.print("My name is " + name); 

What is a concatenation? 

500

#include <stdio.h>

int main() {
  printf("Hello World!");
  return 0;
}

What is C?

500

How a computer takes in information from the world. 

What is Input

500

10 % 5

What is modulus division?

M
e
n
u