• 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/11

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;

11 Cards in this Set

  • Front
  • Back

API

Application Programming Interface. The messenger between user and the place where your request is being processed. Ex: the site booking.com is the middleman(API) between you and the database of the airlines. The API gets the answer to your request and returns it to you

IDE

Integrated Development Environment. Software that contains a compiler, interpreter or both. Ex: Eclipse, NetBeans.

JDK

Java Development Kit. Has multiple programming tools for the Java programming language.

Parsing

Scanning input data, usually text, and building a data structure with it. Ex: taking an excelsheet and turn the text and numbers etc. into data that the computer can use and sort.

GUI

Graphical User Interface. A GUI let's you communicate with a computer with the use of click buttons instead of text and command lines. It's more user friendly

List

Abstract data type that allows you to store multiple objects

New

Operator dat geheugen reserveerd. Ex: student s = new Student();

Inside out object construction

Als een constructor wordt uitgevoerd verwijst de code van subclass naar superclass naar indirect superclass. Dan initialiseert Java alles vandaaruit naar de subclass. Ex Student() - Person() - Object(). Object() - Person() - Student()

Compiler rules

Overloading

Binnen de klasse zijn er meerdere methodes met dezelfde naam maar met verschillende parameters. Ex: public Student() , public Student(String n).

Overriding

Subclass heeft dezelfde methodenaam en parameters als de superclass