java Flashcards

1
Q

What is JIT?

A

Just in time compiler. Improves java performance by compiling bytecode to native machine code at run time.

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

What is reflection?

A

Allows a program to examine itself and manipulate internal properties. Ex: a java class can obtain the names of all its members and display them. Junit4 uses this to call test methods annotated with @Test

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

Relational vs non-relational database. Pros and cons

A

Relational: has specific relationships between data, structured, consistent but its slower and not scalable.
Non-relational: More free form, faster, scalable, but its harder to query and has lower data integrity

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

Database normalization

A

Process of organizing data in a database.
1st normal form:
Eliminate repeating groups in individual tables.
Create a separate table for each set of related data.
Identify each set of related data with a primary key.
2nd normal form:
Create separate tables for sets of values that apply to multiple records.
Relate these tables with a foreign key.
3rd normal form:
Eliminate fields that don’t depend on the key

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

What are the solid principles?

A

Single-responsibility principle: A class should have only one job

Open-closed principle: Objects should be open for extension but closed for modification. Class should be
extendable without modifying the class itself

Liskov substitution principle: Every subclass or derived class should be substitutable for their base or parent class

Interface segregation principle: A class should never be forced to implement an interface that it doesn’t use, or clients shouldn’t be forced to depend on methods they do not use.

Dependency inversion principle: Entities must depend on abstractions, not on concretions. It states that the high-level module must not depend on the low-level module, but they should depend on abstractions. Allows for decoupling

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

Vector vs arraylist

A

Vectors are synchronized, arraylists are not. Thread locks are needed if multiple edit an arraylist. Or Collections.synchronizedList
Both have internal arrays that expand when needed. When expanding: vectors double the array while arraylists increase the array by 50%.

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

What makes a string immutable?

A

You can’t change the object itself but you can change the reference to the object.

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

Big O notation

A

Best to worst: O(1), O(logn), O(n), O(nlogn), O(n^2)
O(1): constant time, no loops, accessing an array by index
O(logn): logarithmic, binary search, start in middle and search both ways
O(n): linear, one loop through all elements
O(nlogn): log-linear, Quicksort, Mergesort, and Heapsort, breaks down into chunks, divine and conquer
O(n^2): quadratic, nested loops, exponent increases for each nested loop

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

Applet

A

Small programs embedded into web pages

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

JVM

A

Java virtual machine: Virtual computer that allows the running of java programs

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

Compiler

A

Converts java source code into binary program consisting of byte codes

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

Interpreter

A

Inspects and deciphers byte codes and then executes it

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

Packages

A

Related sets of classes, based on directory path

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

Instance variable

A

Variables declared within a class but outside any method. Usually at the top

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

Class variable

A

Fields that have the static modifier.

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

Instance method

A

Methods that need to be called from a declaration of an object

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

Class method

A

Methods that don’t need to be called from a declaration of an object. Static methods

18
Q

Encapsulation

A

Hiding items of data and methods within an object. Usually by declaring them private

19
Q

Aggregation vs composition

A

Aggregation: ‘has-a’ relationship. Class with a reference to another class child can exist without the parent. ie: a car has wheels but you can take the wheels off.

class Wheel {}

class Car {
List<Wheel> wheels;
}</Wheel>

Composition: ‘part-of’ relationship. Class inside of a class child cannot exist without the parent. ie: a room is part of a building. You cant have a room without a building.

class Building {
class Room {}
}

20
Q

Overriding

A

A subclass has the same method as the parent class but different functionality. A type of polymorphism.

21
Q

Overloading

A

Same method name but different parameters

22
Q

Polymorphism

A

Method to behave different depending on the type of object that calls it.

23
Q

Conditions to use polymorphism

A

The method call for a derived class object must be through a variable of a base class type

The method called must also be a member of the base class

The method signature must be the same in the base and derived classes

The method return type must be the same in the base and derived classes

The method access specifier must be no more restrictive in the derived class than in the base

Only applies to methods, not variables

24
Q

Interface vs abstract class

A

Consider using abstract classes if any of these statements apply to your situation:
You want to share code among several closely related classes.
You expect that classes that extend your abstract class have many common methods or fields, or require access modifiers other than public (such as protected and private).
You want to declare non-static or non-final fields. This enables you to define methods that can access and modify the state of the object to which they belong.

Consider using interfaces if any of these statements apply to your situation:
You expect that unrelated classes would implement your interface. For example, the interfaces Comparable and Cloneable are implemented by many unrelated classes.
You want to specify the behavior of a particular data type, but not concerned about who implements its behavior.
You want to take advantage of multiple inheritance of type.
interface can have default methods that allow implementation at the interface level

25
Q

Number variable sizes

A

byte = 1 byte
short = 2 bytes
int = 4 bytes
long = 8 bytes
float = 4 bytes, 7 digits of accuracy
double = 8 bytes, 17 digits of accuracy

26
Q

Java conditional operator

A

int count = isHere ? getHereCount(index) : getAwayCount(index);

int count;
if (isHere)
count = getHereCount(index);
else
count = getAwayCount(index);

if isHere is true, getHereCount() is called,
if isHere is false getAwayCount() is called.

27
Q

Final

A

Fixed stored variable, method cant be overridden, class cant derive from it.

28
Q

Access modifiers

A

None – Only accessible from any class in the same package

public – Accessible anywhere inside or outside of the class and package

private – Only accessible by methods contained in the class

protected – Only accessible from any class in the same package and from any sub-class anywhere

29
Q

Anonymous class

A

A class that is written as ‘new’ as an expression in the code. Can be assigned to a variable. Most commonly used in guis to add event listeners. Never necessary but improves readability.
Ex1:
Anonymous class
new Thread(new Runnable() {
@Override
public void run() {
// do something
}
}).start();
In this example you create a Runnable which is run by a thread. If you wouldn’t use an anonymous class you’d have to write it as follows:

private class SomeClass implements Runnable {
@Override
public void run() {
// TODO Auto-generated method stub

} } and use it as:

new Thread(new SomeClass()).start();

Ex2:
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {

}
}

Ex3:

Runnable action = new Runnable() {
@Override
public void run() {

}
};

30
Q

Stack

A

First in last out data structure. sub class of vector. push, pop, peek, empty, search methods. 1-based index

31
Q

Types of maps

A

Hashtable: synchronized map (obsolete)
HashMap: key-value pair, no duplicate keys
WeakHashMap: same as hash map but auto deletes null keys
TreeMap: O(n logn) time. slow but ordered and memory efficient

32
Q

Varargs

A

Same as passing an array as a parameter. Can also just pass any number of arguments and itll turn them into an array

33
Q

Generics

A

Allow any data type as long as each time its used, its the same data type (T)

34
Q

Substitution principle

A

Objects can be used in place of their super type when passing.
ex:
a list parameter can be passed a list or arraylist

does not apply to list types.
ex:
List<List> as parameter wont accept List<ArrayList></ArrayList></List>

35
Q

Functional Interface

A

An interface that has only one abstract method

36
Q

Lambda

A

Same as implementing a functional interface but more readable

37
Q

Method reference

A

Can shorten lambdas when they’re only calling one method

38
Q

Streams

A

Better ‘for each’ looper.
Problems with foreach: Hard to write parallel iterations, requires boilerplate code, difficult to read meaning, hard to abstract away from behavior

Streams solve these and are more efficient

39
Q

Parallel streams

A

Allow for multiple threads to be used for faster performance. Only an impact when using a very large

41
Q

left off at ch 11 in java notes from dad. also look into new stuff in each java version