Please enable JavaScript to use CodeHS

IB HL Glossary

Flashcards

Course:

Module:

Lesson:

Search:

String Java

String is a Java type that represents a string of characters (text)

String Literals Java

A sequence of characters enclosed in double quotations “ “.

Java Main Skeleton Java

Includes the class and main method arguments. Must include both in order to run successfully.

public static void main(String args[]) Java

Main method. Code to be run must be placed within the main method.

public class MyProgram Java

Class. The name of MyProgram must match the name of the file.

System.out.print Java

Displays output on the computer monitor.

System.out.println Java

Displays output on the computer monitor and moves cursor to next line.