INFO3136 EXAM Flashcards
What is a process?
The entire program
What is a thread?
Small part of a process
What is process based multi-tasking controlled by?
OS (Kernel)
What is thread based multi-tasking controlled by?
JVM
Each thread gets its own what? (2)
- Call Stack
- Program counter
What happens if a thread cannot complete its task in the allotted time?
The thread is suspended
What happens when a thread is suspended?
State data is stored in CPU cache memory until text turn
What are the 2 ways to create threads in Java?
- Implement Runnable interface
- Extend Thread class
What method is in the Runnable interface?
run()
Why should you never call the run() method?
Method is automatically invoked by JVM. If you call it explicitly then a new thread is never made
What method is used to signal to the JVM that a thread is ready?
start()
What method is used to give up a thread’s remaining time?
yield()
What method is used to temporarily stop a thread?
sleep(long milliseconds)
What kind of exception can the sleep() method throw?
InterruptedException
What is the normal priority of a thread?
5
What kind of scheduling involves threads of equal priorities?
round-robin scheduling
What is it called when a low-priority thread never gets to run due to higher priority threads?
thread contention or thread starvation
What is the concurrency problem encountered in the 70’s called?
Lost Update Scenario
What were created to fix concurrency issues?
Transaction Rules
What is an example of a synchronized data structure in Java?
Vector
What kind of data structure is an ArrayList when considering threads?
Unsynchronized
Which is faster, a synchronized data structure or an unsynchronized?
Unsynchronized
What is it called when an unsynchronized program component allows data corruption?
Race Condition
What is it called when a class or data structure does not allow data corruption?
Thread-safe
What is the portion of the program holding the variable or data structure that can cause race conditions?
Critical Region
What keyword is used to prevent multiple threads from affecting the critical region?
synchronized
What does the keyword synchronized do?
Gives the method a lock on the data structure to guarantee exclusive access
What state are threads placed in when waiting for a thread with a lock to finish processing?
wait
What 3 methods are part of the Lock interface?
- lock()
- unlock()
- newCondition()
What is meant by atomic in the atomic classes?
The whole operation is completed as a unit and cannot be interrupted
What is the keyword volatile attached to?
A Variable
What does the keyword volatile do?
Tells the JVM that the variable will be accessed by multiple threads, so the value should be read from main memory every time
Do volatile variables have locks on them?
No
What are the 5 states of a thread?
- new
- runnable/ready
- running
- blocked
- terminated/dead
What class holds the sleep() method?
Thread
If a thread is put to sleep with a lock on a data structure, what happens to the lock?
Nothing
What does a thread that has yield() invoked on it do?
Signals to the OS that it is willing to step aside
What class holds the yield() method?
Thread
What class holds the wait( ) method?
Object
How many public methods are in the Object class?
7
What conditions must be met to use the wait() method?
Has an explicitly acquired lock on an object inside a synchronized method or block of code
What class holds the notify() and notifyAll() methods?
Object
What does notify() do?
Randomly selects a thread waiting for the object that is locked to get ready
What is the difference between notify( )and notifyAll()?
notifyAll() wakes all threads waiting up and allows the OS scheduler to choose which is next
What does the join() method do?
Stops other threads from executing until the thread that called join() is finished
What is the problem with calling stop( ) on a thread?
Terminated thread immediately releases its lock on any data members possibly corrupting the data
What method is used in place of stop()?
interrupt()
How does interrupt() work?
Thread that calls interrupt() sets the interrupt status boolean flag of the running thread to true.
When should you use a thread pool?
If you have a lot of short-lived threads that don’t require a lot of I/O operations
What method is held in the Executor interface?
execute(Runnable r)
What is ExecutorService?
A sub-interface for Executor
What is the purpose of ExecutorService objects?
Manage threads in a pool
How do you create a thread pool?
ExecutorService lifeguard = Executors.newFixedThreadPool(int i);
What class implements Executor and ExecutorService?
Executors
How does a newCachedThreadPool work?
New threads are created as needed if more tasks are created, idle threads stay in pool for a maximum of 60 seconds
What are the 2 ways to end a thread pool operation?
- shutdown()
- shutdownNow()
What is the difference between shutdown() and shutdownNow()?
shutdown() allows all remaining threads in the pool to complete their run() code, shutdownNow() only allows the currently running threads to finish and terminate the rest
What is the Swing thread called?
Event Dispatch Thread
What is the JavaFX thread called?
JavaFX Application Thread
What is it called when only one thread is allowed to access components?
Thread Confinement
Considering single GUI thread, when is it a good idea to use a different thread?
When there are lengthy calculations
What listener is used to alert the event dispatch thread that a worker thread is complete?
PropertyChangeListeners
What are the 2 constraints for Java GUI apps?
- Time consuming tasks should not run on the event dispatch thread
- Swing components should only be accessed by the event dispatch thread
What class is used for offloading tasks from the event dispatch thread?
SwingWorker
What interface does SwingWorker implement?
Future< T >
What method is used to return the value gotten through a class that extends SwingWorker?
get()
What are the T and V in SwingWorker<T, V>?
T - return type
V - type used for intermediate results
What 2 methods use the V in SwingWorker<T,V>?
- publish()
- process()
What SwingWorker method is analogous to the run() method of Thread and Runnable?
doInBackground()
What is the Model in MVC pattern?
Maintains the data to be displayed. Holds the state
What is the View in the MVC pattern?
Displays the data in the model
What is the Controller in the MVC pattern?
Handles user inputs and can update the model
What kind of design pattern is MVC?
Compound Design Pattern
Why is MVC considered a compound design pattern?
It is a composite of several simpler design patterns
What has to happen for the View in MVC to update automatically when the Model changes?
View has to be registered as a listener
What does JDBC stand for?
Java Database Connectivity
What 3 objects do we make when setting up a JDBC connection?
- Connection
- Statement
- ResultSet
What changed about methods in interfaces after JDK 1.8?
Used to only be abstract (no body), but now can contain default methods
What does adding the “static” keyword to a default method in an interface do?
Stops it from being overridden
What is a SAM?
Single Abstract Method interface
What is an interface with only one abstract method called?
Functional Interface, or SAM
Can a functional interface have default methods?
Yes, but only one abstract method
What is a lambda expression?
Coding short-hand that can be used to represent an anonymous method
What is the syntax of a lambda expression?
(parameter list) -> { one or more statements to be run }
What is an exception?
An object that signals an error has occurred
What is the parent of all exception classes?
Throwable
What is the parent of the Runtime class?
Exception
Which class defines exceptions that you don’t have to deal with?
Error
What kind of exceptions are Runtime exceptions?
Unchecked
What class describes checked exceptions?
Exception