Mod 3 Flashcards

1
Q

the most basic language of a computer
• A sequence of 0s and 1s
• Every computer directly understands its own machine

A

Machine language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

binary digit, 0, or 1

A

Bit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

sequence of 8 bits

A

Byte

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Mnemonic

A

assembly language, an instruction is an easy-to- remember form

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

translates assembly language instructions into machine language

A

Assembler

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Java instructions need to be translated into an intermediate language called byte-code
2. Then the bytecode is interpreted into a particular machine language

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Compiler

A

translates a program written in a high-level language into the
equivalent machine language
In the case of Java, this machine language is the bytecode

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

JVM JAVA VIrTUAL MACHINE

A

to make Java programs
machine independent

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Programming Methodologies 2 tye

A

Structured Design
- Object - Oriented Design

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

A problem is divided into smaller subproblems
• Each subproblem is solved
• The solutions of all subproblems are the combined to solve the problem

A

Structured design

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

collection of interacting objects
• Object - consists of date and operation

A

Object - oriented design (ood)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Steps in OOD
1. Identify objects
2. Form the basis of the solution
3. Determine how these object interact

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Java program:

A

collection of classes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Token?

A

smallest individual unit of a program

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

WHAT IS JAVAA?

A
  • Developed by Sun Microsystems - An object-oriented language
  • General-purpose
  • Advantages
  • Security features
  • Architecturally neutral
  • Can be run on a wide variety of computers
  • Does not execute instructions on the computer directly - Runs on a hypothetical computer known as a Java Virtual Machine (JVM)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Programming statements written in high-level programming language?

A

Sourse Code

17
Q

set of tools used to write programs

A

Development environment

18
Q
  • Statements saved in a file
  • A binary program into which the Java compiler converts source code
A

Byte code

19
Q

Checks bytecode and communicate with the operating system
- Executes bytecode instructions line by line within the Java Virtual Machine

A

• Java interpreter

20
Q

WORA
- Write once, run anywhere🥥

A
21
Q

X Console applications
- Support character output
• Windowed applications
- Menus
- Toolbars
- Dialog boxes

A