Programming Paradigms Midterm Terms | Quizlet

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/56

Anonymous user
Anonymous user
encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

57 Terms

1
New cards

JVM

Java Virtual Machine (JVM) is a virtual machine that enables a computer to run Java programs

2
New cards

JDK

Java Development Toolkit (JDK) is a distribution of Java Technology by Oracle Corporation

3
New cards

compiler

A compiler is a special program that translates a programming language's source code into machine code, bytecode, or another programming language

4
New cards

bytecode

Bytecode is computer object code that an interpreter converts into binary machine code so it can be read by a computer's hardware processor

5
New cards

main

The main function serves as the starting point for program execution

6
New cards

void

Void functions are created and used just like value-returning functions except they do not return a value after the function executes

7
New cards

constructor

A Java constructor is a special method that is used to initialize objects

8
New cards

default constructors

A default constructor is a constructor created by the compiler if we do not define any constructor(s) for a class

9
New cards

import

Java import declares a Java class to be used in the code it's being imported into

10
New cards

primitive types

- Primitive types are the most basic data types available within the Java language

-There are eight primitive types in Java: boolean, byte, char, short, int, long, float, and double

- Boolean is always initialized to false, and the rest are initialized to 0

11
New cards

reference

A reference is an address that indicates where an object's variables and methods are stored

12
New cards

reference type (aka class type)

Reference type variables are objects (such as String and ArrayList) and they are always initialized to null

13
New cards

Object and objects

A java object is a member (also called an instance) of a Java class

14
New cards

class

A class is a user defined blueprint or prototype from which objects are created

15
New cards

casting

Casting is when you assign a value of one primitive data type to another

16
New cards

instance

An instance variable is a variable that is specific to a certain object

17
New cards

inheritance

Inheritance in Java is the method to create a hierarchy between classes by inheriting from other classes

18
New cards

this

The this keyword refers to the current object in a method or constructor

19
New cards

super

The super keyword refers to superclass (parent) objects

20
New cards

static

The static keyword in Java indicates that a particular member is not an instance, but rather part of a type

21
New cards

local variable

A local variable in Java is a variable that's declared within the body of a method

22
New cards

member variable

A member variable (aka instance variable) is declared in a class, but outside a method

23
New cards

class variable

Class variables are similar to member variables but they're declared with the static keyword

24
New cards

scope

Scope is when variables are only accessible inside the region they are created

25
New cards

exceptions

An exception is an event that disrupts the normal flow of the program's instructions

26
New cards

try/catch block

- A try/catch block is the block of code in which exceptions occur

-The try statement allows you to define a block of code to be tested for errors while it is being executed

-The catch statement allows you to define a block of code to be executed if an error occurs in the try block

27
New cards

throw

The throw keyword in Java is used for explicitly throwing a single exception

28
New cards

new

The new keyword is used to create an instance of the class

29
New cards

allocate

Memory allocation in Java refers to the process where the computer programs and services are allocated dedicated to virtual memory spaces

30
New cards

instantiate

Creating an object by using the new keyword is called instantiation

31
New cards

interface

In Java, an interface specifies the behavior of a class by providing an abstract type

32
New cards

implements

The implements keyword is used to implement an interface

33
New cards

declare

Used when you want to declare a variable

34
New cards

initialize

In Java, an initializer is a block of code that has no associated name or data type and is placed outside of any method, constructor, or another block of code

35
New cards

extends

extends keyword is used to extend the functionality of the parent class to the subclass

36
New cards

shadowing

shadowing is the practice of using variables in overlapping scopes with the same name where the variable in low-level scope overrides the variable of high-level scope

37
New cards

polymorphism

polymorphism refers to the ability of a class to provide different implementations of a method, depending on the type of object that is passed to the method

38
New cards

abstract

The abstract keyword is a non-access modifier, used for classes and methods

39
New cards

collections

The Java collections framework provides a set of interfaces and classes to implement various data structures and algorithms

40
New cards

iterators

An Iterator is an object that can be used to loop through collections, like ArrayList and HashSet

41
New cards

ArrayList

An ArrayList class is a resizable array, which is present in the java. util package

42
New cards

public

can be accessed by anything

43
New cards

private

can only be accessed by the class in which it is declared

44
New cards

protected

can be accessed by anything except the world (it is not visible outside the package)

45
New cards

ConncurrentModificationException

The ConcurrentModificationException is used to fail-fast when something being iterated on is modified

46
New cards

RuntimeException

RuntimeException is the superclass of those exceptions that can be thrown during the normal operation of the Java Virtual Machine

47
New cards

NullPointerException

NullPointerException is a runtime exception in Java that occurs when a variable is accessed which is not pointing to any object and refers to nothing or null

48
New cards

overriding

In Java, method overriding occurs when a subclass (child class) has the same method as the parent class

49
New cards

overloading

Method overloading in java is a feature that allows a class to have more than one method with the same name, but with different parameters

50
New cards

model-view-controller architecture

-Model updates the View

-View sends input to the controller

-Controller manipulates the model

-Sometimes the controller updates the view directly

51
New cards

What is encapsulation?

Encapsulation is the bundling of data and the methods that operate on that data within a single unit, often a class in object-oriented programming.

52
New cards

What is a stack?

A stack is a linear data structure that follows the Last In First Out (LIFO) principle, where the last element added is the first one to be removed.

53
New cards

What is a heap?

A heap is a specialized tree-based data structure that satisfies the heap property, where the parent node is either greater than or equal to (max-heap) or less than or equal to (min-heap) its child nodes.

54
New cards

What is the difference between throw and throws?

'throw' is used to explicitly throw an exception in the body of a method, while 'throws' is used in method declarations to specify that a method may throw one or more exceptions.

55
New cards

What is abstraction in programming?

Abstraction is the concept of hiding the complex implementation details and showing only the essential features of an object.

56
New cards

What is the principle of least privilege?

The principle of least privilege states that a user, program, or system should have only the minimum privileges necessary to perform its tasks.

57
New cards

What are shallow copies and deep copies?

Shallow copies create a new object, but do not create copies of nested objects; a deep copy creates a new object and also recursively copies all nested objects.