oop quizhahaa

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall with Kai
GameKnowt Play
New
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/37

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

38 Terms

1
New cards

Bytecodes

Intermediate codes that are written in hexadecimal code byte by byte

2
New cards

Integrated Development Environment (IDE)

Environment that allows users to design the interface, write program codes, compile the program, and test the program

3
New cards

Interpretation

Process of translating the code into machine language for execution

4
New cards

Java API

Large collection of ready-made software components grouped into libraries of related classes and interfaces

5
New cards

Java API Documentation

Contains the list of Java API and also information on how to use them

6
New cards

Java Card

A technology that allows small Java-based applications such as applets to be run securely on smart cards

7
New cards

Java Development Kit (JDK)

Software package provided by JavaSoft that applies a set of basic tools needed to write, test, and debug Java applications and applets

8
New cards

Java EE (Java Enterprise Edition)

Used in web application service, component model, and enterprise class service-oriented architecture

9
New cards

Java ME (Java Micro Edition)

Provides tools for developing software for devices like mobile devices, embedded systems, PDAs, and TV set-top boxes

10
New cards

Java Platform

A computing environment from Sun Microsystems that is used to run Java applications

11
New cards

Java SE (Java Standard Edition)

Provides tools and API for creating server applications, desktop applications, and applets

12
New cards

Java Virtual Machine (JVM)

Form of machine language for a computer that does not exist

13
New cards

Java

Programming language and platform. It is a high-level, object-oriented, platform-independent language

14
New cards

Simple, secure, object-oriented, robust, multithreaded, architecture-neutral, portable, interpreted, high performance, distributed, dynamic

Name 9 Characteristics of Java

15
New cards

Java Virtual Machine (JVM), Java Application Programming Interface (API)

2 Java Platform Components

16
New cards

compiling using a compiler, Java Virtual Machine (JVM)

  • A program written in Java programming language is first translated into Java's intermediate language called 1.) _____.

  • The program is then executed on a 2.) _____ which interprets the intermediate language on the computer.

17
New cards

James Gosling and others in 1994, Oak, green project, sun microsystems

  • Java is a programming language and environment invented by who and when ????

  • Java was originally named what ???

  • as developed as a part of the ____ at the______

18
New cards

1995

Java Development Kit or JDK 1.0 was first released in when ???

19
New cards

Java Development Kit (JDK)

A software package called _____ that is used to applied a set of basic tools needed to write, test, and debug Java applications and applets.

20
New cards

Java SE (Java Standard Edition), Java EE (Java Enterprise Edition), Java ME (Java Micro Edition), Java Card

What are the 4 different editions of Java Platform

21
New cards

Java SE (Java Standard Edition)

A widely used platform for programming in the Java language

22
New cards

Java Compiler, Java Virtual Machine (JVM), Java API, Java Documentation, Java Editor

5 components of JDK?

23
New cards

Eclipse, BlueJ, JCreator

Examples of Java IDEs

24
New cards

JCreator

example of A Java IDE created by Xinox Software with a similar interface to Microsoft Visual Studio

25
New cards

Install the Java Development Kit (JDK)

Before using JCreator, make sure to what?

26
New cards

Creating a Java main class, adding the program code, saving, building, and running the program

5 Steps in Creating a Java Program

27
New cards

Comments

Used in a Java program, ____ are used to describe or explain the operation of the program

28
New cards

Class Declaration, main()

The 1.) ___ contains the definition of the class. Java programs starts its execution by calling the 2. _____method.

29
New cards

statements, declaration, conditional, repetitive or loop, other flow statements, statements that invoke a method

A 1.)____is composed of one or more expressions that cause some action to occur and terminated by a semicolon.

  • name 6 category

30
New cards

Semicolons, curly brackets

Delimiters in Java

31
New cards

byte, short, int, long, float, double, char, boolean

Name 8 primitive data types in Java

32
New cards

Character Escape Sequence

A string of characters preceded by an escape character that forms a command to a printer or display device

33
New cards

Operands, operators

An expression is made up of what 2 elements?

34
New cards

Arithmetic, assignment, relational or comparison, logical operators

Name 4 basic types of operators in Java

35
New cards

Order of Precedence

The sequence in which operators are evaluated

36
New cards

Cast

A ____ is an instruction to the compiler to convert one data type into another data type.

37
New cards

System.out.println, JOption,show Message Dialog

techniques used in displaying outputs in creating Java programs.

  • name 2

38
New cards

System,inaread, JOptionPane.showInput Dialog

The 1.) _____ and 2.)____ are techniques in getting input from the user. The show Input Dialog () method displays a standard input dialog box.