• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/13

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

13 Cards in this Set

  • Front
  • Back
  • 3rd side (hint)

Software Development life cycle

Planning, implementation, testing, documentation, deployment, and maintenance

The steps to how a computer programer develops software

What is a high-level programming language

This language is designed to be easier for people to understand and use. Java is an example

What is a low level programming language

This language is closer to what a computer understands but still human readable

What is a machine programming language

The language a computer understands

What does a compiler do

Translate high-level languages to low-level and Machine level languages which the computer understands

These symbol for equal to in Java notation

==

The symbol for not equal to in Java notation

!=

The symbol for greater than in Java notation

>

The symbol for greater than or equal to in Java notation

>=

The symbol for less than in Java notation

<

The symbol for less than or equal to in Java notation

<=

The symbol for equal to, when comparing strings, in Java notation

.equals

Declaring a for Loop

for (int i = 0; i >= "number"; i++)