Software Development Flashcards
What does the SDLC represent?
The development of software as phases or sets of activities
What causes the SDLC?
The desire to define a predictable process to improve quality
What does the SDLC involve?
Creating processes that can be effectively managed
What are the 5 broad categories of the SDLC?
- Requirement Analysis
- Design
- Implementation
- Testing
- Evolution
What is Requirement Analysis?
What business/scientific problem is the system addressing?
What will the system do? Who are the users?
What is Design?
Hardware, software and network requirements
What parts are in-house, and what is externally developed or bought of the shelf
What is Implementation
The process of turning a software design into a working system by writing code, integrating components, and deploying it for use.
What is Testing?
The process of evaluating software to ensure it works as expected, is free of bugs, and meets user requirements.
What is Evolution?
Has system accomplished its goals, are there any modifications
Also includes maintenance of the system
What are the 4 Software Development Methodologies?
- Waterfall
- Prototyping
- Rapid Application Development
- Agile Development
What is a Waterfall?
Breaks process down into distinct sequential phases
- Each phase needs sign-off before moving to the next
- Leads to very well documented projects
What is Rapid Application Development?
Creating software quickly by focusing on speed, flexibility, and user feeback.
1. Fast Prototyping: quickly build small working versions
2. User involvement: give feedback on prototypes
3. Team improves software in short cycles
4. Skips heavy documentation and focuses on delivering functional features quickly
- Often development deadline prioritised over requirements.
What is Agile Development?
Where teams work in small steps called sprints, constantly adapt to change, and deliver results frequently. After each sprint teams reflect what went well, and get feedback. It focuses on collaboration, flexibility, and getting feedback to improve the product.
What is Prototyping?
Creating a simplified, working model of the software to test ideas, gather feedback, and refine before the final version is built.
What are the advantages of Agile Development
- User engagement
- Rapid Development of a usable product
- Early testing catches bugs and results in a high quality product
- Small incremental changes mitigate potential risk of introducing large change to system
What is a Scrum?
A framework within Agile development that organizes work into short, focused cycles called sprints (typically 2-4 weeks) to deliver small, workable software increments.
What is a Sprint planning meeting?
Part of a scrum that focuses on:
- Which items will be worked on
- Identify sprint tasks
- Divide the sprint into timeboxes
What is a Daily scrum meeting?
Part of a scrum that focuses on:
- Summarising previous day’s work and coming day’s work
- Intended to foster collaboration
What is a sprint review meeting?
A session where the team shows what they have built during a sprint
Part of a scrum that focuses on:
1. Showcase work: Team shows the features or improvements completed
2. Feedback time: Stakeholders give input on work
3. Adjust plans: Based on feedback, update priorities
4. Collaborative session: Everyone discusses what went well and what could be improved
What are the advantages of OOP?
- Encapsulation/information hiding
- Inheritance
- Polymorphism
What is the difference with OOP in comparison to procedural programming?
Puts code into objects, in contrast to procedural programming where no relationships are defined for each entity.
What should classes in OOP include and how does encapsulation sometimes cause issues?
- Should usually be specified to include only code related to their specific function.
- Encapsulation can cause issues with tightly coupled classes that rely heavily on each other’s members.
- This creates a lot of work in designing functions to access those - members.
- These issues are more common in GUI programming.
Define a Nested Class
Classes defined within classes
What are two types of Nested Class?
- Static nested class
- Inner class
What modifiers can be used for standard outer classes and nested classes in Java?
Standard outer classes (top-level classes) can only be declared with two modifiers:
- public
- default (package-private)
Nested classes can be declared with any of the standard modifiers:
- public, private, protected, or package-private.
What is the main difference between Static Nested Class and Inner Class?
Static nested class (doesn’t have access to instance members)
Inner class (does have access to instance members)
Why use nested classes?
- Closely linked classes can be located in one place for better organization.
- If one class is only used by another, making it a nested class makes this relationship explicit.
- Increases encapsulation by controlling visibility:
- If the Engine class is nested inside the Car class, the private members of Car are visible to Engine.
- Can also improve code readability.
List 4 key features of Inner Classes
- Can be difficult to spot in code
- Will produce two class files on compilation
- Inner classes can be directly accessed by the enclosing instance
- All nested classes can be accessed externally through either the containing class or object
How does the scope with inner classes work?
“this” refers to the inner type instance
“OuterClass.this” refers to the instance of the surrounding (outer) class, when within the inner class code blocks.
What are local classes?
Local classes are defined and exist solely within a block (usually a method)
What can’t local class declaration contain?
Cannot contain public, protected, private, or static.
What can local classes access and not access?
Can access all members of outer class instance like standard inner class member
Cannot access method local variables unless they are declared as final
Define an anonymous class
Classes that are declared without any class name at all
How can anonymous classes be defined?
Not only may these be defined within a method, they may also be defined within an argument to a method.
Define Concurrency
To be able to perform multiple processes at same time
Each process happens in parallel without having to wait for each other to be scheduled
(including the potential interaction between them)
What is multiple tasks at the same time called?
Parallelism
Why is concurrency important?
Most efficient use of hardware - gets the most out of the processor and its cores
What is a thread?
Can be treated as lightweight processes
Threads exist within a process
Why use threads instead of separate programs?
Easier to manage multiple threads under a process than have multiple different programs
What is Multi-threading
OS can run threads in parallel
- Virtually, on a single core processor
- Actually, on a multi-core processor
Define Nondeterminism
Where the exact order in which processes are executed cannot be predicted
What causes Nondeterminism?
Multiple tasks are running at the same time, and the OS may decide to swich between them at different moments
What is Liveness?
In simple terms, it means that the system isn’t stuck, frozen, or waiting forever—it ensures that things keep moving forward, like responding to user actions, processing data, or handling requests
Examples:
- A website showing search results when you hit “search.”
- A background task in an app eventually finishing its job.
What are the 2 ways threads can be created in Java?
- Using the Thread class
- Using the Runnable interface
How to stop a Thread?
- Setting a flag
- Interrupting
What are Race Conditions?
When two threads try to access/change data at the same time
Define an Atomic Action
In programming, atomic actions are self-contained, they can’t be stopped in the middle
- They either happen or don’t
What is Deadlock?
When thread 1 needs a resource in thread 2, and thread 2 needs a resourse in thread 1
This creates a deadlock and nothing happens as to run they both require resources from each other, creating an infinite cycle - deadlock
Define Starvation
Where a thread can’t gain regular access to shared resouces because another thread is frequently calling the objects methods
Define Livelock
Similar to deadlock, except that it occurs when 2 threads are too busy responding to one another to work
What does wait() do?
Releases the lock and regains it using the notify()
What is the difference between Wait and Sleep?
Wait
- Must occur in block synchronised on the monitor object
- Releases the monitor (lock) when called; doesn’t sacrifice the remainder of its time slice
- Will wake up if notified via call
Sleep
- Doesn’t need to occur in a synchronized block
- Retains the monitor (lock) when called and sacrifices the remainder of its time slice
- Can only be woken up by an interruption (not by notify)
What is a Thread lifecycle?
Thread needs to wait to start until the start method is invoked goes between runnable and running, this is dependent on the OS
What is Yield()?
Identifies the current thread as doing something not particularly important
How does Yield() work?
Causes the currently executing thread object to pause and allow other threads to execute
If no other threads of the same priority need to execute, the thread continues.
What is Join()?
Allows one thread to wait for the completion of another
How to stop a Join()?
Like sleep, responds to an interrupt
What is important about the data threads access?
Need to ensure the data our threads are accessing is fresh (up to date)
Stale data can lead to large issues
What are Atomic Variables?
Variables that support atomic operations, ensuring that increments, decrements or reads happen as a single uninterruptible action
Explain volatile & data freshness
Volatile: : A volatile variable is a variable that can change at any moment, often due to factors outside the program
Data Freshness: How recent or up-to-date the data is, fresh data is reliable and current.
What is publishing?
Publishing an object is when you make it available outside its current scope
By default should you publish an object?
By default, we shouldn’t have to publish an object unless we have to
- if we do, we may need to confirm the thread-safe nature of the publishing
What is an escaped object?
An object published when it should not have been
List 4 key points about thread confinement.
- One of the simplest ways to ensure thread-safety
- If the data doesn’t need to be shared, confine it to a single thread
- If data is only used by a single thread then its said to be confined
- Thread confinement is an element of the programs design
What is a Lambda expression?
Essentially a block of code that you can pass a round between objects
Define Version Control
Tracking and managing your files by recording changes over time, you can recall specific versions later
How does a Version Control System work?
In a team setting if a change is made that isn’t wanted by other members, they can revert the changes back to before
What are three key factors of a Version Control System?
- If a new person joins a team they can check the older versions to understand the progress of the project
- Sharing of files and information about the project
- Modern version control systems have atomic commits
What are the advantages of using a Version Control System?
Gives a development team a project wide undo button
Place to store all files/documents/directories - repository
Repository acts as a server
Allows multiple developers to work on same code in controlled manner
Keeps record of changes
Can support multiple releases at same time
Time machine can examine how project looked at particular dates/versions
Can see who added/changed code - name/blame
Centralized vs Distributed repositories
As soon as you commit to a centralized repository others can see your changes
Developers must push changes and pull updates from distributed repositories
Copies vs Versions in Version Control Systems
Doesn’t just store copies, it stores every version that has ever been checked in
What are Revision Tags?
Allow you to provide text for particularly important revisions
Easier to remember and more informative than version numbers
What is a Trunk?
Main code base that developers are working on
What is Branching?
Like creating a copy of your project to work on separately without affecting the main version. You can make changes, try new features, or fix bugs in the branch, and later merge it back into the main project once everything works well.
What is Forking?
Forking means creating a personal copy of someone else’s project in your own repository. It’s like copying the whole project to your account so you can work on it independently.
What is Merging?
Merging back the changes made in branch
What is Strict Locking?
Only one person can change a file at any one time
What is Optimistic Locking?
All files can be changed, but if changed in the repository since last check out then local copy needs to be updated before you can commit a change
What are the implications of Optimistic Locking?
The version control system doesn’t know what you want - so it leaves it up to you to sort out
If you commit a file which has changed since you last updated you will be told the commit has failed
What is an Event?
Something that happens in a program
(Such as: pressing a key)
What is a Listener?
A function/piece of code that waits for a specific event to happen, and responds by executing some action.
Polling vs Event-Driven Programming.
In event-driven programming, instead of repeatedly checking for events, the system waits and responds to an event only when it occurs - typically more efficient
Polling on the other hand is less efficient, because it consumes resources even when nothing happens
What are Alternatives to Polling?
Interrupts - where the hardware or OS alerts the software when an event occurs
Event Listeners - where the system waits for an event to trigger a specific action
Why use Events & Listeners - GUIS?
- Can check for button presses and clicking on graphical icons
- Efficient use of resources
What is a source?
An object that generates an event
What is a key model used in Software Development?
V-Model
What is the V-Model?
Extends the Waterfall Model by emphasizing testing at every stage. Follows a sequential process, where each development phase has a corresponding testing phase.
The V shape illustrates thee relationship between developing on the left and testing on the right of the V.
It ensures early testing and verification, but is rigid, making it less flexible for changes once a phase is complete
What is the concept of operations in the V-Model?
- Provides a statement of the goals and objectives of the system
- Includes strategies, tactics, policies and constraints affecting the system - so contextualizes the system in the wider business
- Clear statement of responsibilties and authorities to the various participants involved in the system
- Specifies the processes for iniating, developing, maintaining and retiring the system
What is the Requirement analysis in the V-Model?
Cover three core areas:
1. Requirement gathering
2. Are the gathered requirements, clear, complete, consistent and unambiguous?
3. Clear statement of responsibilities and authorities to the various participants involved in the system
- Also what can the system achieve with time?
What is the High-Level design in the V-Model?
Will describe the platforms, systems, products, services, that the developed system will depend on
Typically will include an architecture diagram - this will show the interface, components and networks that need to be further specifed or developed
What is the Detailed design in the V-Model?
Specifies how the system will be constructed
- for instance how the functions/objects/methods should be
Once detailed design is generated it should be possible to write the tests before the actual system is implemented
What is Unit Testing in the V-Model?
Testing individual blocks of code in terms of correctness
(Probably the most widely used testing type that you have done so far)
What is Integration Testing in the V-Model?
Testing the final system when grouped together or integrated
Unexpected behaviour may arise at this point, which is checked for here
What is System Testing in the V-Model?
Testing the system as a whole
- Also checks that it doesn’t impair performance on the wider environment
- Affecting broader resource availability on the OS
- Affecting other applications working on the same system
What is User Acceptance Testing in the V-Model?
Plans are developed during requirement analysis phase and are composed by users
Is performed in a user environment that resembles the production environment and uses realistic data
Ensures that the delivered system meets the users requirements and system is ready for use in real time
It’s based on validation rathjer than verification
What are the advantages of the V-Model?
Highly structured, phases completed one at a time
Works well where all requirements are understood
Simple to understand
Easy to manage - each phase has a definite end with a review
What are the disadvantages of the V-Model?
Once a project is in the tesing phase it is difficult to go back and change functionality
Not suitable for projects where requirements might change
No working software created until late in the cycle
What are the Testing Categories?
Static Testing
Dynamic Testing
- White box testing
- Black box testing
- Grey box testing
What is Static and Dynamic Testing?
Static Testing - accessing documents
Dynamic Testing - testing that involves executing program code
What is White box testing?
Testing where the internals of the program are known, so can test explicit paths through the system
What is Black box testing?
Treats code as a “black box”, and therefore is only concerned with functionality
What is Grey box testing
Know both the required functionality and also some of the implementation concepts which can be used in test design, but not code base exposed
What are the advantage/disadvantage of White box testing?
Advantage
- Code can be seen so tests can be designed to test many paths through the program
Disadvantage
- Knowledge of the internals will influence the testing - can lead to bias in test design
What are the advantage/disadvantage of Black box testing?
Advantage
- No knowledge of internals so no bias - more likely to result in tests unexpected by programmer
Disadvantage
- High probability that tests will only test a small number of paths through the program
What are Unit Tests?
Principles of unit test are to test small specific areas of functionality within a program
What is Code Coverage?
Attempts to measure how much of your code has been tested
It looks at the code directly, and uses a lot of techniques in unit testing to derive a formal message
Different measures of coverage are often reffered to - some are simply infeasible to completely cover
So often a choice has to be made about how much code can be covered
What are the four coverage types?
Function/method/subroutine coverage
Statement coverage
Decision coverage
Predicate coverage
What is Function coverage?
Has each method written, had a test written (and run) on
What is Statement coverage?
Has each line of code been processed by at least one of your suite of tests
What is Decision coverage?
Has every desicision edge been traversed in your code (if/else)
What is Predicate coverage?
Has every condition been tested? (not always the same as decision coverage)
What are edge cases?
Where a variable takes its maximum or minimum possible value
What are corner cases?
Situations where multiple edge cases occur together, these are even rarer than edge cases, and can be harder to identify and handle
Give two examples of corner cases
Combining extreme inputs
- Testing with both min and max values together (e.g., a max sized file with invalid
characters)
Multiple boundary conditions
- Checking how a system behaves when several limits are hit at the same time (e.g., a
nearly full database with a complex query
What are the Limits of Testing?
It’s not possible to test every single aspect of even a moderately simple system
- no. of possible inputs are too large
- Too many possible paths through the system
Testing cannot assert that the software functions correctly under all conditions, but that it functions incorrectly under specific conditions
What does Unit Testing prove?
It is often very difficult or impossible to “prove” a piece of code works, we can only satisfy ourselves that we haven’t disproved that it works
- Designing tests with this in mind is critical
What is the Importance of Unit Testing?
- Reduces time spent on debugging
- Helps communicate codes inteded use - illustrates how you expect the code to perform on various inputs and conditions
- The code shouldn’t drift away from the limits put on them by tests
What does Right-BICEP stand for?
Right – are the boundary results correct (or “right”)
B – are all the boundary conditions correct?
I – can you check the inverse relationships?
C – can you cross-check the results using some other means?
E – can you force error conditions to occur?
P – are the performance characteristics within bounds?
What are 6 properties of good tests?
- You’ve flexed your right bicep
- Automatic
- Thorough
- Repeatable (should produce same results each time)
- Independent (of each other test and of the environment)
- Professional (written and maintained to the same standard as the shipped code)
How to test your tests?
- Improve the tests while fixing bugs
- Prove the tests by introducing bugs
What are the naming conventions when structuring Unit Tests?
If the production code class is called Account and a method is called createAccount; Test should be called testCreateAccount
You may have more than one test method that tests createAccount but they should all begin with test
How would you set up a Unit Test?
Test code must be written to do a number of things:
1. Set up all conditions needed for testing (create any required objects, allocate any needed resources)
2. Call the method to be tested on the object
3. Verify that the object/class to be tested functions as expected
4. Clear up after itself
What is an Assertion?
Used to verify that the code being tested behaves as expected. If the assertion fails, the test is considered to have failed, and it usually indicates that there is a bug or issue in the code being tested.
How does assertEqual & assertNotEqual work?
assertEqual(actual, expected) checks if the actual value equals the expected value.
assertNotEqual(actual, expected) checks that the actual value doesn’t equal the expected value.
How does assertTrue and assertFalse work work?
assertTrue(condition) checks that the boolean condition is True
assertFalse(condition) checks that the boolean condition is False
How does assertNull & assertNotNull work?
assertNull(value) checks if the value is null
assertNotNull(value) checks if the value is not null
How does assertSame & assertNotSame work?
assertSame(expected, actual) checks whether two objects are of the same instance
assertNotSame(expected, actual) checks whether two objects are not of the same instance
How does fail work?
fail(message) wil fail test immediately if flow of control passes to this statement
What are Mock Objects?
Cheap placeholder objects that are predictable and allow us to test the method we need to in the current class
When should you use a Mock Object?
When the real object:
- has non deterministic behaviour (not sure how the object will behave)
- is difficult to set up
- has behaviour that is hard to trigger
- is slow
- has (or is) a user interface
- does not yet exist
How should you implement a Mock Object?
- Use an interface to describe the object
- Implement the interface for production code
- Implement the interface in a mock object for unit testing
What are Test Suites?
They allow us to group multiple tests classes to run as a single batch
They also allow us to run a specific subset of unit tests from multiple test classes
What are the benefits of Test-driven development?
Can help you design your code better
You see the code from the user’s perspective - not the developers
What are Invariants?
Assertions about classes/objects that should not change - should definitely test these when developing unit tests
What are Design Patterns?
Meant to provide a general reusable solution to one type of problems during software development
Theory of design patterns is that someone has already solved your similar pattern problems
How do Design Patterns relates to OOP design principles?
Primarily based on the following principles of OOP design
- Identify the aspects of your application that vary and separate them from what stays
the same
- Program to an interface, not an implementation
- Favour ‘object composition’ over class inheritance
What are the 3 types of Design Patterns?
Creational Patterns - object creation
Stuctural Patterns - composition of classes and objects
Behavioural Patterns - interaction between objects
What is a Factory Pattern?
Helps you create objects without specifying their exact class. Think of it as a “factory” that produces items (objects) based on a request, but you don’t need to know how the factory makes them
What is an Abstract Factory Pattern?
It’s like a factory that creates a set of related products (objects), but you don’t need to know exactly what products are being made. Instead, you just ask for the product, and the abstract factory ensures it’s the right type for your system.
Here’s a simple example:
Imagine you have two types of furniture, Modern and Victorian. For each type, you can have a Chair and a Sofa. Instead of creating each item separately, the Abstract Factory would create a “furniture factory” for each style (Modern and Victorian), and each factory would know how to create the appropriate Chair and Sofa.
Factory Pattern vs Abstract Factory Pattern
- Both used for object creation
- Factory Pattern uses inheritance and gives you a complete object in one shot
- Abstract Factory Pattern uses composition and returns a family of related classes
What is a Builder Pattern?
Helps create a complex object by breaking the construction into smaller, manageable steps. It allows you to build an object in a controlled way, step by step, and you can customize the object easily.
How does Builder Pattern work?
- The Builder specifies the interface for creating parts of the complex (Product) object.
- The ConcreteBuilder objects create and assemble the parts that make up the
Product through the Builder interface. - The Director object takes responsibility for the construction process of the complex
(Product) object, however it delegates the actual creation and assembly to the Builder interface. - The Product represents the complex object that is created by the ConcreteBuilder object(s).
- The Product consists of multiple parts that are created separately by the ConcreteBuilder objects.
Factory vs Abstract Factory vs Builder Patterns
The main difference is
- Factory pattern construct a complete object in one shot
- Abstract factory pattern returns a family of related classes
- Builder pattern constructs a complex object step by step
What are the Benefits of a Builder Pattern?
- Encapsulates the way a complex object is constructed
- Allows objects to be constructed in a multistep and varying process (as opposed to
one-step factories) - Hides the internal representation of the product from the client
What is a Singleton Pattern?
Ensures that a class has only one instance, and provides a global point of access to it
What are Examples of a Singleton Pattern?
Examples
- Windows managers
- File systems
- Print spoolers
How to access a Singleton Pattern?
Static Member: Create a private static variable of the Singleton class. This is the only instance of Singleton class
Private constructor: Create a private constructor for making sure an outer class can NOT instantiate object from the Singleton class
Static public method: Create a global point of access to get a Singleton instance
What is Eager Initialisation?
The instance of Singleton class is created at the time of class loading
What is Lazy Initialisation?
To create the singleton, to ensure that the singleton instance is not created until the getInstance() method is called for the first time
(created only when needed)
What is a Thread Safe Singleton?
The easier way to create a thread-safe singleton class is to make the global access method synchronized, so that only one thread can execute this method at a time.
What is used in an Efficient Thread Safe Singleton?
To avoid this extra overhead every time, double checked locking principle is used.
The synchronized block is used inside the if condition with an additional check to ensure that only one instance of singleton class is created.
What is a Decorator Pattern?
Attaches additional behavioural responsibilities to an object dynamically. Decorators provide a flexible alternative to sub classing for extending functionality
What are the principles of a decorator pattern?
- Code should be open for extension but closed for modification
- Try and design classes that are easy to extend to add new behaviour, but without changing the existing code base
- Code extension doesn’t only have to come through inheritance in OOP
- Favour object composition over class inheritance
What are some limitations of decorator classes?
Takes time and effort
Introduces new levels of abstraction to the object composition
List 4 key facts of decorator classes
- You can use one or more decorators to wrap an object
- Decorators have the same super type as the objects they decorate
- Objects can be decorated at any time, so we can perform dynamic runtime
decoration - Behaviour comes through the composition of decorators with the base components
What does the Command pattern do?
Encapsulates a request as an object, thereby letting you parameterise other objects with different requests, queue or log requests, and support undoable operations
What does an invoker do in a command pattern?
Holds a command and at some point asks the Command to carry out a request by calling its execute() method
What does a command do in a command pattern?
Is like a “request” or “order” that tells an object (or system) to do something specific
Example:
Think of it like sending a written instruction (the command) to a worker (the receiver) without worrying about how the worker completes the task. You just give the command, and the worker handles the rest.
What does a concretecommand do in a command pattern?
It takes the request and knows how to perform it by calling the correct method on the appropriate object (called the “receiver”).
Imagine you give a worker a task, like “turn on the light.” The ConcreteCommand is the actual instruction, saying “I want you to turn on this specific light.” It packages the action in a way that the system can execute it.
What does a receiver do in a command pattern?
Performs the work required to carry out the request. Effectively any class can act as a Receiver
What does a client do in a command pattern?
Creates and sends commands. The client is responsible for specifying what action needs to be performed, but it doesn’t directly carry out the action itself.
What are all the different types of patterns?
- Factory pattern
- Abstact factory pattern
- Builder pattern
- Singleton pattern
- Decorator pattern
- Command pattern
What design are design patterns primarily based on?
OOP design
What are OOP design principles?
- Encapsulate what varies
- Program to an interface, not an implementation
- Favour “object composition” over class inheritance
- “open-close principle” - classes should be open for extension but close for
modification - “Dependency inversion principle” - Depend upon abstractions. Do not depend upon
concrete classes
What does Java Generics do?
Add stability to code by making more bugs detectable at compile time
Why use Java Generics?
- Add stability to code by making types detectable at compile time allowing you to use different types and ensure type safety
- Allows generic programming for reusable algorithms
- Use can lead to safer code, as bugs that may appear at runtime, can be deleted at compile time
What are the key benefits of Java Generics?
- Avoids casting objects
- Ensures type-safe collections and methods
What are the 3 types of generics?
- Generic types
- Generic methods
- Generic constructors
In this Non-Generic Example what is the issue?
public class Container {
private Object contents;
public void add(Object contents) {
this.contents = contents;
}
public Object get() {
return contents;
}
}
- Requires careful type casting during retrieval
- Prone to runtime errors
How would you use this Generic Type?
public class Container<T> {
private T contents;
public void add(T contents) {
this.contents = contents;
}
public T get() {
return contents;
}
}</T>
Container<Double> container = new Container<>();
container.add(3.7); // Type-safe
Double value = container.get();</Double>
What are the Naming Conventions for Generics?
- E: Element (used in collections)
- K: Key
- N: Number
- T: Type
- V: Value
Use single, uppercase letters by convention
How would you use this generic method?
public class MyClass<T> {
public <a> void genericMethod(A var) {
// Method logic
}
}</a></T>
MyClass<Integer> obj = new MyClass<>();
obj.genericMethod("Hello");</Integer>
What are Bounded Types?
Use bounds for restricting types
Syntax:
- extends: T extends Number
- super: T super Number
What is Subtyping?
Subtyping allows a type (subtype) to inherit behavior and attributes from another type (supertype). Subtypes can be used in places where supertypes are expected.
Double and Integer are subtypes of Number
?: Known as wilcard
What is Type Erasure?
- Compiler removes all generic type information during compilation
- Generic types are replaced with raw types at runtime
What is Heap Pollution?
Happens when the type of data stored in the heap memory doesn’t match the type the program expects. This can lead to errors or unexpected behavior.
Example:
Imagine you have a box labeled “Toys,” but someone puts “Books” in it. When you later grab something from the box expecting a toy, you might get a book instead. That confusion is like heap pollution in code.
What causes Heap Pollution?
Mixing raw and generic types - leads to warnings or runtime errors
How would you avoid version mixing?
- Use parameterized types consistently in new code
- Avoid mixing raw types with generics
What is a Collection?
An object that groups multiple elements into a single unit
Example:
Poker hand: collection of cards
Mail folder: collection of letters
Telephone directory: mapping names to phone numbers
What is a Map?
Group of key-value pairs
Collection vs Map
Collection: A group of objects known as elements
Map: A group of objects where keys map to values
Collection Interface purpose and Key Methods ?
Purpose: Root interface of most collection classes
Key Methods:
Basic Operations: Add, remove, size, clear, etc.
Bulk Operations: Add all, remove all, retain all.
Array Operations: Convert the collection to an array.
Defin a Set Interface
Contains no duplicate elements.
Two Sets are considered equal if they have the same elements.
What are the 3 set interface concrete implementations?
HashSet: Fastest but no guaranteed order
TreeSet: Sorted order, slower than HashSet
LinkedHashSet: Ordered by insertion order
Define a List Interface
A list is an ordered collection of elements. It may contain duplicate elements
What are the 2 list interface concrete implementations?
ArrayList: Uses dynamically resizing arrays
LinkedList: Uses doubly linked list.
What are the list interface’s key methods?
Get/set elements by index
Add/remove elements at specific positions
Queue Interface Definition and Key Methods?
Definition: Stores elements for processing, typically in FIFO order
Key methods:
- Add/Offer: Insert elements
- Remove/Poll: Retrieve and remove the head of the queue
- Peek: Retrieve the head without removing it
Deque Interface Definition and Key Methods?
Definition: A Deque (double-ended queue) supports insertion and deletion at both ends.
Key Methods:
- Insert: addFirst(), addLast(), offerFirst(), offerLast()
- Remove: removeFirst(), removeLast(), pollFirst(), pollLast()
- Examine: getFirst(), getLast(), peekFirst(), peekLast()
What is a Map Interface?
A Map stores key-value pairs, where each key maps to at most one value.
Map Interface Key Methods?
Key Methods:
- put(K key, V value): Add a key-value pair
- get(Object key): Retrieve the value for a key
- remove(Object key): Remove a key-value pair
- containsKey(Object key): Check if a key exists
Map Interface Concrete Implementations?
- HashMap: Fastest, no order guarantees
- TreeMap: Sorted by keys
- LinkedHashMap: Maintains insertion order
What is a Reflection?
Allows a program to inspect and manipulate its structure at runtime (classes, methods, constructors, fields)
What is a Reflection’s key uses?
- Examine the class structure at runtime
- Dynamically invoke methods or access fields
- Interact with objects that were not known at compile time
How would you obtain Class Objects from an instance?
Class<?> cls = new Circle().getClass();
How would you obtain Class Objects from an class name?
Class<?> cls = Class.forName(“java.lang.String”);
How would you obtain Class Objects from an .class?
Class<?> cls = int.class;
Explain how you can obtain Class Objects from an instance, class name and .class
Every object has an immutable Class instance, which provides runtime properties and serves as the entry point for reflection.
What are Reflection API - Class Instance Field Methods?
getFields(): Returns all public fields.
getDeclaredFields(): Returns all fields, regardless of access modifier.
What are Reflection API - Class Instance Constructor Methods?
getConstructors(): Returns public constructors.
getDeclaredConstructors(): Returns all constructors, including private ones.
What are Reflection API - Class Instance Method Methods?
getMethods(): Returns all public methods.
Retrieve a specific method:
- Method method = cls.getMethod(“methodName”, ParameterTypes);
How would you create Instances using Reflection?
Class.newInstance():
- Calls the no-argument constructor.
- Requires the constructor to be visible.
Preferred:
- Constructor<?> constructor = cls.getDeclaredConstructor(ParameterTypes);
Object obj = constructor.newInstance(Arguments);
What are Security Considerations with Reflections?
Controlled by JVM Manager:
- Public fields/methods are accessible by default
- Private fields/methods need:
- field.setAccessible(true);
Risks:
- Can expose private data
- May create security vulnerabilities in restricted environments
What are the Performance and Risks with Reflections?
Reflection is slower than direct execution due to runtime resolution.
Risks:
- Breaking abstractions (unexpected side effects).
- Reduced portability across Java versions.
- Harder to optimize reflective code.
What are the applications of reflection?
- Testing: Simulate states or enforce conditions.
- Debugging: Inspect programs and identify errors dynamically.
- Code Analysis: Inspect class structures for higher test coverage.
What are the key takeaways from reflection?
Enables dynamic interactions with Java objects.
Use with caution due to security risks and slower performance.
Commonly used in tools like debugging, testing frameworks, and dynamic proxies.
Define Networking
Communication between computers over a network.
Enables the Internet, mobile apps, and distributed computing.
What are the 3 types of Java Networking?
- TCP (Transmission Control Protocol): Reliable communication.
- UDP (User Datagram Protocol): Fast but less reliable communication.
- RMI (Remote Method Invocation): Interaction between Java Virtual Machines (JVMs).
What is benefits of TCP?
- Reliable, connection-based communication.
- Guarantees:
- Data arrives in order.
- Errors are reported if data order is violated. - Used for applications needing data integrity (e.g., HTTP, FTP).
What are the benefits of UDP?
- Unreliable, connectionless communication.
- Features:
- No guaranteed data order or packet delivery.
- Lightweight, minimal error-checking. - Ideal for live streaming or gaming.
What do ports do?
Direct data to the correct application on a machine
What is an IP address?
Identifies the computer on a network
What is a Port Number?
Identifies the application on a network
What is the most common port range?
0-1023: Well-known ports (HTTP port 80 etc.)
Define a socket
Endpoints for communication between two machines
How do TCP sockets work?
A server listens on a specific IP and port for client connections
Workflow:
- Server binds a socket to a port
- Client connects using the server’s hostname and port
- if accepted, a new socket is created for communication
How do UDP sockets work?
- Communication involves sending independent packets (datagrams)
- No dedicated channel or guarantees for delivery/order
How to read/write with sockets using TCP?
- Open a socket
- Create input and output streams
- Read/write data based on the server’s protocol
- Close the streams and socket
How to read/write with sockets with UDP?
- Send data using DatagramPacket
- Server processes datagrams independently, with no guaranteed sequence
TCP vs UDP Key Differences
Feature | TCP | UDP
Connection | Connection-based | Connectionless
Reliability | Reliable | Unreliable
Order Guarantee | Maintains data order | No order guarantee
Use Cases | HTTP, FTP | Live streaming, gaming
Key information about Networking and sockets in Java?
- Java’s networking API simplifies communication using TCP and UDP.
- TCP: Reliable, suited for critical data transfer.
- UDP: Lightweight, faster, less reliable.
- Choose based on the application’s need for reliability, speed, and data integrity.
Define RMI?
Allows an object in one JVM (Java Virtual Machine) to invoke methods on an object in another JVM, possibly on a different physical machine.
What is the RMI Architecture?
- Server: Creates and registers remote objects.
- Client: Obtains references to remote objects and invokes methods on them.
What are the application of RMI?
- Enables distributed object communication.
- Supports thin-client architecture by offloading processing to servers.
What are the Key Concepts of Distributed Object Applications?
Remote Object Location:
- The registry maps remote objects to names.
- References to remote objects are passed for method invocations.
Remote Object Communication:
- RMI handles communication, making it resemble local method calls.
Class Definitions:
- RMI dynamically supports passing class definitions and object contents.
What are the Basic Components in Java RMI?
Registry:
Maps remote objects to names.
- Methods: bind(), rebind(), lookup().
Server:
Registers remote objects in the registry.
Client:
Looks up remote objects and invokes methods.
Define a Remote Interface
The interface must extend java.rmi.Remote and its methods must throw RemoteException
Example:
public interface Adder extends Remote {
int add(int a, int b) throws RemoteException;
}
What is the Object Interaction in RMI Framework?
The process where a program on one computer calls methods or interacts with objects on another computer through RMI
What do Policy Files do?
Define permissions for downloaded code
Example:
grant codeBase “file:/path/to/classes/*” {
permission java.security.AllPermission;
};
How would you run the RMI System?
Server Setup:
1. Compile server-side classes.
2. Start RMI Registry (rmiregistry).
3. Launch server application.
Client Setup:
1. Compile client-side classes.
2. Run the client with server details (hostname, port).
What are the key advantages of RMI?
- Simplifies distributed computing by abstracting network communication
- Easily calls methods on remote objects
- Facilitates scalable and modular system design.
What are the key limitations of RMI?
- Tied to Java, limiting cross-platform capabilities.
- Security configuration requires careful setup.
- Network latency affects performance.
Define Dynamic Code Loading in RMI
RMI enables downloading a class definition along with the object reference during remote method invocation
What is the purpose of Dynamic Code Loading in RMI?
Allows the client to automatically download and use classes from the server at runtime, without needing to have those classes already present on the client machine
What is a requirement in order for Dynamic Code Loading in RMI to work?
Classes must be downloadable during RMI
What is the role of Class Loaders in Java?
Every Java class used by the JVM is loaded by a class loader. It manages how classes are loaded into the JVM
What are the types of Class Loaders in Java?
- Bootstrap Class Loader:
- Loads core Java libraries.
- Part of the JVM for efficiency.
- Extension Class Loader:
- Loads classes from the system-wide extension directory.
- System Class Loader:
- Loads classes from the current directory or CLASSPATH.
What is the order of Precedence of Class Loaders in Java?
Bootstrap > Extension > System
What are Custom Class Loaders?
Can dynamically add classes or search application directories for JAR files.
Example: Subclass java.lang.ClassLoader.
Define RMI Architecture
Layers:
1. Application Layer: Contains client and server programs
2. Stub & Skeleton Layer: Redirects client calls to remote RMI services
3.Remote Reference Layer: Manages references between client and server objects
4. Transport Layer: Handles communication via TCP/IP
.
Whats the difference of Distributed vs Non-Distributed Models?
Distributed = Multiple devices sharing the load.
Non-Distributed = One device doing all the work.
What is the purpose of downloading Java RMI Stubs?
RMI stubs act as client-side proxies for remote objects.
- Forward method invocations to the actual remote object.
What are the key advantages of RMI?
- Dynamic Behavior: Extend JVM behavior dynamically at runtime.
- Seamless Remote Communication: Remote method calls behave like local method calls.
- Cross-Platform Compatibility: Supports enterprise systems across multiple platforms.
What is the summary of Software Development?
Software Development Life Cycle:
- Models: Waterfall, Prototyping, RAD, Agile, V-Model, Test-Driven Development.
Core Java Concepts:
- Nested classes, concurrency, event listeners.
Testing Frameworks:
- Unit testing with JUnit or mock objects.
Design Patterns:
- Factory, Singleton, Builder, Decorator.
Advanced Java Features:
- Generics, Collections, Reflection, Sockets, RMI.
What is a Stub?
Like a proxy on the client-side that makes the call to the remote object
What is a Skeleton?
Helps on the server-side to receive the call and pass it to the actual remote object
What are the 7 stages of the SDLC?
- Planning
- Requirement Analysis
- System Design
- Implementation
- Testing
- Deployment
- Operation and Maintenance