13.2A- Connecting to CSS

No Comments

Log in or Sign Up (for free) to join the conversation and add comments.

Want to add a comment? You'll need to log in or sign up
< Back

Java

Recordings for Computer Science II at Huntington North (Indiana) High School
  • 13.2A- Connecting to CSS

    08:09

    Using an external CSS file in JavaFX

    13.2A- Connecting to CSS

  • 11.3- Random Access Files

    02/21/2022 | 13:18

    Writing and reading random access files

    11.3- Random Access Files

    Created: 02/21/2022
  • 11.2- Binary Files

    02/18/2022 | 14:20

    Reading & writing binary files (also appending)

    11.2- Binary Files

    Created: 02/18/2022
  • 10.6- Interfaces Part 2

    02/03/2022 | 07:47

    Polymorphism with interfaces; implementing multiple interfaces

    10.6- Interfaces Part 2

    Created: 02/03/2022
  • 10.6- Interfaces Part 1

    02/03/2022 | 08:34

    Creating interfaces

    10.6- Interfaces Part 1

    Created: 02/03/2022
  • 10.2- Overriding; Protected; Chains of Inheritance

    01/26/2022 | 12:47

    Overloading methods; protected access modifier; chains of inheritance

    10.2- Overriding; Protected; Chains of Inheritance

    Created: 01/26/2022
  • 2.1 Opening Eclipse for Hello World

    08/13/2018 | 10:36

    First Java program, written with Eclipse

    2.1 Opening Eclipse for Hello World

    Created: 08/13/2018
  • 2.2- Java Code to Byte Code (.java to .class)

    08/14/2018 | 03:34

    Explore the differences between java code (.java) and byte code (.class)

    2.2- Java Code to Byte Code (.java to .class)

    Created: 08/14/2018
  • 2.3- Data Types

    08/14/2018 | 10:41

    Learn about int, double, char, boolean

    2.3- Data Types

    Created: 08/14/2018
  • 2.4- Arithmetic Operations

    08/15/2018 | 11:14

    Adding, subtracting, multiplying, dividing (be careful!), exponents, square roots, and combined operations

    2.4- Arithmetic Operations

    Created: 08/15/2018
  • 2.5- Converting And Casting

    08/16/2018 | 07:28

    Different data types in the same statement

    2.5- Converting And Casting

    Created: 08/16/2018
  • 2.6 String Introduction

    08/16/2018 | 07:55

    Concatenating Strings and some String methods

    2.6 String Introduction

    Created: 08/16/2018
  • 2.7- Final (for creating constant values)

    08/16/2018 | 04:36

    Values that won't change during the program

    2.7- Final (for creating constant values)

    Created: 08/16/2018
  • 2.8- User Input from Keyboard Using Scanner Object

    08/17/2018 | 10:12

    Using a Scanner object to get user input from the keyboard

    2.8- User Input from Keyboard Using Scanner Object

    Created: 08/17/2018
  • 2.9- Dialog Boxes (JOptionPane)

    08/18/2018 | 05:00

    Using dialog boxes to display information and get information from users

    2.9- Dialog Boxes (JOptionPane)

    Created: 08/18/2018
  • 2.10- Convert Strings to Numbers

    08/18/2018 | 05:46

    Use Integer.parseInt( ) and Double.parseDouble( ) to get int or double data out of a String

    2.10- Convert Strings to Numbers

    Created: 08/18/2018
  • 3.1- If Introduction

    09/06/2018 | 12:49

    Using if; if-else, if-else if

    3.1- If Introduction

    Created: 09/06/2018
  • 3.2- Operators &&, ||, !

    09/06/2018 | 11:28

    Using comparison operators - and ( && ), or ( || ), not ( ! )

    3.2- Operators &&, ||, !

    Created: 09/06/2018
  • 3.3- String Comparisons

    09/07/2018 | 13:43

    Using .equals( ); .equalsIgnoreCase( ); .compareTo( ); .compareToIgnoreCase( )

    3.3- String Comparisons

    Created: 09/07/2018
  • 3.4- Switch statement

    09/07/2018 | 10:03

    Using switch as a choice/decision structure

    3.4- Switch statement

    Created: 09/07/2018
  • 4.1- Increment and Decrement

    10/22/2018 | 09:41

    Increment (increase by 1 with ++) and decrement (decrease by 1 with --)

    4.1- Increment and Decrement

    Created: 10/22/2018
  • 4.2- While Loops

    10/23/2018 | 08:29

    Creating while loops- these are post-test loops

    4.2- While Loops

    Created: 10/23/2018
  • 4.3- Do-While Loop

    10/23/2018 | 09:07

    Creating do-while loops - these are post-test loops

    4.3- Do-While Loop

    Created: 10/23/2018
  • 4.4- For Loops

    10/26/2018 | 08:34

    Creating for loops - these are counter-controlled, pre-test loops

    4.4- For Loops

    Created: 10/26/2018
  • 4.5- Break & Continue Statements

    10/26/2018 | 08:04

    Using break to exit a loop; using continue to end current iteration of loop

    4.5- Break & Continue Statements

    Created: 10/26/2018
  • 4.6- File Writing

    11/05/2018 | 13:26

    Writing to files

    4.6- File Writing

    Created: 11/05/2018
  • 4.7- File Appending

    11/05/2018 | 02:44

    Appending (adding to) a previously created file

    4.7- File Appending

    Created: 11/05/2018
  • 4.8- Reading From Files

    11/07/2018 | 09:18

    Reading data from files

    4.8- Reading From Files

    Created: 11/07/2018
  • 4.9- File Opening- Does the file already exist?

    11/08/2018 | 11:34

    Using .exists( ) before attempting to open a file

    4.9- File Opening- Does the file already exist?

    Created: 11/08/2018
  • 4.10- Analyzing File Data

    11/12/2018 | 13:55

    Looping through data in a file and using the .charAt( ) method. This example uses a text file from http://bowerpower.net/compprog2/javach04/WinnieThePooh.txt

    4.10- Analyzing File Data

    Created: 11/12/2018
  • 4.11- Random Numbers

    11/07/2020 | 09:11

    Generating random numbers (double and int)

    4.11- Random Numbers

    Created: 11/07/2020
  • 5.1- Method Introduction

    01/08/2019 | 10:30

    First look at writing methods

    5.1- Method Introduction

    Created: 01/08/2019
  • 5.2a- Passing Arguments to Methods- Part 1

    01/10/2019 | 13:27

    Sending information (arguments) to a method

    5.2a- Passing Arguments to Methods- Part 1

    Created: 01/10/2019
    timeline icon
    Timeline
    00:00
    (Beginning of video)
    00:41
    Chapter marker
    Writing a method header that will accept (and expect) information to be sent to it.
    Toggle item between chapter and caption
    01:35
    Chapter marker
    Using /** to make Javadoc comments (notice how @param automatically appears)
    Toggle item between chapter and caption
    02:18
    Chapter marker
    How to call/activate a method that is expecting information to be sent in the ( )
    Toggle item between chapter and caption
    03:16
    Chapter marker
    Writing a method header that accepts (and expects) multiple pieces of information - separate the parameters in the ( ) with commas
    Toggle item between chapter and caption
    04:42
    Chapter marker
    How to call/activate a method that is expecting multiple pieces of information - separate the arguments in the ( ) with commas
    Toggle item between chapter and caption
    06:06
    Chapter marker
    Be careful with the order of the arguments!
    Toggle item between chapter and caption
    06:34
    Chapter marker
    Overloading methods - they have the same names, but different signatures
    Toggle item between chapter and caption
    11:26
    Chapter marker
    What happens when you attempt to activate/call a method, but your list of arguments doesn't match any of the signatures for that overloaded method?
    Toggle item between chapter and caption
    13:27
    (End of video)
  • 5.2b- Passing Arguments to Methods- Part 2

    01/15/2019 | 07:01

    More examples of passing arguments to methods; exploring passing by value

    5.2b- Passing Arguments to Methods- Part 2

    Created: 01/15/2019
  • 5.3- Returning Values from Methods

    01/15/2019 | 10:47

    Exploring value-returning methods- they send back something

    5.3- Returning Values from Methods

    Created: 01/15/2019
  • 6.1- Class Creation- Part 1

    02/05/2019 | 13:52

    Introduction to creating classes- first look at attributes (fields/instance variables) and methods

    6.1- Class Creation- Part 1

    Created: 02/05/2019
  • 6.2- Class Creation- Part 2

    02/06/2019 | 09:40

    Creating methods vs. creating more variables; writing toString( ) methods

    6.2- Class Creation- Part 2

    Created: 02/06/2019
  • 6.3- Class Creation- Part 3- Constructors

    02/09/2019 | 13:14

    Constuctors in a Java class

    6.3- Class Creation- Part 3- Constructors

    Created: 02/09/2019
  • 6.4- Class Creation- Part 4- Passing Objects, Javadoc and UML

    02/14/2019 | 14:42

    Passing objects to methods; creating web pages with javadoc; UML diagrams

    6.4- Class Creation- Part 4- Passing Objects, Javadoc and UML

    Created: 02/14/2019
  • 7.1- Array Introduction

    04/04/2019 | 14:45

    Declaring and using arrays; enhanced for loops

    7.1- Array Introduction

    Created: 04/04/2019
  • 7.2- Arrays... More Stuff

    04/05/2019 | 13:42

    Making a reference to an array and creating an array in one step; good & bad ways to copy arrays

    7.2- Arrays... More Stuff

    Created: 04/05/2019
  • 7.3- Array Methods

    04/07/2019 | 12:09

    What happens when we pass arrays to methods?

    7.3- Array Methods

    Created: 04/07/2019
  • 7.4- Two-Dimension Arrays (Part 1)

    04/11/2019 | 12:17

    The rows & columns of two-dimension arrays

    7.4- Two-Dimension Arrays (Part 1)

    Created: 04/11/2019
  • 7.5- Two-Dimension Arrays (Part 2)

    04/12/2019 | 14:58

    Entering data for 2-dimension arrays; calculating sums of all the elements in a 2-dimension array; calculating the sums of rows and columns.

    7.5- Two-Dimension Arrays (Part 2)

    Created: 04/12/2019
  • 7.6- ArrayList

    04/16/2019 | 12:10

    Using an ArrayList for a collection of objects. An ArraylList can increase or decrease in size.

    7.6- ArrayList

    Created: 04/16/2019
  • 7.7- Sequential Search

    04/29/2019 | 06:44

    Searching an array from the first element to the last element (one element at a time)

    7.7- Sequential Search

    Created: 04/29/2019
  • 8.1- Static Fields & Methods

    05/07/2019 | 11:25

    Creating and using static fields (variables) and methods in a class

    8.1- Static Fields & Methods

    Created: 05/07/2019
  • 8.2- Creating .equals( ) method

    05/15/2019 | 09:56

    Overwriting the .equals( ) method with your own .equals( ) method that compares all the characteristics of two objects (Dogs, in this example)

    8.2- Creating .equals( ) method

    Created: 05/15/2019
  • 8.3- Copy constructor, .copy( ) method, & Chaining Constructors

    05/15/2019 | 11:35

    Creating copy constructors, copy( ) methods, and linking one constructor to another

    8.3- Copy constructor, .copy( ) method, & Chaining Constructors

    Created: 05/15/2019
  • 8.4- Enumerated Types

    05/15/2019 | 06:39

    Using enumeration - a list of named constant values

    8.4- Enumerated Types

    Created: 05/15/2019
  • 13.2A- Connecting to CSS
    08:09
    13.2A- Connecting to CSS
    08:09 >

  • 11.3- Random Access Files
    02/21/2022 | 13:18
    11.3- Random Access Files
    13:18 >

  • 11.2- Binary Files
    02/18/2022 | 14:20
    11.2- Binary Files
    14:20 >

  • 10.6- Interfaces Part 2
    02/03/2022 | 07:47
    10.6- Interfaces Part 2
    07:47 >

  • 10.6- Interfaces Part 1
    02/03/2022 | 08:34
    10.6- Interfaces Part 1
    08:34 >

  • 10.2- Overriding; Protected; Chains of Inheritance
    01/26/2022 | 12:47
    10.2- Overriding; Protected; Chains of Inheritance
    12:47 >

  • 2.1 Opening Eclipse for Hello World
    08/13/2018 | 10:36
    2.1 Opening Eclipse for Hello World
    10:36 >

  • 2.2- Java Code to Byte Code (.java to .class)
    08/14/2018 | 03:34
    2.2- Java Code to Byte Code (.java to .class)
    03:34 >

  • 2.3- Data Types
    08/14/2018 | 10:41
    2.3- Data Types
    10:41 >

  • 2.4- Arithmetic Operations
    08/15/2018 | 11:14
    2.4- Arithmetic Operations
    11:14 >

  • 2.5- Converting And Casting
    08/16/2018 | 07:28
    2.5- Converting And Casting
    07:28 >

  • 2.6 String Introduction
    08/16/2018 | 07:55
    2.6 String Introduction
    07:55 >

  • 2.7- Final (for creating constant values)
    08/16/2018 | 04:36
    2.7- Final (for creating constant values)
    04:36 >

  • 2.8- User Input from Keyboard Using Scanner Object
    08/17/2018 | 10:12
    2.8- User Input from Keyboard Using Scanner Object
    10:12 >

  • 2.9- Dialog Boxes (JOptionPane)
    08/18/2018 | 05:00
    2.9- Dialog Boxes (JOptionPane)
    05:00 >

  • 2.10- Convert Strings to Numbers
    08/18/2018 | 05:46
    2.10- Convert Strings to Numbers
    05:46 >

  • 3.1- If Introduction
    09/06/2018 | 12:49
    3.1- If Introduction
    12:49 >

  • 3.2- Operators &&, ||, !
    09/06/2018 | 11:28
    3.2- Operators &&, ||, !
    11:28 >

  • 3.3- String Comparisons
    09/07/2018 | 13:43
    3.3- String Comparisons
    13:43 >

  • 3.4- Switch statement
    09/07/2018 | 10:03
    3.4- Switch statement
    10:03 >

  • 4.1- Increment and Decrement
    10/22/2018 | 09:41
    4.1- Increment and Decrement
    09:41 >

  • 4.2- While Loops
    10/23/2018 | 08:29
    4.2- While Loops
    08:29 >

  • 4.3- Do-While Loop
    10/23/2018 | 09:07
    4.3- Do-While Loop
    09:07 >

  • 4.4- For Loops
    10/26/2018 | 08:34
    4.4- For Loops
    08:34 >

  • 4.5- Break & Continue Statements
    10/26/2018 | 08:04
    4.5- Break & Continue Statements
    08:04 >

  • 4.6- File Writing
    11/05/2018 | 13:26
    4.6- File Writing
    13:26 >

  • 4.7- File Appending
    11/05/2018 | 02:44
    4.7- File Appending
    02:44 >

  • 4.8- Reading From Files
    11/07/2018 | 09:18
    4.8- Reading From Files
    09:18 >

  • 4.9- File Opening- Does the file already exist?
    11/08/2018 | 11:34
    4.9- File Opening- Does the file already exist?
    11:34 >

  • 4.10- Analyzing File Data
    11/12/2018 | 13:55
    4.10- Analyzing File Data
    13:55 >

  • 4.11- Random Numbers
    11/07/2020 | 09:11
    4.11- Random Numbers
    09:11 >

  • 5.1- Method Introduction
    01/08/2019 | 10:30
    5.1- Method Introduction
    10:30 >

  • 5.2a- Passing Arguments to Methods- Part 1
    01/10/2019 | 13:27
    5.2a- Passing Arguments to Methods- Part 1
    13:27 >

  • 5.2b- Passing Arguments to Methods- Part 2
    01/15/2019 | 07:01
    5.2b- Passing Arguments to Methods- Part 2
    07:01 >

  • 5.3- Returning Values from Methods
    01/15/2019 | 10:47
    5.3- Returning Values from Methods
    10:47 >

  • 6.1- Class Creation- Part 1
    02/05/2019 | 13:52
    6.1- Class Creation- Part 1
    13:52 >

  • 6.2- Class Creation- Part 2
    02/06/2019 | 09:40
    6.2- Class Creation- Part 2
    09:40 >

  • 6.3- Class Creation- Part 3- Constructors
    02/09/2019 | 13:14
    6.3- Class Creation- Part 3- Constructors
    13:14 >

  • 6.4- Class Creation- Part 4- Passing Objects, Javadoc and UML
    02/14/2019 | 14:42
    6.4- Class Creation- Part 4- Passing Objects, Javadoc and UML
    14:42 >

  • 7.1- Array Introduction
    04/04/2019 | 14:45
    7.1- Array Introduction
    14:45 >

  • 7.2- Arrays... More Stuff
    04/05/2019 | 13:42
    7.2- Arrays... More Stuff
    13:42 >

  • 7.3- Array Methods
    04/07/2019 | 12:09
    7.3- Array Methods
    12:09 >

  • 7.4- Two-Dimension Arrays (Part 1)
    04/11/2019 | 12:17
    7.4- Two-Dimension Arrays (Part 1)
    12:17 >

  • 7.5- Two-Dimension Arrays (Part 2)
    04/12/2019 | 14:58
    7.5- Two-Dimension Arrays (Part 2)
    14:58 >

  • 7.6- ArrayList
    04/16/2019 | 12:10
    7.6- ArrayList
    12:10 >

  • 7.7- Sequential Search
    04/29/2019 | 06:44
    7.7- Sequential Search
    06:44 >

  • 8.1- Static Fields & Methods
    05/07/2019 | 11:25
    8.1- Static Fields & Methods
    11:25 >

  • 8.2- Creating .equals( ) method
    05/15/2019 | 09:56
    8.2- Creating .equals( ) method
    09:56 >

  • 8.3- Copy constructor, .copy( ) method, & Chaining Constructors
    05/15/2019 | 11:35
    8.3- Copy constructor, .copy( ) method, & Chaining Constructors
    11:35 >

  • 8.4- Enumerated Types
    05/15/2019 | 06:39
    8.4- Enumerated Types
    06:39 >