Section 1

Preview this deck

Languages within the same categories

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 (28)

Section 1

(28 cards)

Languages within the same categories

Front

are still going to vary widely

Back

Languages in different categories

Front

are going to be very differnt

Back

Expression

Front

made up of one or variables, operators, or method

Back

String Literal

Front

Can not be broken across two lines in a program

Back

If statements

Front

allows program to execute a certain statement or block

Back

Object

Front

An instance of some particular class

Back

Character Type

Front

char char letter (ex: A)

Back

Arithmetic Operators

Front

compute numeric results and make use of numeric operators

Back

The % operator

Front

returns the remainder

Back

+ operator uses

Front

Numeric Addition (i.e 5+10) Appending a numeric and string operation (i.e 5 + "years" = "5 years"

Back

Escape Sequence

Front

A sequence of code that represents a special character when used inside a string.

Back

Interger Types

Front

byte, short, int, long int (age = 19)

Back

How many primitive data types are in Java

Front

8

Back

What does an escape sequence begin with

Front

backslash

Back

Integer Values

Front

-1, 2, 3, 4

Back

String concentration operator

Front

+ appends one string to the end of another and can also append a number to a string (i.e "peanut butter" + "and jelly")

Back

Assignment Statement

Front

Changes value of variable

Back

Character Values

Front

"j" "P" "5"

Back

Division

Front

Two integers divided by each other will result in an integer (/)

Back

Boolean Type

Front

boolean boolean isCold = fake

Back

Variable

Front

A location in memory that holds a value

Back

Boolean Values

Front

(true, false)

Back

Floating Point Values

Front

- 5.6, 0.0, 2.4

Back

Categories for programming language

Front

machine languages assembly languages high level languages (Java, C++, Python)

Back

Programming language

Front

an artificial language designed for humans to express programs and have these programs translated into machine-executable form.

Back

Boolean values can be calculated

Front

using relational operators

Back

Operator Precedence

Front

Determines the order in which they are evaluated

Back

Floating point types

Front

float double double (avg = 94.8)

Back