ICT

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/16

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 10:35 AM on 10/14/24
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

17 Terms

1
New cards

Keywords

Reserved words in programming that cannot be used as identifiers and are always lowercase.

2
New cards

Identifiers

User-defined names for methods, variables, constants, and classes that start with a letter, underscore, or dollar sign.

3
New cards

Data Types

Two sets in Java, including primitive and reference (non-primitive) types.

4
New cards

String

A reference data type in Java that stores a sequence of characters.

5
New cards

Variables

Identifiers whose values can be changed, defined with the syntax ` ;`.

6
New cards

Constants

Identifiers whose values never change once declared, defined with the syntax `final = ;`.

7
New cards

Casting

The process of assigning a value of one type to a variable of another type.

8
New cards

Operators

Symbols that perform logical or mathematical functions on operands such as variables, constants, and objects.

9
New cards

Unary Operators

Operators that require only one operand and change its value without using the assignment operator.

10
New cards

Binary Operators

Operators that require two operands, such as addition (+) and multiplication (*).

11
New cards

Arithmetic Operators

Operators for performing basic mathematical operations, including +, -, *, /, and %.

12
New cards

Shortcut/Assignment Operators

Operators that combine assignment with arithmetic operations, such as += and -=.

13
New cards

Comparison/Relational Operators

Binary operators that evaluate the relationship between two operands, returning true or false.

14
New cards

Conditional/Logical Operators

Operators that return a Boolean value based on logical conditions.

15
New cards

Truth Tables

Tables that demonstrate the result of logical operations.

16
New cards

Precedence

The order in which operators are executed in an expression, following the MDAS rule.

17
New cards

Associativity

The order in which operators of the same precedence are performed, either left to right or right to left.