Java Evolution: EEE 32502

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 factor significantly influenced the design of Java, leading to its platform independence?

  • The need for faster processing speeds compared to C++.
  • The environmental shift towards platform-independent programs for internet distribution. (correct)
  • The desire to create proprietary software for Sun Microsystems.
  • The limitations of existing languages in handling complex mathematical computations.

What inherent challenge do applets, designed to be transmitted over the Internet, pose?

  • Ensuring consistent graphical performance across different browsers.
  • Complicated compatibility with server-side scripting languages.
  • Requiring manual installation on each client machine.
  • Presenting security and portability concerns due to automatic execution on client computers. (correct)

How does the Java Virtual Machine (JVM) contribute to Java's portability?

  • By directly converting Java source code into machine code optimized for each operating system.
  • By providing a universal API that all operating systems must implement.
  • By executing bytecode, a platform-independent intermediate representation of Java code. (correct)
  • By dynamically linking Java programs with operating system libraries at runtime.

What is the significance of bytecode in the context of Java's architecture?

<p>It is an intermediate, platform-independent code executed by the JVM. (A)</p> Signup and view all the answers

In object-oriented programming, how does encapsulation contribute to software robustness?

<p>By bundling data and code that operates on that data, protecting it from outside interference. (A)</p> Signup and view all the answers

What is the primary purpose of abstraction in object-oriented programming?

<p>To simplify complex systems by modeling classes based on essential details. (D)</p> Signup and view all the answers

How does inheritance support hierarchical classification in Java?

<p>By allowing a class to acquire properties and behaviors from another class, forming a hierarchy. (B)</p> Signup and view all the answers

What capability does polymorphism provide in object-oriented programming?

<p>The ability for a single interface to represent different types of objects, allowing them to be treated generically. (D)</p> Signup and view all the answers

What is the significance of the public static void main(String args[]) method in a Java program?

<p>It is the entry point where the execution of a Java program begins. (D)</p> Signup and view all the answers

What role does the javac command play in the Java development process?

<p>It compiles Java source code into bytecode. (D)</p> Signup and view all the answers

Why is it important for the filename to match the class name in Java?

<p>The Java compiler requires it to locate and compile the class correctly. (C)</p> Signup and view all the answers

What happens if the main() method is misspelled (e.g., Main())?

<p>The program will compile, but the Java runtime will not recognize it as the entry point. (C)</p> Signup and view all the answers

Which programming paradigm is characterized by dividing large programs into smaller parts known as functions?

<p>Process-oriented programming (A)</p> Signup and view all the answers

In process-oriented programming, what aspect receives less attention during development?

<p>The data being used by various functions (A)</p> Signup and view all the answers

What potential issue arises from placing important data items as global in a multi-function program?

<p>It makes the data more vulnerable to accidental modification by any function. (C)</p> Signup and view all the answers

Which language is a prime example of a procedural-oriented programming language?

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

What principle is central to object-oriented programming (OOP) that differs from procedural programming?

<p>Treating data as a critical element, protecting it from flowing freely around the system. (B)</p> Signup and view all the answers

In OOP, how is a problem typically approached in terms of decomposition?

<p>The problem is divided into a number of entities called objects. (B)</p> Signup and view all the answers

In object-oriented programming, what mechanism restricts direct access to an object's data?

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

What combines data-hiding and abstraction to expose the class to the end-user without implementation details?

<p>Encapsulation (C)</p> Signup and view all the answers

Which of the following is an advantage of encapsulation?

<p>It restricts access of the data members by hiding the implementation details. (C)</p> Signup and view all the answers

How can encapsulation be achieved?

<p>By declaring all variables in the class as private and writing public methods to set and get values. (D)</p> Signup and view all the answers

What term describes the ability of a new class to acquire the properties of an existing class?

<p>Inheritance (C)</p> Signup and view all the answers

Which of the following is a characteristic of inheritance?

<p>It allows code reuse and reduces the amount of code that needs to be written. (C)</p> Signup and view all the answers

Which of the following is the benefit of inheritance regarding polymorphism?

<p>Allows an object to take on multiple forms within the class hierarchy. (C)</p> Signup and view all the answers

Which concept allows a single interface to be used for a general class of actions, where the specific action is determined by the exact nature of the situation?

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

What is the role of Dynamic Method Dispatch?

<p>To resolve function calls to overridden methods at runtime (B)</p> Signup and view all the answers

Which of the following describes what occurs during method overriding?

<p>A derived class provides a specific implementation for a method that is already defined in its base class. (B)</p> Signup and view all the answers

How is abstraction achieved in Java?

<p>Through interfaces and abstract classes (A)</p> Signup and view all the answers

What is the relationship between encapsulation and data abstraction?

<p>Encapsulation is data hiding while abstraction is detailed (implementation) hiding. (C)</p> Signup and view all the answers

What is the role of JDK (Java Development Kit)?

<p>A kit that provides the environment to develop and execute the Java program (C)</p> Signup and view all the answers

What makes up JRE (Java Runtime Environment)?

<p>It is an environment to only run the java program onto your machine. (A)</p> Signup and view all the answers

What term would be described as a run-time engine to run Java applications?

<p>Java Virtual Machine (A)</p> Signup and view all the answers

What mechanism in Java is used to encapsulate a group of classes, subpackages, and interfaces?

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

Why put related classes into packages?

<p>To create a container of related classes (A)</p> Signup and view all the answers

What must be done with subpackages?

<p>They have to be imported explicitly (C)</p> Signup and view all the answers

What is the purpose of java.lang?

<p>Contains language support classes (D)</p> Signup and view all the answers

In Java, what should a well-written program do in regard to potential errors?

<p>Anticipate potential error situations and deal with them appropriately. (D)</p> Signup and view all the answers

In terms of error handling, what happens when an error is detected in Java?

<p>An exception is thrown, and the code that caused the error stops executing immediately. (B)</p> Signup and view all the answers

If a method includes code that could cause a checked exception to be thrown, what two actions can be taken?

<p>The exception must be declared in the method header using a throws clause or the code that might cause the exception to be thrown must be inside a try block with a catch clause for that exception. (B)</p> Signup and view all the answers

Flashcards

Why did Java Evolve?

Java evolved because computer languages need to adapt to changing environments and implement advances in programming.

What is Java's Platform Independence?

It means platform independence: programs run on any system with a JVM.

What is Java Bytecode?

A highly optimized set of instructions executed by the Java run-time system (JVM).

What are Java's Buzzwords?

It refers to the core principles such as being simple, secure, and portable.

Signup and view all the flashcards

What is a Process-Oriented Model?

A program is characterized as a series of linear steps (code acting on data).

Signup and view all the flashcards

What is Encapsulation?

It is to wrap data and code together, protecting it from outside access with controlled interfaces.

Signup and view all the flashcards

What is Inheritance?

It's the process where one object gains properties of another, supporting hierarchical classification.

Signup and view all the flashcards

What is Polymorphism?

It's a feature that allows one interface for a general class of actions, determined by context.

Signup and view all the flashcards

What is public or private in relation to classes?

It involved hiding the complexity of implementation inside the class using private or public.

Signup and view all the flashcards

Java Source File Naming?

A source file's name must match the class name defined within it. The class name is also important.

Signup and view all the flashcards

What is 'javac'?

It translates source code into bytecode.

Signup and view all the flashcards

What does 'java' do?

The Java Application Launcher executes the bytecode produced to run the program.

Signup and view all the flashcards

What does "class" keyword mean?

Keyword for declaring a new class. 'Example' in 'class Example'.

Signup and view all the flashcards

What is the public keyword?

It is an access modifier making class members accessible outside the class.

Signup and view all the flashcards

What does 'main()' mean?

It is the entry point of a Java program. Without it, the program will cause an error.

Signup and view all the flashcards

What is 'data' from the view of POP and OOP?

It is the data which the functions use. POP gives less attention, while OOP gives more attention.

Signup and view all the flashcards

What is the Java Development Kit (JDK)?

A kit that provides environment to develop and execute Java program.

Signup and view all the flashcards

What is the Java Runtime Environment (JRE)?

An environment to only run the Java program.

Signup and view all the flashcards

The Java Virtual Machine (JVM)?

It acts as a run-time engine to run Java applications. Also known as an interpreter.

Signup and view all the flashcards

What is Encapsulation?

It's a construct that wraps data under a single unit.

Signup and view all the flashcards

What is Data Hiding?

Hiding data from outside access. Achieved using private members and methods.

Signup and view all the flashcards

How is encapsulation achieved?

Declaring all variables in a class as private and providing public setter/getter methods.

Signup and view all the flashcards

What is Increased Flexibility in Encapsulation?

It gives control of access of data members, it can be read-only or write-only

Signup and view all the flashcards

Two Groups of Modifiers?

It controls the access label. Either controls accessibility, or provides information about functions to JVM.

Signup and view all the flashcards

What is 'public' or 'default' modifiers?

Classes can have 'public' (accessible by any class) or 'default'(only accessible by classes in the same package).

Signup and view all the flashcards

Attributes, Methods and Constructors (Access Modifiers)?

Code is fully accessible for all classes with public method, while code is only accessible in the same package for default methods

Signup and view all the flashcards

final vs abstract? (Non access modifiers.)

Classes cannot be inherited by other classes. (final) Classes cannot be created like objects (abstract)

Signup and view all the flashcards

Attributes & Methods (Final)?

Attributes and methods cannot be overridden or modified in inherited methods(final).

Signup and view all the flashcards

What is inheritance in Java?

Creating classes based on existing ones, allowing reuse of their methods and fields.

Signup and view all the flashcards

Code Reusability? (Inheritance.)

Reduces code duplication - re-use the methods and properties.

Signup and view all the flashcards

Abstraction through inheritance.

Constructing abstract classes which are used to maintain and extend code.

Signup and view all the flashcards

Modeling Hierarchy. (Inheritance).

Modelling real-world objects by using a heirarchy of classes

Signup and view all the flashcards

What is Polymorphism? (Inheritance)

An object to take several forms, subclasses override superclass methods to specialize their behavior.

Signup and view all the flashcards

What does polymorphism mean?

The ability of a message to display in more than one form.

Signup and view all the flashcards

Two types of Polymorphism

Compile and Run Time Polymorphism

Signup and view all the flashcards

When does 'Runtime' occur

Is achieved when a function call to the overridden method can be resolved at Runtime. (Method Overriding)

Signup and view all the flashcards

What is the Definition of Abstraction?

Only essential details are displayed to the user.

Signup and view all the flashcards

Encapsualtion vs Abstraction?

Data Hiding hides information vs abstracted details.

Signup and view all the flashcards

What is a Package?

A way to encapsulate a group of classes, sub packages and interfaces.

Signup and view all the flashcards

What are Errors?

User Errors and Programmer Errors

Signup and view all the flashcards

Study Notes

Java Programming & Applications

  • Course Code: EEE 32502

Java Evolution

  • Understanding Java's creation is key to understanding Java itself.
  • Computer language innovation occurs for two key reasons: Adapting to changing environments and uses, as well as refining programming techniques.
  • Java relates to C++, which is a descendant of C.
  • Java inherited much of its character from these two languages.
  • Java syntax is derived from C.
  • Many of Java's object-oriented aspects are influenced by C++.
  • The need to solve fundamental problems drives language design innovation, which is true for Java.
  • Although C is a great language, its limit is its ability to handle complexity.
  • Problems appear when a program becomes too large and difficult to grasp as a whole.
  • C++ allows programmers to manage larger programs.
  • C++ was created in 1979 by Bjarne Stroustrup at Bell Laboratories.
  • The new language was called "C with Classes" and renamed C++ in 1983.
  • C++ enhances C with object-oriented features and includes all of C's features, explaining its success.
  • C++ was intended as improvement rather than as a new language.
  • The rise of the web and the Internet precipitated a programming revolution.
  • Java was conceived by James Gosling, Patrick Naughton, Chris Warth, Ed Frank, and Mike Sheridan at Sun Microsystems, Inc. in 1991.
  • The first working version took 18 months and was initially named "Oak" but was renamed "Java" in 1995.
  • The need for platform-independent programs for the Internet prompted its creation.
  • Java refines object-oriented approaches using C++.
  • Java adds multithreading support, library simplifies Internet access and embodies an approach to programming.
  • Java simplified web programming, innovated applets, which changed online content.
  • An applet is designed to be transmitted over the internet and executed by a Java-compatible web browser.
  • Security and portability are problematic when it comes to applets.
  • Java provides security and portability that allows the program to run under different systems, and prevents it from doing harm.
  • Java is useful on the server side, resulting in the servlet.
  • The servlet is a small program that executes on the server.
  • Servlets extends the functionality of the web server, similarly to how applets extend the functionality of the web browser.
  • Java compiler outputs bytecode instead of executable code.
  • Bytecode is a set of optimized instructions for the Java run-time system, which is called the JVM.
  • Key buzzwords used by the Java team:
  • Simple
  • Secure
  • Portable
  • Object-oriented
  • Robust
  • Multithreaded
  • Architecture-neutral
  • Interpreted & High performance
  • Distributed
  • Dynamic

Overview of Java

  • OOP is at the core of Java.
  • Programs consist of data and code.
  • Program construction is governed by two paradigms.
  • The process-oriented model is the first model.
  • Programs are a series of code-based linear steps.
  • Code acts on data in the process-oriented model.
  • Procedural languages such as C employ this model.
  • Problems arise when programs grow larger and complex.
  • Object-oriented programming manages complexity.
  • Object-oriented programming programs are based around objects and well-defined interfaces to objects.
  • Data controls code in object-oriented programs.
  • Abstraction is essential to OOP.
  • Hierarchical classifications manage abstraction.
  • Hierarchical abstractions apply to computer programs.
  • Data is transformed into component objects.
  • Process steps become messages between objects.
  • Each object describes its unique behavior.
  • Treat objects as entities that respond to messages.
  • This encapsulates OOP.
  • All OOP languages implement the object-oriented model.
  • Object-oriented models include encapsulation, inheritance, and polymorphism.
  • Encapsulation ensures interference and misuse safety.
  • Encapsulation prevents code and data that is arbitrarily accessed.
  • Access is tightly controlled with a well-defined interface.
  • The basis of encapsulation in Java is the class.
  • A class defines code and data structure.
  • Hiding complexity is important within a class.
  • Class has markable methods or variables that are either public or private.
  • Public interface of the class represents what external users need or may need.
  • Private data and private methods can only be accessed by members of the class.
  • Other code cannot access a private variable or private method.
  • Inheritance allows an object to acquire another object's properties.
  • Hierarchy is supported through inheritance.
  • Inheritance interacts with encapsulation.
  • A subclass that encapsulates properties also has any additions that is part of its specialization.
  • A class inherits all attributes of ancestor attributes.
  • Polymorphism allows a class of actions to use one interface to determine specific actions.
  • With a stack of last-in, first-out lists, it requires three types of stacks which stores integers, floating points, and characters.
  • The algorithm is the same, regardless of data.
  • Non-OOP requires three separate sets of stack routines whereas Java uses polymorphism to specify routines that share the same name.
  • Encapsulation, inheritance and poymorphism combines to create a robust programming environment.
  • This promotes scaleable programs.

First Program Code

  • The name of the source file is important in Java.
  • The name and class must be the same.
  • Execute the compiler, javac, to compile the Example program.
  • The javac compiler will create a file called example.class.
  • Bytecode contains instructions that the Java virtual machine that will execute.
  • The output of javac cannot be directly executed.
  • Use the Java application launcher to actually run the program.
  • When Java is compiled, each class is put into a specific output.class.
  • The name of its class matches that of the source file.
  • Executing Java needs the name of class, which will search for a.class file.
  • The code will execute if the match is found.
  • The compiler skips the first four lines.
  • Class is a keyword that declares the new code.
  • The method begins with main.
  • Public keyword is the access modifier for managing member visibility.
  • Public allows access outside of the class, whereas private does not allow access outside of the class.
  • Public must be declared by Main() since, code calls it when the program starts.
  • Static allows main() to be called without setting a base in the Class.
  • Void lets the compiler know that main() will not return a value.
  • The Java compiler compiles classes without a main() method.
  • There's no function to run the class.
  • String args[] declares parameter args as an array of String classes.
  • String types store character strings and args receives the lines, if it's present.
  • Output is through a built-in println() method and System provides system access and out is the connected output stream.

Difference between OOP and POP

  • In the procedure oriented approach POP, large programs are divided into smaller programs parts.
  • These parts are considered functions or procedures.
  • Each procedure contains a series of instructions for a specific task.
  • Each procedure can be called by other procedures during program execution.
  • To call a procedure, write the function name of the procedure.
  • Developing functions, a concentrated effort is applied, which gives little consideration to data.
  • The major emphasis with POP is on procedure and not on data.
  • Important data may be placed as global so that all functions can access it.
  • Local data is used by each function.
  • Changes to global data may be accidental.
  • Identifying which date to use becomes increasingly difficult.
  • C programming language is an example of POP.
  • OOP treats data as critical.
  • OOP prevents data to freely flow in the system.
  • OOP mainly focuses on data rather than process.
  • Function with the data function which protects function modification.
  • Decomposition into entities builds data and functions around those data.
  • Data of an object is only by the associated fuction.
  • C++, Java, and Python are OOP languages.

Java JDK, JRE, and JVM

  • JDK is a kit for developing and executing a Java program, includes development tools to develop programs and JRE to execute it.
  • JRE is an environment that can only run code.
  • JVM acts as a run-time engine and functions as an interpreter.

Encapsulation

  • Wrapping data under a single unit is encapsulation.
  • Encapsulation binds data and codes and it manipulates.
  • The protective shield only allows certain codes to access the data, and restricts the outside access.
  • Variables or data is hidden from other classes inside of a member.
  • Data is hidden from other classes with a data hiding concept which is achieved by making members or methods of a class private
  • The class is exposed to the end-user without implementation details behind abstraction and becomes a combination of data-hiding.
  • Declare all variables as private and use public methods to set variables to achieve encapsulation.
  • Setter and getter methods further exemplify encapsulation.

Advantages of Encapsulation

  • Data Hiding: restrict access to our data members by hiding the implementation details.
  • Increased flexibility to easily make variables read/write-only.
  • Encapsulation to improve reusability and is easy to change.
  • Unit testing.

Modifiers

  • Divided into two groups:
  • Access Modifiers - controls the access level
  • Non-Access Modifiers - provide information about class functionalities to JVM but do not control access level.

Access Modifiers

  • Modifiers for classes are public and default, where the class is accessible (public) by any other class, else accessible by the same package only (default).
  • Access modifiers for methods, attributes, and constructors are public, private, default, and protected.
  • The code is accessible for all classes (public), within declared class (private), only in the same package (default), and only in the same package and subclasses (protected).

Non-access Modifiers

  • For classes: final (where the class can never be inherited) and abstract (which cannot be used to create objects).
  • For attributes and methods: final, static, and abstract, where methods/attributes can't be overrided, belong to the class than object, and can be used in an abstract class with abstract void run().

Inheritance

  • Creating a new class from an old one where the new class inherits methods and fields.
  • An inherited class may add fields and methods as well.

Advantages of Inheritance:

  • Code reusability and reduces the amount of code that need to be rewritten.
  • Abstractions let one create abstracted classes for the inheritance.
  • Inheritance makes code easier to maintain and extend.
  • Modeling real-world objects in a hierarchy through inheritance.
  • Subclasses change behaviors by overriding the superclass.

Polymorphism

  • Defining polymorphism as one form having many forms, with "poly" refers to "many" and "morphs" means "forms", so it means many forms.

Different Types of Polymorphism

  • Compile-time - Static, achieved by function overloading or operator overloading.
  • Run-time - Dynamic Method Dispatch and achieved through Method Overriding when a derived class defines a member of a base lass, that base function is said to be overridden.

Abstraction

  • Displays essential details to the user.
  • Removes trivial and non-essentials.
  • Focuses on necessary characteristics, so behaviors help classify a particular entity.
  • Achieved through abstraction using interfaces and abstract classes.

Abstraction vs Encapsulation

  • Data vs Hiding - Encapsulation (info. hiding) vs Abstraction (implementation hiding).
  • Data Management - Encapsulation (methods for data) vs Abstraction (only expose the interface to user, not implementation).
  • Abstraction & hiding - Encapsulation (Java classes that follow data-hiding/abstraction) vs Abstraction with Abstract classes/ interfaces.
  • Processes - Encapsulation (Implementation-level) vs Abstraction (design-level).

Summary OOP:

  • The main OOP concepts are:
  1. Encapsulation
  2. Data hiding
  3. Inheritance
  4. Polymorphism
  5. Abstraction

Packages

  • Mechanism to encapsulate classes, it is used for:
  • Preventing name conflict.
  • Making searching classes, easy.
  • Provide controlled access protected access only to member or sub class in package default access to same package.
  • Acts as data encapsulation.
  • Related classes into packages - Import classes from packages.
  • Packages are related classes that are accessible to reused and name structures are related.
  • Adding classes with package name and saving it in package directory. Packages of directory are imported using privileges for protected and default access:
  • import java.util.*;
  • util is a subpackage created inside java package.

Packages

  • Types of packages:
  1. Built-in packages
  2. User-defined packages

Built-In Packages

  • Packages consist of API which language support classes defining data types and operations is automatically imported:
  1. java.lang
  2. java.io
  3. java.util
  4. java.applet
  5. java.awt
  6. java.net

User Defined packages

  • These are the directory user should define name should be same name as the package, the first statement being for the package name.

Exception Handling

  • Errors may be caused by user that should be anticipated and handled or due to a programmer.
  • Thrown when an error is detected and when that happens, the code that caused that error stops immediately: transferred to the catch clause.
  • The try block might be in the current function
  • If the exception is not handled correctly, a message prints and the program stops.
  • An exception is either checked or unchecked.
  • If a method includes code that could cause an exception (checked):
  • Declare the exception must be declared in the method header, using a throws clause
  • The code that might cause the exception to be thrown must be inside a try block with a catch clause for that exception.

Studying That Suits You

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

Quiz Team

Related Documents

More Like This

Java's Lineage and Influences Quiz
10 questions

Java's Lineage and Influences Quiz

IndividualizedCatharsis avatar
IndividualizedCatharsis
Object-Oriented Languages Overview
5 questions
Use Quizgecko on...
Browser
Browser