diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..13566b8
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..71ffed9
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ Manifest
+
+
+ Proofreading
+
+
+ Spring
+
+
+ Spring CoreSpring
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000..5702c37
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..35eb1dd
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/_01_02b/Employee.java b/_01_02b/Employee.java
index 12928d5..230d323 100644
--- a/_01_02b/Employee.java
+++ b/_01_02b/Employee.java
@@ -5,33 +5,45 @@ public class Employee {
public static void main(String[] args) {
// Create a variable called age of type int and assign it the value 29.
+ int age = 29;
// Print the age variable to the console.
+ System.out.println(age);
// Create a variable called isAManager of type boolean and assign it the value
// true.
+ boolean isAManager = true;
+
// Print the isAManager variable to the console.
+ System.out.println(isAManager);
// Create a variable called yearsOfService of type double and assign it the
// value 2.5.
-
+ double yearOfService = 2.5;
// Print the yearsOfService variable to the console.
+ System.out.println(yearOfService);
// Create a variable called baseSalary of type int and assign it the value 3000.
+ int baseSalary = 3000;
// Create a variable called overtimePayment of type int and assign it the value
// 40.
+ int overTimePayment = 40;
// Create a variable called totalPayment of type int and assign it to the value
// of baseSalary added to overtimePayment.
+ int totalPayment = baseSalary + overTimePayment;
+
// Print the totalPayment variable to the console.
+ System.out.println(totalPayment);
// Create three variables all of type double on a single line.
// They should be called firstBonus, secondBonus and thirdBonus and they should
// be assigned the values 10.00, 22.00 and 35.00.
+
// Print out the sum of the variables called firstBonus, secondBonus and
// thirdBonus.
diff --git a/out/production/practice-it-java-3086189/.devcontainer/Dockerfile b/out/production/practice-it-java-3086189/.devcontainer/Dockerfile
new file mode 100644
index 0000000..fbbacda
--- /dev/null
+++ b/out/production/practice-it-java-3086189/.devcontainer/Dockerfile
@@ -0,0 +1,18 @@
+# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.236.0/containers/java/.devcontainer/base.Dockerfile
+
+# [Choice] Java version (use -bullseye variants on local arm64/Apple Silicon): 11, 17, 11-bullseye, 17-bullseye, 11-buster, 17-buster
+ARG VARIANT="17-bullseye"
+FROM mcr.microsoft.com/vscode/devcontainers/java:0-${VARIANT}
+
+# [Option] Install Maven
+ARG INSTALL_MAVEN="false"
+ARG MAVEN_VERSION=""
+# [Option] Install Gradle
+ARG INSTALL_GRADLE="false"
+ARG GRADLE_VERSION=""
+RUN if [ "${INSTALL_MAVEN}" = "true" ]; then su vscode -c "umask 0002 && . /usr/local/sdkman/bin/sdkman-init.sh && sdk install maven \"${MAVEN_VERSION}\""; fi \
+ && if [ "${INSTALL_GRADLE}" = "true" ]; then su vscode -c "umask 0002 && . /usr/local/sdkman/bin/sdkman-init.sh && sdk install gradle \"${GRADLE_VERSION}\""; fi
+
+# [Choice] Node.js version: none, lts/*, 16, 14, 12, 10
+ARG NODE_VERSION="none"
+RUN if [ "${NODE_VERSION}" != "none" ]; then su vscode -c "umask 0002 && . /usr/local/share/nvm/nvm.sh && nvm install ${NODE_VERSION} 2>&1"; fi
diff --git a/out/production/practice-it-java-3086189/.devcontainer/devcontainer.json b/out/production/practice-it-java-3086189/.devcontainer/devcontainer.json
new file mode 100644
index 0000000..bfc27f8
--- /dev/null
+++ b/out/production/practice-it-java-3086189/.devcontainer/devcontainer.json
@@ -0,0 +1,29 @@
+{
+ "name": "Java",
+ "build": {
+ "dockerfile": "Dockerfile",
+ "args": {
+ "VARIANT": "17", //Can change to another of Java
+ "INSTALL_MAVEN": "false",
+ "INSTALL_GRADLE": "false",
+ "NODE_VERSION": "lts/*"
+ }
+ },
+
+ // Configure tool-specific properties.
+ "customizations": {
+ "vscode": {
+ "settings": {
+ "java.home": "/docker-java-home"
+ },
+ "extensions": [
+ "vscjava.vscode-java-pack",
+ "GitHub.github-vscode-theme"
+ ]
+ }
+ },
+ "remoteUser": "vscode",
+ "onCreateCommand": "echo PS1='\"$ \"' >> ~/.bashrc" //Set Terminal Prompt to $
+}
+
+// DevContainer Reference: https://code.visualstudio.com/docs/remote/devcontainerjson-reference
diff --git a/out/production/practice-it-java-3086189/.github/CODEOWNERS b/out/production/practice-it-java-3086189/.github/CODEOWNERS
new file mode 100644
index 0000000..97f37e0
--- /dev/null
+++ b/out/production/practice-it-java-3086189/.github/CODEOWNERS
@@ -0,0 +1,3 @@
+# Codeowners for these exercise files:
+# * (asterisk) deotes "all files and folders"
+# Example: * @producer @instructor
diff --git a/out/production/practice-it-java-3086189/.github/ISSUE_TEMPLATE.md b/out/production/practice-it-java-3086189/.github/ISSUE_TEMPLATE.md
new file mode 100644
index 0000000..20ff87d
--- /dev/null
+++ b/out/production/practice-it-java-3086189/.github/ISSUE_TEMPLATE.md
@@ -0,0 +1,34 @@
+
+
+## Issue Overview
+
+
+## Describe your environment
+
+
+## Steps to Reproduce
+
+1.
+2.
+3.
+4.
+
+## Expected Behavior
+
+
+## Current Behavior
+
+
+## Possible Solution
+
+
+## Screenshots / Video
+
+
+## Related Issues
+
diff --git a/out/production/practice-it-java-3086189/.github/PULL_REQUEST_TEMPLATE.md b/out/production/practice-it-java-3086189/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 0000000..6ae59ec
--- /dev/null
+++ b/out/production/practice-it-java-3086189/.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1 @@
+
diff --git a/out/production/practice-it-java-3086189/.github/workflows/main.yml b/out/production/practice-it-java-3086189/.github/workflows/main.yml
new file mode 100644
index 0000000..e71e597
--- /dev/null
+++ b/out/production/practice-it-java-3086189/.github/workflows/main.yml
@@ -0,0 +1,14 @@
+name: Copy To Branches
+on:
+ workflow_dispatch:
+jobs:
+ copy-to-branches:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+ - name: Copy To Branches Action
+ uses: planetoftheweb/copy-to-branches@v1.2
+ env:
+ key: main
diff --git a/out/production/practice-it-java-3086189/.gitignore b/out/production/practice-it-java-3086189/.gitignore
new file mode 100644
index 0000000..4b64bc3
--- /dev/null
+++ b/out/production/practice-it-java-3086189/.gitignore
@@ -0,0 +1,4 @@
+.DS_Store
+node_modules
+.tmp
+npm-debug.log
diff --git a/out/production/practice-it-java-3086189/.idea/.gitignore b/out/production/practice-it-java-3086189/.idea/.gitignore
new file mode 100644
index 0000000..13566b8
--- /dev/null
+++ b/out/production/practice-it-java-3086189/.idea/.gitignore
@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/out/production/practice-it-java-3086189/.idea/misc.xml b/out/production/practice-it-java-3086189/.idea/misc.xml
new file mode 100644
index 0000000..71ffed9
--- /dev/null
+++ b/out/production/practice-it-java-3086189/.idea/misc.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+ Manifest
+
+
+ Proofreading
+
+
+ Spring
+
+
+ Spring CoreSpring
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/out/production/practice-it-java-3086189/.idea/modules.xml b/out/production/practice-it-java-3086189/.idea/modules.xml
new file mode 100644
index 0000000..5702c37
--- /dev/null
+++ b/out/production/practice-it-java-3086189/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/out/production/practice-it-java-3086189/.idea/vcs.xml b/out/production/practice-it-java-3086189/.idea/vcs.xml
new file mode 100644
index 0000000..35eb1dd
--- /dev/null
+++ b/out/production/practice-it-java-3086189/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/out/production/practice-it-java-3086189/.vscode/settings.json b/out/production/practice-it-java-3086189/.vscode/settings.json
new file mode 100644
index 0000000..3fe1f5c
--- /dev/null
+++ b/out/production/practice-it-java-3086189/.vscode/settings.json
@@ -0,0 +1,26 @@
+{
+ "editor.bracketPairColorization.enabled": true,
+ "editor.cursorBlinking": "solid",
+ "editor.fontFamily": "ui-monospace, Menlo, Monaco, 'Cascadia Mono', 'Segoe UI Mono', 'Roboto Mono', 'Oxygen Mono', 'Ubuntu Monospace', 'Source Code Pro', 'Fira Mono', 'Droid Sans Mono', 'Courier New', monospace",
+ "editor.fontLigatures": false,
+ "editor.fontSize": 22,
+ "editor.formatOnPaste": true,
+ "editor.formatOnSave": true,
+ "editor.lineNumbers": "on",
+ "editor.matchBrackets": "always",
+ "editor.minimap.enabled": false,
+ "editor.smoothScrolling": true,
+ "editor.tabSize": 2,
+ "editor.useTabStops": true,
+ "editor.wordWrap": "on",
+ "emmet.triggerExpansionOnTab": true,
+ "explorer.openEditors.visible": 0,
+ "files.autoSave": "afterDelay",
+ "screencastMode.onlyKeyboardShortcuts": true,
+ "terminal.integrated.fontSize": 18,
+ "workbench.activityBar.visible": true,
+ "workbench.colorTheme": "Visual Studio Dark",
+ "workbench.fontAliasing": "antialiased",
+ "workbench.statusBar.visible": true,
+ "java.server.launchMode": "Standard"
+}
diff --git a/out/production/practice-it-java-3086189/CONTRIBUTING.md b/out/production/practice-it-java-3086189/CONTRIBUTING.md
new file mode 100644
index 0000000..164cbd5
--- /dev/null
+++ b/out/production/practice-it-java-3086189/CONTRIBUTING.md
@@ -0,0 +1,7 @@
+
+Contribution Agreement
+======================
+
+This repository does not accept pull requests (PRs). All pull requests will be closed.
+
+However, if any contributions (through pull requests, issues, feedback or otherwise) are provided, as a contributor, you represent that the code you submit is your original work or that of your employer (in which case you represent you have the right to bind your employer). By submitting code (or otherwise providing feedback), you (and, if applicable, your employer) are licensing the submitted code (and/or feedback) to LinkedIn and the open source community subject to the BSD 2-Clause license.
diff --git a/out/production/practice-it-java-3086189/LICENSE b/out/production/practice-it-java-3086189/LICENSE
new file mode 100644
index 0000000..52571f1
--- /dev/null
+++ b/out/production/practice-it-java-3086189/LICENSE
@@ -0,0 +1,105 @@
+LinkedIn Learning Exercise Files License Agreement
+==================================================
+
+This License Agreement (the "Agreement") is a binding legal agreement
+between you (as an individual or entity, as applicable) and LinkedIn
+Corporation (“LinkedIn”). By downloading or using the LinkedIn Learning
+exercise files in this repository (“Licensed Materials”), you agree to
+be bound by the terms of this Agreement. If you do not agree to these
+terms, do not download or use the Licensed Materials.
+
+1. License.
+- a. Subject to the terms of this Agreement, LinkedIn hereby grants LinkedIn
+members during their LinkedIn Learning subscription a non-exclusive,
+non-transferable copyright license, for internal use only, to 1) make a
+reasonable number of copies of the Licensed Materials, and 2) make
+derivative works of the Licensed Materials for the sole purpose of
+practicing skills taught in LinkedIn Learning courses.
+- b. Distribution. Unless otherwise noted in the Licensed Materials, subject
+to the terms of this Agreement, LinkedIn hereby grants LinkedIn members
+with a LinkedIn Learning subscription a non-exclusive, non-transferable
+copyright license to distribute the Licensed Materials, except the
+Licensed Materials may not be included in any product or service (or
+otherwise used) to instruct or educate others.
+
+2. Restrictions and Intellectual Property.
+- a. You may not to use, modify, copy, make derivative works of, publish,
+distribute, rent, lease, sell, sublicense, assign or otherwise transfer the
+Licensed Materials, except as expressly set forth above in Section 1.
+- b. Linkedin (and its licensors) retains its intellectual property rights
+in the Licensed Materials. Except as expressly set forth in Section 1,
+LinkedIn grants no licenses.
+- c. You indemnify LinkedIn and its licensors and affiliates for i) any
+alleged infringement or misappropriation of any intellectual property rights
+of any third party based on modifications you make to the Licensed Materials,
+ii) any claims arising from your use or distribution of all or part of the
+Licensed Materials and iii) a breach of this Agreement. You will defend, hold
+harmless, and indemnify LinkedIn and its affiliates (and our and their
+respective employees, shareholders, and directors) from any claim or action
+brought by a third party, including all damages, liabilities, costs and
+expenses, including reasonable attorneys’ fees, to the extent resulting from,
+alleged to have resulted from, or in connection with: (a) your breach of your
+obligations herein; or (b) your use or distribution of any Licensed Materials.
+
+3. Open source. This code may include open source software, which may be
+subject to other license terms as provided in the files.
+
+4. Warranty Disclaimer. LINKEDIN PROVIDES THE LICENSED MATERIALS ON AN “AS IS”
+AND “AS AVAILABLE” BASIS. LINKEDIN MAKES NO REPRESENTATION OR WARRANTY,
+WHETHER EXPRESS OR IMPLIED, ABOUT THE LICENSED MATERIALS, INCLUDING ANY
+REPRESENTATION THAT THE LICENSED MATERIALS WILL BE FREE OF ERRORS, BUGS OR
+INTERRUPTIONS, OR THAT THE LICENSED MATERIALS ARE ACCURATE, COMPLETE OR
+OTHERWISE VALID. TO THE FULLEST EXTENT PERMITTED BY LAW, LINKEDIN AND ITS
+AFFILIATES DISCLAIM ANY IMPLIED OR STATUTORY WARRANTY OR CONDITION, INCLUDING
+ANY IMPLIED WARRANTY OR CONDITION OF MERCHANTABILITY OR FITNESS FOR A
+PARTICULAR PURPOSE, AVAILABILITY, SECURITY, TITLE AND/OR NON-INFRINGEMENT.
+YOUR USE OF THE LICENSED MATERIALS IS AT YOUR OWN DISCRETION AND RISK, AND
+YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE THAT RESULTS FROM USE OF THE
+LICENSED MATERIALS TO YOUR COMPUTER SYSTEM OR LOSS OF DATA. NO ADVICE OR
+INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED BY YOU FROM US OR THROUGH OR
+FROM THE LICENSED MATERIALS WILL CREATE ANY WARRANTY OR CONDITION NOT
+EXPRESSLY STATED IN THESE TERMS.
+
+5. Limitation of Liability. LINKEDIN SHALL NOT BE LIABLE FOR ANY INDIRECT,
+INCIDENTAL, SPECIAL, PUNITIVE, CONSEQUENTIAL OR EXEMPLARY DAMAGES, INCLUDING
+BUT NOT LIMITED TO, DAMAGES FOR LOSS OF PROFITS, GOODWILL, USE, DATA OR OTHER
+INTANGIBLE LOSSES . IN NO EVENT WILL LINKEDIN'S AGGREGATE LIABILITY TO YOU
+EXCEED $100. THIS LIMITATION OF LIABILITY SHALL:
+- i. APPLY REGARDLESS OF WHETHER (A) YOU BASE YOUR CLAIM ON CONTRACT, TORT,
+STATUTE, OR ANY OTHER LEGAL THEORY, (B) WE KNEW OR SHOULD HAVE KNOWN ABOUT
+THE POSSIBILITY OF SUCH DAMAGES, OR (C) THE LIMITED REMEDIES PROVIDED IN THIS
+SECTION FAIL OF THEIR ESSENTIAL PURPOSE; AND
+- ii. NOT APPLY TO ANY DAMAGE THAT LINKEDIN MAY CAUSE YOU INTENTIONALLY OR
+KNOWINGLY IN VIOLATION OF THESE TERMS OR APPLICABLE LAW, OR AS OTHERWISE
+MANDATED BY APPLICABLE LAW THAT CANNOT BE DISCLAIMED IN THESE TERMS.
+
+6. Termination. This Agreement automatically terminates upon your breach of
+this Agreement or termination of your LinkedIn Learning subscription. On
+termination, all licenses granted under this Agreement will terminate
+immediately and you will delete the Licensed Materials. Sections 2-7 of this
+Agreement survive any termination of this Agreement. LinkedIn may discontinue
+the availability of some or all of the Licensed Materials at any time for any
+reason.
+
+7. Miscellaneous. This Agreement will be governed by and construed in
+accordance with the laws of the State of California without regard to conflict
+of laws principles. The exclusive forum for any disputes arising out of or
+relating to this Agreement shall be an appropriate federal or state court
+sitting in the County of Santa Clara, State of California. If LinkedIn does
+not act to enforce a breach of this Agreement, that does not mean that
+LinkedIn has waived its right to enforce this Agreement. The Agreement does
+not create a partnership, agency relationship, or joint venture between the
+parties. Neither party has the power or authority to bind the other or to
+create any obligation or responsibility on behalf of the other. You may not,
+without LinkedIn’s prior written consent, assign or delegate any rights or
+obligations under these terms, including in connection with a change of
+control. Any purported assignment and delegation shall be ineffective. The
+Agreement shall bind and inure to the benefit of the parties, their respective
+successors and permitted assigns. If any provision of the Agreement is
+unenforceable, that provision will be modified to render it enforceable to the
+extent possible to give effect to the parties’ intentions and the remaining
+provisions will not be affected. This Agreement is the only agreement between
+you and LinkedIn regarding the Licensed Materials, and supersedes all prior
+agreements relating to the Licensed Materials.
+
+Last Updated: March 2019
diff --git a/out/production/practice-it-java-3086189/NOTICE b/out/production/practice-it-java-3086189/NOTICE
new file mode 100644
index 0000000..4851a73
--- /dev/null
+++ b/out/production/practice-it-java-3086189/NOTICE
@@ -0,0 +1,12 @@
+Copyright 2022 LinkedIn Corporation
+All Rights Reserved.
+
+Licensed under the LinkedIn Learning Exercise File License (the "License").
+See LICENSE in the project root for license information.
+
+Please note, this project may automatically load third party code from external
+repositories (for example, NPM modules, Composer packages, or other dependencies).
+If so, such third party code may be subject to other license terms than as set
+forth above. In addition, such third party code may also depend on and load
+multiple tiers of dependencies. Please review the applicable licenses of the
+additional dependencies.
diff --git a/out/production/practice-it-java-3086189/README.md b/out/production/practice-it-java-3086189/README.md
new file mode 100644
index 0000000..23aef0e
--- /dev/null
+++ b/out/production/practice-it-java-3086189/README.md
@@ -0,0 +1,15 @@
+# Practice It: Java
+This is the repository for the LinkedIn Learning course Practice It: Java. The full course is available from [LinkedIn Learning][lil-course-url].
+
+
+
+Looking for a chance to practice using your Java skills in a real-world scenario? You’re in luck. This course was designed to offer accessible and interactive training for learners like you. Join instructor Bethan Palmer to learn more about the basics of writing code in Java, one of the most widely used object-oriented programming languages in the world. Find out how to work with variables, classes, and objects, before turning your attention to control flow. Bethan shares insights and pointers from her own experience to help you get the most out of each task. By the end of this course, you’ll be prepared to wield your newly acquired skills so you can keep coding in Java on your own.
This course is integrated with GitHub Codespaces, an instant cloud developer environment that offers all the functionality of your favorite IDE without the need for any local machine setup. With GitHub Codespaces, you can get hands-on practice from any machine, at any time—all while using a tool that you’ll likely encounter in the workplace. Check out the [Using GitHub Codespaces with this course][gcs-video-url] video to learn how to get started.
+
+### Instructor
+
+Bethan Palmer
+
+Check out my other courses on [LinkedIn Learning](https://www.linkedin.com/learning/instructors/bethan-palmer?u=104).
+
+[lil-course-url]: https://www.linkedin.com/learning/practice-it-java
+[gcs-video-url]: https://www.linkedin.com/learning/practice-it-java/using-github-codespaces-with-this-course
diff --git a/out/production/practice-it-java-3086189/_01_02b/Employee.class b/out/production/practice-it-java-3086189/_01_02b/Employee.class
new file mode 100644
index 0000000..5029579
Binary files /dev/null and b/out/production/practice-it-java-3086189/_01_02b/Employee.class differ
diff --git a/out/production/practice-it-java-3086189/_01_02e/Employee.class b/out/production/practice-it-java-3086189/_01_02e/Employee.class
new file mode 100644
index 0000000..e21c8c7
Binary files /dev/null and b/out/production/practice-it-java-3086189/_01_02e/Employee.class differ
diff --git a/out/production/practice-it-java-3086189/_01_03b/Employee.class b/out/production/practice-it-java-3086189/_01_03b/Employee.class
new file mode 100644
index 0000000..d8fd643
Binary files /dev/null and b/out/production/practice-it-java-3086189/_01_03b/Employee.class differ
diff --git a/out/production/practice-it-java-3086189/_01_03e/Employee.class b/out/production/practice-it-java-3086189/_01_03e/Employee.class
new file mode 100644
index 0000000..aa7d5b8
Binary files /dev/null and b/out/production/practice-it-java-3086189/_01_03e/Employee.class differ
diff --git a/out/production/practice-it-java-3086189/_01_04/MenuBuilder.class b/out/production/practice-it-java-3086189/_01_04/MenuBuilder.class
new file mode 100644
index 0000000..f1a0aa8
Binary files /dev/null and b/out/production/practice-it-java-3086189/_01_04/MenuBuilder.class differ
diff --git a/out/production/practice-it-java-3086189/_01_04/MenuItem.class b/out/production/practice-it-java-3086189/_01_04/MenuItem.class
new file mode 100644
index 0000000..8a013d2
Binary files /dev/null and b/out/production/practice-it-java-3086189/_01_04/MenuItem.class differ
diff --git a/out/production/practice-it-java-3086189/_01_05b/MenuBuilder.class b/out/production/practice-it-java-3086189/_01_05b/MenuBuilder.class
new file mode 100644
index 0000000..5152751
Binary files /dev/null and b/out/production/practice-it-java-3086189/_01_05b/MenuBuilder.class differ
diff --git a/out/production/practice-it-java-3086189/_01_05b/MenuItem.class b/out/production/practice-it-java-3086189/_01_05b/MenuItem.class
new file mode 100644
index 0000000..2fa98fb
Binary files /dev/null and b/out/production/practice-it-java-3086189/_01_05b/MenuItem.class differ
diff --git a/out/production/practice-it-java-3086189/_01_05e/MenuBuilder.class b/out/production/practice-it-java-3086189/_01_05e/MenuBuilder.class
new file mode 100644
index 0000000..421db8a
Binary files /dev/null and b/out/production/practice-it-java-3086189/_01_05e/MenuBuilder.class differ
diff --git a/out/production/practice-it-java-3086189/_01_05e/MenuItem.class b/out/production/practice-it-java-3086189/_01_05e/MenuItem.class
new file mode 100644
index 0000000..82a60b6
Binary files /dev/null and b/out/production/practice-it-java-3086189/_01_05e/MenuItem.class differ
diff --git a/out/production/practice-it-java-3086189/_02_02/Instructions.md b/out/production/practice-it-java-3086189/_02_02/Instructions.md
new file mode 100644
index 0000000..69cbb27
--- /dev/null
+++ b/out/production/practice-it-java-3086189/_02_02/Instructions.md
@@ -0,0 +1,6 @@
+1. Create a class called Ticket
+2. Give the class an empty constructor
+3. Create 3 private field variables in the class:
+- A field of type String called destination
+- A field called price of type double
+- A field called isReturn of type boolean
diff --git a/out/production/practice-it-java-3086189/_02_03b/Instructions.md b/out/production/practice-it-java-3086189/_02_03b/Instructions.md
new file mode 100644
index 0000000..4f50a75
--- /dev/null
+++ b/out/production/practice-it-java-3086189/_02_03b/Instructions.md
@@ -0,0 +1,6 @@
+1. Create a class called Ticket
+2. Give the class an empty constructor
+3. Create 3 field variables in the class:
+- A field of type String called destination
+- A field called price of type double
+- A field called isReturn of type boolean
diff --git a/out/production/practice-it-java-3086189/_02_03e/Instructions.md b/out/production/practice-it-java-3086189/_02_03e/Instructions.md
new file mode 100644
index 0000000..4f50a75
--- /dev/null
+++ b/out/production/practice-it-java-3086189/_02_03e/Instructions.md
@@ -0,0 +1,6 @@
+1. Create a class called Ticket
+2. Give the class an empty constructor
+3. Create 3 field variables in the class:
+- A field of type String called destination
+- A field called price of type double
+- A field called isReturn of type boolean
diff --git a/out/production/practice-it-java-3086189/_02_03e/Ticket.class b/out/production/practice-it-java-3086189/_02_03e/Ticket.class
new file mode 100644
index 0000000..071a0f7
Binary files /dev/null and b/out/production/practice-it-java-3086189/_02_03e/Ticket.class differ
diff --git a/out/production/practice-it-java-3086189/_02_04/Ticket.class b/out/production/practice-it-java-3086189/_02_04/Ticket.class
new file mode 100644
index 0000000..81e349d
Binary files /dev/null and b/out/production/practice-it-java-3086189/_02_04/Ticket.class differ
diff --git a/out/production/practice-it-java-3086189/_02_05b/Ticket.class b/out/production/practice-it-java-3086189/_02_05b/Ticket.class
new file mode 100644
index 0000000..8746019
Binary files /dev/null and b/out/production/practice-it-java-3086189/_02_05b/Ticket.class differ
diff --git a/out/production/practice-it-java-3086189/_02_05e/Ticket.class b/out/production/practice-it-java-3086189/_02_05e/Ticket.class
new file mode 100644
index 0000000..61c0081
Binary files /dev/null and b/out/production/practice-it-java-3086189/_02_05e/Ticket.class differ
diff --git a/out/production/practice-it-java-3086189/_02_06/Ticket.class b/out/production/practice-it-java-3086189/_02_06/Ticket.class
new file mode 100644
index 0000000..e7f9938
Binary files /dev/null and b/out/production/practice-it-java-3086189/_02_06/Ticket.class differ
diff --git a/out/production/practice-it-java-3086189/_02_06/TicketMachine.class b/out/production/practice-it-java-3086189/_02_06/TicketMachine.class
new file mode 100644
index 0000000..4ec07e5
Binary files /dev/null and b/out/production/practice-it-java-3086189/_02_06/TicketMachine.class differ
diff --git a/out/production/practice-it-java-3086189/_02_07b/Ticket.class b/out/production/practice-it-java-3086189/_02_07b/Ticket.class
new file mode 100644
index 0000000..8950dc7
Binary files /dev/null and b/out/production/practice-it-java-3086189/_02_07b/Ticket.class differ
diff --git a/out/production/practice-it-java-3086189/_02_07b/TicketMachine.class b/out/production/practice-it-java-3086189/_02_07b/TicketMachine.class
new file mode 100644
index 0000000..2faa918
Binary files /dev/null and b/out/production/practice-it-java-3086189/_02_07b/TicketMachine.class differ
diff --git a/out/production/practice-it-java-3086189/_02_07e/Ticket.class b/out/production/practice-it-java-3086189/_02_07e/Ticket.class
new file mode 100644
index 0000000..9632de3
Binary files /dev/null and b/out/production/practice-it-java-3086189/_02_07e/Ticket.class differ
diff --git a/out/production/practice-it-java-3086189/_02_07e/TicketMachine.class b/out/production/practice-it-java-3086189/_02_07e/TicketMachine.class
new file mode 100644
index 0000000..27f8ed7
Binary files /dev/null and b/out/production/practice-it-java-3086189/_02_07e/TicketMachine.class differ
diff --git a/out/production/practice-it-java-3086189/_03_02/GradingSystem.class b/out/production/practice-it-java-3086189/_03_02/GradingSystem.class
new file mode 100644
index 0000000..1783003
Binary files /dev/null and b/out/production/practice-it-java-3086189/_03_02/GradingSystem.class differ
diff --git a/out/production/practice-it-java-3086189/_03_02/Main.class b/out/production/practice-it-java-3086189/_03_02/Main.class
new file mode 100644
index 0000000..cb1cd2b
Binary files /dev/null and b/out/production/practice-it-java-3086189/_03_02/Main.class differ
diff --git a/out/production/practice-it-java-3086189/_03_03b/GradingSystem.class b/out/production/practice-it-java-3086189/_03_03b/GradingSystem.class
new file mode 100644
index 0000000..b4683d9
Binary files /dev/null and b/out/production/practice-it-java-3086189/_03_03b/GradingSystem.class differ
diff --git a/out/production/practice-it-java-3086189/_03_03b/Main.class b/out/production/practice-it-java-3086189/_03_03b/Main.class
new file mode 100644
index 0000000..47aa5b2
Binary files /dev/null and b/out/production/practice-it-java-3086189/_03_03b/Main.class differ
diff --git a/out/production/practice-it-java-3086189/_03_03e/GradingSystem.class b/out/production/practice-it-java-3086189/_03_03e/GradingSystem.class
new file mode 100644
index 0000000..414c016
Binary files /dev/null and b/out/production/practice-it-java-3086189/_03_03e/GradingSystem.class differ
diff --git a/out/production/practice-it-java-3086189/_03_03e/Main.class b/out/production/practice-it-java-3086189/_03_03e/Main.class
new file mode 100644
index 0000000..17be026
Binary files /dev/null and b/out/production/practice-it-java-3086189/_03_03e/Main.class differ
diff --git a/out/production/practice-it-java-3086189/_03_04/ForLoops.class b/out/production/practice-it-java-3086189/_03_04/ForLoops.class
new file mode 100644
index 0000000..c9bfd6d
Binary files /dev/null and b/out/production/practice-it-java-3086189/_03_04/ForLoops.class differ
diff --git a/out/production/practice-it-java-3086189/_03_05b/ForLoops.class b/out/production/practice-it-java-3086189/_03_05b/ForLoops.class
new file mode 100644
index 0000000..b44e7c4
Binary files /dev/null and b/out/production/practice-it-java-3086189/_03_05b/ForLoops.class differ
diff --git a/out/production/practice-it-java-3086189/_03_05e/ForLoops.class b/out/production/practice-it-java-3086189/_03_05e/ForLoops.class
new file mode 100644
index 0000000..fcfdf16
Binary files /dev/null and b/out/production/practice-it-java-3086189/_03_05e/ForLoops.class differ
diff --git a/out/production/practice-it-java-3086189/_03_06/EnhancedForLoops.class b/out/production/practice-it-java-3086189/_03_06/EnhancedForLoops.class
new file mode 100644
index 0000000..cdb74a2
Binary files /dev/null and b/out/production/practice-it-java-3086189/_03_06/EnhancedForLoops.class differ
diff --git a/out/production/practice-it-java-3086189/_03_07b/EnhancedForLoops.class b/out/production/practice-it-java-3086189/_03_07b/EnhancedForLoops.class
new file mode 100644
index 0000000..0398b85
Binary files /dev/null and b/out/production/practice-it-java-3086189/_03_07b/EnhancedForLoops.class differ
diff --git a/out/production/practice-it-java-3086189/_03_07e/EnhancedForLoops.class b/out/production/practice-it-java-3086189/_03_07e/EnhancedForLoops.class
new file mode 100644
index 0000000..12461d0
Binary files /dev/null and b/out/production/practice-it-java-3086189/_03_07e/EnhancedForLoops.class differ
diff --git a/out/production/practice-it-java-3086189/practice-it-java-3086189.iml b/out/production/practice-it-java-3086189/practice-it-java-3086189.iml
new file mode 100644
index 0000000..b107a2d
--- /dev/null
+++ b/out/production/practice-it-java-3086189/practice-it-java-3086189.iml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/practice-it-java-3086189.iml b/practice-it-java-3086189.iml
new file mode 100644
index 0000000..b107a2d
--- /dev/null
+++ b/practice-it-java-3086189.iml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file