Skip to content

HarryDulaney/intro-to-java-programming

Folders and files

NameName
Last commit message
Last commit date
Nov 25, 2023
Nov 10, 2023
Nov 10, 2023
Aug 2, 2021
Dec 7, 2021
Sep 23, 2022
Dec 14, 2021
Dec 20, 2021
Sep 17, 2023
Jan 8, 2023
Aug 2, 2021
Dec 10, 2022
Sep 11, 2022
Nov 23, 2023
Dec 29, 2023
Dec 31, 2023
Aug 8, 2021
Nov 19, 2023
Nov 26, 2021
Dec 7, 2022
Dec 14, 2021
May 9, 2023
Sep 17, 2023
Sep 17, 2023
May 12, 2022
Nov 18, 2023
Nov 23, 2023
Nov 18, 2023
Nov 19, 2023
Nov 20, 2023
Nov 23, 2023
May 24, 2021
Jan 4, 2024
Jun 7, 2021
Nov 23, 2023

Repository files navigation

INTRODUCTION TO JAVA PROGRAMMING 10TH EDITION
Exercise Solutions

header-img-book-cover

I've included links below to all the freely accessible companion material and quick links to navigate through my solutions by chapter.

See Contribution Guide for coding guidelines and information on how to contribute.


- About the 10th Edition -

"Daniel Liang teaches concepts of problem-solving and object-oriented programming using a fundamentals-first approach . Beginning programmers learn critical problem-solving techniques then move on to grasp the key concepts of object-oriented, GUI programming, advanced GUI and Web programming using Java..."


Companion Content

Additional online learning material that came with the books

How to Contribute

Coding Guidelines

  • Solution must use Java 8 SE, as this is the version used by the book.

    • Every solution should have a java file containing a public main method for testing it.

    • Naming convention is: ExerciseCC_EE.java where CC is the chapter number and EE is the exercise number.

    • The public Exercise class containing the main method must include a JavaDoc comment on the class with original exercise question.

    • Each solution should be its own self-contained program with minimal dependencies on other files. If you need multiple files please create a package for the exercise.

      • ch_XX/exercise22_07/Exercise22_07.java

      • This allows us to utilize the Exercise Checking Tool Exercise Checking Tool to verify solutions.

  • Example exercise solution:

package ch_01;

/**
 * 1.1 (Display three messages) Write a program that displays Welcome to Java,
 * Welcome to Computer Science, and Programming is fun.
 */
public class Exercise01_01 {
    public static void main(String[] args) {
        System.out.println("Welcome to Java");
        System.out.println("Welcome to Computer Science");
        System.out.println("Programming is fun");
    }

}

Pull requests:

  • When to use Pull Requests

    • To add new solutions, that do not already exist.
    • To add new documentation and/or comments to existing exercise solutions.
  • How to use Pull Requests

    1. Fork the Master branch
    2. Create a feature branch (with a descriptive name) using the fork from step 1.
    3. Make your changes to your new branch (Only commit and push the files you plan to merge).
    4. Make a Pull Request into our intro-to-java-programming Master branch.

Issue's:

  • Please feel free to open new Issues.
    • To request a specific Exercise that you need answered.
      • Be sure to include the Chapter and Exercise number.
    • To request a change to an existing solution.
    • You find an error in an existing solution.

Exercise Solutions:

Quick Links to navigate these solutions by chapter
complete-check-img Indicates 100% completion of all exercises for that chapter

Checkpoint Answers

Checkpoint Questions at the end of each chapter

Self-Check Quiz's

Self-Check Quiz's are provided for self testing and reinforcing what you leaned in the chapter