Section 1

Preview this deck

String - String

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (35)

Section 1

(35 cards)

String - String

Front

Text inside a pair of quotation marks " ". Used to store multiple characters or words.

Back

Character - char

Front

Used to store a single character

Back

&&

Front

What is the symbol to express the boolean operator and?

Back

Curly Braces

Front

Used to enclose a section of code.

Back

Comment

Front

Way to enter a note into the program code for the programmer. Does not get read by the program.

Back

Method

Front

The actual program. Can be a big program or just a small program. Can also be called from another program.

Back

random(10,20);

Front

What is the line of code that will produce a random number between 10 and 19.99999?

Back

point();

Front

Which object gets its color from stroke();

Back

IDE (Integrated Development Environment)

Front

A text editor and compiler together in one bundle.

Back

keyCode

Front

Which system variable would be used to detect the keyboard arrows (UP, DOWN, LEFT, RIGHT)?

Back

||

Front

What is the symbol to express the boolean operator or?

Back

Boolean - boolean

Front

True or False value.

Back

TRUE

Front

The system variable keyPressed is a boolean datatype.

Back

Syntax

Front

Rules and grammar for writing code in the program.

Back

Keywords

Front

Reserved words in Java. Words that already have a meaning in Java and can't be used as names.

Back

primitives

Front

Which object gets its color from fill();

Back

false

Front

The system variable key is a boolean datatype.

Back

Variable

Front

Container for storing information.

Back

Software

Front

Programs and other operating information used by a computer.

Back

size(200,400);

Front

The line of code that will define a display window that is 200 pixels wide and 400 pixels tall.

Back

Integer - Int

Front

Whole number with no decimal point.

Back

fill(255,0,0);

Front

Which line of code would color the rectangle red.

Back

delay(5000);

Front

What is the line of code that would cause the output to display once every 5 seconds?

Back

Execute

Front

Means to run a program.

Back

Code

Front

The actual text of the program.

Back

Java

Front

The name of a programming language.

Back

Compiler

Front

Used to translate programming language instructions to byte instructions for the CPU.

Back

Semicolon

Front

Used to end a statement.

Back

textSize(50);

Front

Which line of code would change the font size to 50.

Back

Programming Language

Front

A special language used to develop software or other sets of instructions for computers to execute.

Back

Declaration

Front

Means to create something in Java. Ex: Declare a class or variable.

Back

Statement

Front

A complete line of instruction.

Back

Class

Front

A container for the program or an object.

Back

Whitespace

Front

Any character you type, but doesn't result in something you can see. Ex: space, tab, enter

Back

Float - float

Front

Real number or number with a decimal point.

Back