CSIT-112 Final Study Guide

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to Lesson

Podcast

Play an AI-generated podcast conversation about this lesson
Download our mobile app to listen on the go
Get App

Questions and Answers

Which term does NOT refer to the original class in inheritance?

  • Child (correct)
  • Super
  • Parent
  • Base

An abstract method has a body.

False (B)

What does inheritance create in terms of class relationships?

Is-A relationship

The _____ class represents general concepts that derived classes have in common.

<p>abstract</p> Signup and view all the answers

Match the sorting algorithms with their descriptions:

<p>Selection Sort = Finds the smallest value and switches it with the first position Insertion Sort = Builds a sorted array one item at a time Bubble Sort = Repeatedly swaps adjacent elements if they are in the wrong order Quick Sort = Divides the array into smaller sub-arrays based on a pivot element</p> Signup and view all the answers

What does the compareTo method return if input1 is greater than input2?

<p>1 (D)</p> Signup and view all the answers

Polymorphism allows us to call the same method with different implementations.

<p>True (A)</p> Signup and view all the answers

What is the process of arranging a list of items in a particular order called?

<p>sorting</p> Signup and view all the answers

A search pool is defined as a group of _____ .

<p>items</p> Signup and view all the answers

What happens to a method called through a polymorphic reference?

<p>It executes and can change based on the object type (A)</p> Signup and view all the answers

What is the primary policy of a queue?

<p>First in First Out (FIFO) (C)</p> Signup and view all the answers

A binary tree can have more than two child nodes for a single parent.

<p>False (B)</p> Signup and view all the answers

What are the two operations associated with a queue?

<p>Enqueue and Dequeue</p> Signup and view all the answers

A map establishes a relationship between ____ and ____.

<p>keys, values</p> Signup and view all the answers

Match the following data structures with their characteristics:

<p>Queue = FIFO operation Tree = Hierarchical structure Graph = Connection of nodes without a root Map = Key-value pair relationships</p> Signup and view all the answers

Which of the following methods is used to add a new entry to a map?

<p>put (D)</p> Signup and view all the answers

A directed graph consists of vertices connected by arrows.

<p>True (A)</p> Signup and view all the answers

What is the purpose of a try-catch statement?

<p>To allow a block of code to be tested for errors during execution (C)</p> Signup and view all the answers

The throwable class provides access to the keyword 'throw'.

<p>True (A)</p> Signup and view all the answers

What is a lambda function?

<p>A short block of code that takes parameters and returns a value.</p> Signup and view all the answers

What is a base case in recursion?

<p>The condition that terminates the recursive processing.</p> Signup and view all the answers

In a graph, the absence of a root makes it a ____ structure.

<p>non-linear</p> Signup and view all the answers

What is one of the key limitations of a lambda expression?

<p>It cannot contain variables. (B)</p> Signup and view all the answers

The process by which an exception is thrown from the top of the call stack is known as __________.

<p>exception propagation</p> Signup and view all the answers

Match the following I/O streams with their descriptions:

<p>System.out = Represents the console window for output System.in = Represents keyboard input System.err = Represents the console window for error output</p> Signup and view all the answers

Which of the following scenarios could cause an exception to be thrown?

<p>Dividing by zero (A), Reading from a file (C)</p> Signup and view all the answers

Recursion requires at least one base case to function correctly.

<p>True (A)</p> Signup and view all the answers

What happens if we do not define a base case in a recursive function?

<p>It leads to infinite recursion.</p> Signup and view all the answers

Indirect recursion involves __________ invoking itself.

<p>one method</p> Signup and view all the answers

What does the call stack trace provide information about?

<p>The method, file, and line number of the error (D)</p> Signup and view all the answers

Which of the following describes a stack?

<p>Last in First Out (LIFO) data structure (D)</p> Signup and view all the answers

A dynamic data structure can shrink or grow when needed.

<p>True (A)</p> Signup and view all the answers

What is the primary operation of a queue?

<p>FIFO (First in First Out)</p> Signup and view all the answers

In a linked list, each element contains a key and a pointer called ______ that points to its successor.

<p>next</p> Signup and view all the answers

Match the data structure with its characteristic:

<p>Stack = LIFO Structure Queue = FIFO Structure Linked List = Dynamic Size Array = Fixed Size</p> Signup and view all the answers

What is stable sorting?

<p>Elements with the same value retain their order. (C)</p> Signup and view all the answers

A dynamic data structure cannot contain references to other objects.

<p>False (B)</p> Signup and view all the answers

What are two main functions used to maintain a stack?

<p>Push and Pop</p> Signup and view all the answers

A static data structure has a fixed ______.

<p>size</p> Signup and view all the answers

What types of data structures can be built using references?

<p>Trees, Linked Lists, Graphs (C)</p> Signup and view all the answers

Flashcards

Inheritance

A fundamental object-oriented technique where a new class inherits properties and methods from an existing class, promoting code reuse and creating hierarchies of classes.

Parent Class

The initial class from which traits and behaviors are inherited. Also known as a Base Class.

Child Class

A class that derives its properties and methods from a parent class, creating a specialized version. Also known as a Derived Class.

Is-A Relationship

A relationship that demonstrates clear hierarchy - one class is a specialized version of another.

Signup and view all the flashcards

Transitive Inheritance

Inheritance is transitive when a child class can inherit traits from both its parent and the parent's parent, going up a chain.

Signup and view all the flashcards

Abstract Method

A method declared without an implementation body, meant to be defined in derived classes. It signifies a function that must be provided in the subclasses.

Signup and view all the flashcards

Abstract Class

A class that represents a common concept or structure, often containing abstract methods. It cannot be instantiated directly.

Signup and view all the flashcards

Polymorphism

The ability of an object to behave differently based on the context or type it's invoked through. It means one method can have multiple implementations based on the actual type of the object it's being applied to.

Signup and view all the flashcards

Sorting

The process of arranging a list of items in a specific order, typically ascending or descending.

Signup and view all the flashcards

compareTo Method

A method designed to compare two inputs. It returns a negative value if input1 is less than input2, zero if they are equal, and a positive value if input1 is greater than input2.

Signup and view all the flashcards

Exceptions

Problems or unusual situations that may occur in a program, not a "error". Examples include dividing by zero, unable to read a file, an array index out of bounds, math errors, etc.

Signup and view all the flashcards

Try-Catch Statements

A structured way to handle exceptions. A 'try' block encloses code that might throw an exception, and a 'catch' block defines how to handle it.

Signup and view all the flashcards

Exception Propagation

An exception is first thrown from the top of the call stack and if it's not caught, it drops down to the previous method in the call stack.

Signup and view all the flashcards

Call Stack Trace

The Method, file, and line number where an exception occurred.

Signup and view all the flashcards

Throwable Class

A special class representing the exception, providing information about the error. It allows us to use 'throw' to explicitly trigger an exception.

Signup and view all the flashcards

Recursion

The process of defining something in terms of itself. It's used to break down complex problems into smaller subproblems until a base case is reached.

Signup and view all the flashcards

Base Case

The condition that terminates the recursive processing, allowing the active recursion methods to begin returning to their point of invocation.

Signup and view all the flashcards

Standard I/O Streams

The three standard I/O streams in Java: System.out, System.in, and System.err.

Signup and view all the flashcards

System.out

Represents the console window, used for displaying output.

Signup and view all the flashcards

System.in

Represents the keyboard input, allowing users to type data into the program, similar to a Scanner.

Signup and view all the flashcards

What is a collection?

An object that stores a collection of other objects.

Signup and view all the flashcards

What are some operations for managing collections?

Operations that allow you to add, remove, or manage elements in a collection, like 'add,' 'remove,' 'pop,' 'push,' etc.

Signup and view all the flashcards

What is stable sorting?

A sorting algorithm where elements with the same value appear in the output array in the same order as they were in the input array.

Signup and view all the flashcards

What is unstable sorting?

A sorting algorithm where the original order of elements with the same value is not preserved in the output array.

Signup and view all the flashcards

What is an abstract data type (ADT)?

A data type that combines a set of data with specific operations allowed on that data.

Signup and view all the flashcards

What defines a static data structure?

A data structure with a fixed size that cannot be changed.

Signup and view all the flashcards

What is a dynamic data structure?

A data structure that can grow or shrink as needed.

Signup and view all the flashcards

What is a reference (pointer)?

A reference (or pointer) is a special type of data that points to the memory location of another object. It establishes a link between objects.

Signup and view all the flashcards

What data structures can be created with references?

Data structures that can be created using references to connect objects, examples include: Trees, Linked Lists, and Graphs.

Signup and view all the flashcards

What is a linked list?

A linear data structure where each element (node) points to the next element in the sequence.

Signup and view all the flashcards

Queue

A linear data structure that follows the First-In, First-Out (FIFO) principle. Items are added to the rear and removed from the front.

Signup and view all the flashcards

Enqueue

The operation used to add an item to the rear of a queue.

Signup and view all the flashcards

Dequeue

The operation used to remove an item from the front of a queue.

Signup and view all the flashcards

Tree

A non-linear data structure where data is organized in a hierarchical structure, similar to a family tree. Each node has zero or more children.

Signup and view all the flashcards

Binary Tree

A special type of tree where each node has a maximum of two child nodes.

Signup and view all the flashcards

Graph

A non-linear data structure where nodes are connected by edges. Unlike trees, there's no specific root node.

Signup and view all the flashcards

Directed Graph

A graph where the connections between nodes are directional, indicated by arrows.

Signup and view all the flashcards

Undirected Graph

A graph where the connections between nodes are not directional, indicated by lines.

Signup and view all the flashcards

Map

A data structure that associates keys with values. Efficient for storing and retrieving information.

Signup and view all the flashcards

TreeMap

A data structure that implements a map using a tree structure. The keys are ordered based on a predefined sorting mechanism.

Signup and view all the flashcards

Study Notes

CSIT-112 Final Study Guide

  • The final exam will cover the entire course, with a focus on the second half.
  • Students should review all concepts in the guide to prepare thoroughly.

Lecture 1

  • Inheritance is a fundamental object-oriented design technique for creating and organizing reusable classes.
  • Original classes can be referenced as Parent, Super, or Base.
  • Derived classes can be referenced as Child or Subclass.
  • Proper inheritance creates an "is-a" relationship.

Lecture 2

  • Inheritance is transitive, meaning a subclass inherits properties from the top class.
  • An abstract method is declared without implementation.
  • Abstract classes represent general concepts shared by derived classes.

Lecture 4

  • Polymorphism allows defining one interface with multiple implementations.
  • A method called through a polymorphic reference can change its behaviour.

Lecture 5

  • Sorting arranges items in a specific order.
  • Selection sort finds the smallest value and swaps it with the first position, then repeats.

Lecture 6

  • The compareTo method compares two inputs and returns a value:
    • Negative if input1 < input2
    • Zero if input1 == input2
    • Positive if input1 > input2
  • Insertion sort is another sorting strategy.

Lecture 7

  • A search pool is a collection of items.

Lecture 8

  • Exceptions represent problems or unusual situations in a program.
  • Examples include dividing by zero, file reading errors, and array index issues.
  • Call stack traces display the method calls leading to exceptions, detailing relevant data.

Lecture 9

  • Try-catch statements allow testing code for potential errors and handle them appropriately.
  • Exception propagation describes how exceptions travel through a program's call stack.

Lecture 10

  • Input/output streams (system.in, system.out, system.err) handle console interactions.
    • System.in: keyboard input
    • System.out: console output
    • System.err: console error output
  • Recursion defines something in terms of itself.
  • The base case of a recursive solution stops further recursive calls.
  • Recursive methods must have a base case to prevent infinite looping.
  • Recursive solutions can solve complex problems by breaking them into smaller subproblems.

Lecture 11

  • Recursion is the process of defining something in terms of itself.
  • Problem breakdown into smaller subproblems until the base case is reached.
  • Base case is important for recursive procedures that will otherwise loop infinitely.
  • Recursive problems were covered and examples/details are available for review.
  • Insufficient base case causes infinite recursion.

Lecture 12

  • Direct recursion is when a function calls itself directly.
  • Indirect recursion is when a function calls another function, which in turn calls the first function.

Lecture 13

  • Collections are objects that store other objects.
  • Stable sorting maintains the relative order of equal elements in the input data.
  • Unstable sorting does not guarantee this order of equal elements.
  • Abstract data types define data and operations on that data.
  • Static data structures have a fixed size.
  • Dynamic data structures can grow and shrink as needed.
  • References/Pointers relate objects in dynamic data structures.
  • Data structures like trees, lists, graphs can be constructed using references/pointers.

Lecture 14

  • Stacks are linear dynamic data structures that use LIFO (Last In, First Out) policy.
  • Stacks are used for insertion and deletion.

Lecture 15

  • Trees and graphs are non-linear data structures.
  • Trees have attributes like nodes, edges, children, parent, root, key.
  • Binary trees are tree structures whose nodes have a maximum of two children.
  • Graphs are non-linear structures and do not have a root.

Lecture 16

  • Graphs can be directed or undirected.
  • Maps store key-value pairs.
  • Efficient for searching values by keys.
  • TreeMap and HashMap are two common implementations.
  • Lambda expressions are short blocks of code that can be applied to streams of data.
  • Streams provide efficient ways of processing data.
  • Lambda expressions often use parameters and return values to process data.

Studying That Suits You

Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

Quiz Team

Related Documents

CSIT-112 Final Study Guide PDF

More Like This

Use Quizgecko on...
Browser
Browser