Java Programming

 

         

 

Friday, February 28th

 

“What is Data Science”

What is Data Science feedback form - please provide your feedback on the video, thank you.

Intro to AI Presentation

AI Bootcamp this summer

Free On-Line Courses - can't get enough coding? Try one of these courses. Coursera courses

Complete Section 4 Project - Create a new Java project called Inventory. Then create an object class called Product and a driver class called ProductTester. Follow the instructions provided.
Remember your object class will have the following:
Instance field declarations (variables)
Constructors
Setters
Getters
toString method

Once you have the object class created then create a driver class (ProductTester) that will create instances of your products.

Use the Vehicle class as an example of your object class.
Use the Vehicle driver class as an example of your tester class.

If you have completed section 5.2 begin on the 5.2 project which is a continuation of the section 4 project.

 

Homework

Install Eclipse on your home computer if you would like to be able to work on your java at home.

 

What

In this lesson, you will learn how to:
•Recognize the correct general form of a class
• Create an object of a class
• Describe object references
• Create methods that compile with no errors
• Return a value from a method
• Use parameters in a method

 

Why

Class templates are the foundation of the Java language. Understanding how to create a class with various methods will be essential to becoming a good Java programmer. Knowing how to instantiate an object and compare it to other objects is critical to learning to use and work with Java data types.

 

How

By completing the slides, quiz and practice exercises.