Quiz 3 Flashcards

1
Q

JDBC

A

Java Data Base Connectivity. An API that consists of libraries of classes used to interact with a relational database from a java application

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

JDBC API allows you to access databases from just about any database vendor (T/F)

A

True

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

JDBC API lets you create a Connection object which allows you to log into the database (T/F)

A

True

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

JDBC API lets you create a Statement object to send queries/update statements to the database source (T/F)

A

True

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

JDBC API lets you create a PreparedStatement object that can be cached and executed only once (T/F)

A

False. It can be executed multiple times.

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

JDBC API lets you use a CallableStatement for executing stored procedures on the database (T/F)

A

True

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

JDBC API lets you process the results returned from the DB in a Collection object (T/F)

A

False. It is returned in a ResultSet object.

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

JDBC API lets you close the connection to the DB (T/F)

A

True

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

JDBC API looks after all of the translation work needed for your java app and the database to talk to each other (T/F)

A

True

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

What is needed to run a JDBC API?

A

A JDBC compatible database driver which must be loaded by your java application code in order to be used. Applications can load and use more than one driver depending on the back-end DB.

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

What are the steps to access a database via a Java app?

A
  1. Load JDBC driver
  2. Create Connection object and pass in DB URL, user and pass as args
  3. Create Statement/Prepared Statement object
  4. Execute the query/stored procedure
  5. Process the results
  6. Close ResultSet (if used)
  7. Close Statement object
  8. Close the Connection object
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Types of DB Drivers

A
  1. JDBC to ODBC bridge (inefficient, unreliable)
  2. Native-API partly Java
  3. JDBC to Network protocol pure Java
  4. Native protocol pure Java (most efficient)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Model View Controller (MVC)

A

Design pattern that helps you break code into functional segments with clear boundaries as to what each segment does (compound design pattern)

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

MVC architecture

A

Design GUI using three separate code entities:

  1. Model - maintain the data to be displayed in GUI
  2. View - displayes data contained in model
  3. Controller - handles user inputs and updates model
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

If you have a view registered as a listener for the model then it can automatically update itself when the event fires (T/F)

A

True

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

Multiple views can be serviced by the same model (T/F)

A

True

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

TableModel

A

Interface that specifies 9 methods to manipulate data from a ResultSet:

  1. addTableModelListener
  2. getColumnClass
  3. getColumnCount
  4. getColumnName
  5. getRowCount
  6. getValueAt
  7. isCellEditable
  8. removeTableModelListener
  9. setValueAt
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Process

A
  • Can be thought as the entire program
  • Every process has its own address space
  • Process based multitasking means 2+ programs can be run concurrently
  • Process based multitasking is controlled by the OS
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

Thread

A
  • A small part of a process
  • All threads in a process share the address space
  • Thread based multitasking means a process can run 2+ threads concurrently
  • Thread based multitasking is under the control of the JVM
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

Option 1 for creating threads in Java

A

Have the class being run as a thread implement the Runnable interface. Runnable represents a job that can execute concurrently with other jobs. Coder must only implement the run() method.

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

Option 2 for creating threads in Java

A

Extend the class from the Thread class, which also implements the Runnable interface, and override the Thread class run() method with your own code.

22
Q

run() is automatically invoked by the JVM but should still be called explicitly (T/F)

A

False. Coder should not call run() explicitly, otherwise the code will run inside the current thread, no new thread will be used.

23
Q

What does the start() method do?

A

Signals the JVM that a thread is ready and waiting to run, so it joins the queue of threads waiting to run.

24
Q

Stop(), suspend() and resume() are unstable and should not be used (T/F)

25
Q

What does the yield() method do?

A

Causes the thread to be polite and give up its remaining time to allow another thread to run.

26
Q

What does the sleep() method do?

A

Safely and temporarily stop a thread (used instead of suspend() ). Needs to be put inside a try-catch.

27
Q

What are the constant thread priorities?

A
MIN = 1
NORM = 5
MAX = 10
28
Q

Round-Robin Scheduling

A

If all runnable threads have equal priority then each gets an equal time on the CPU.

29
Q

What is thread contention / thread starvation?

A

When a lower priority thread may never get to run if there is a higher priority thread or if an equal priority thread never yields.

30
Q

To avoid contention coders must ensure higher priority threads invoke sleep() / yield() periodically (T/F)

31
Q

What is the Lost Update Scenario? (Concurrent Processing)

A

When two users try to modify and access the same data and one was unable to complete the process in one time slice.

32
Q

What was done to prevent Lost Update?

A

Transaction rules were created. When a transaction is started, the row gets locked to prevent other users from accessing it.

33
Q

Synchronized Data Structure

A

Puts locks in place when a thread accesses an element of the vector and blocks other threads from accessing it until the first thread completes its transaction.

34
Q

Access to values in an arrayList structure that is synchronized is faster and safe to use anytime (T/F)

A

False. They are only safe to use in single thread applications.

35
Q

Race Condition

A

If thread access is not synchronized either by the coder or some feature of the data structure which can cause data corruption. Occurs when several threads try to access the same data during their time slice.

36
Q

Thread-Safe

A

A class or data structure that will not permit race conditions to occur.

37
Q

Coders must prevent more than one thread at a time from entering the critical region of the program where variable / data structure is accessed in order to prevent race conditions (T/F)

38
Q

Most methods with a return value will not be corrupted by multi thread access (T/F)

A

False. Basically any method can be corrupted.

39
Q

Lock Interface

A

Defines lock(), unlock(), and newCondition() and allows creation of locks with specified fairness policies.

40
Q

True Fairness Policy

A

The longest waiting thread will be the first to obtain the lock and do business.

41
Q

True fairness policy may result in slower performance but prevents thread starvation where a thread is unable to obtain a lock and cannot carry out its task (T/F)

42
Q

Atomic classes can perform their operations atomically, meaning the whole operation is completed as a unit and cannot be interrupted (T/F)

43
Q

What are the Atomic classes?

A

AtomicInteger, AtomicBoolean, AtomicLong, AtomicReference

44
Q

AtomicInteger Class

A

Contains several methods which treat read-calculate-write as one atomic task, such that all steps are completed without interruptions (thread-safe).

45
Q

Why not synchronize every method?

A
  1. Time cost (runs slowly)

2. Defeats the purpose of multi-threading (every thread has to wait for the method to be available)

46
Q

Volatile

A

Applied to a variable. Does not do any locking. Informs the JVM that the variable will be accessed concurrently by multiple threads

47
Q

For variables changed using R-U-W steps, volatile will prevent possible lost updates (T/F)

A

False. It will not prevent lost updates and should not be relied upon to do so.

48
Q

Thread States

A
  1. New
  2. Runnable
  3. Running
  4. Blocked
  5. Terminated/Dead
49
Q

Calling yield() does not automatically result in a thread giving up its time (T/F)

50
Q

wait() is a method of the Thread class (T/F)

A

False. It is from the Object class.

51
Q

How to stop a thread properly?

A

Call interrupt() rather than stop()