Please enable JavaScript to use CodeHS

TCH323BE2 Introduction to Java Programming 1

Outline


1. Basic Java
1.1 Printing in Java
Video 1.1.1 Printing in Java
Quiz 1.1.2 Printing in Java
Example 1.1.3 Hello world
Example 1.1.4 Printing Multiple Lines
Exercise 1.1.5 Welcome Program
Exercise 1.1.6 ASCII Art
1.2 Variables and Types
Video 1.2.1 Variables and Types
Quiz 1.2.2 Variables and Types
Example 1.2.3 Variables
Exercise 1.2.4 Our First Integer
Exercise 1.2.5 Answering Questions
1.3 User Input
Video 1.3.1 User Input
Quiz 1.3.2 User Input
Example 1.3.3 UserInput
Exercise 1.3.4 About You
Exercise 1.3.5 Poetry
1.4 Arithmetic Expressions
Video 1.4.1 Arithmetic Expressions
Quiz 1.4.2 Arithmetic Expressions
Example 1.4.3 Calculator
Example 1.4.4 Tricky Java
Exercise 1.4.5 Area of a Rectangle
Exercise 1.4.6 Add Fractions
1.5 Casting
Video 1.5.1 Casting
Quiz 1.5.2 Casting
Example 1.5.3 Casting
Exercise 1.5.4 Casting to an Int
Exercise 1.5.5 Casting to a Double
Example 1.5.6 Casting Order of Operations
Example 1.5.7 Rounding using Casting
Exercise 1.5.8 Movie Ratings
1.6 Booleans
Video 1.6.1 Booleans
Quiz 1.6.2 Booleans
Example 1.6.3 Boolean Example
Exercise 1.6.4 Ice Cream
1.7 Logical Operators
Video 1.7.1 Logical Operators
Quiz 1.7.2 Logical Operators
Example 1.7.3 Light Switch
Exercise 1.7.4 Roller Coaster
1.8 Comparison Operators
Video 1.8.1 Comparison Operators
Quiz 1.8.2 Comparison Operators
Example 1.8.3 Grade Range
Exercise 1.8.4 Triple Double
1.9 For Loops
Video 1.9.1 For Loops
Quiz 1.9.2 For Loops
Example 1.9.3 The For Loop
Exercise 1.9.4 Repeat 1000 Times
Video 1.9.5 General For Loop
Example 1.9.6 Countdown
Example 1.9.7 Count By Twos
Exercise 1.9.8 Print The Odds
Video 1.9.9 For Loop Examples
Example 1.9.10 For Loop Sum
Exercise 1.9.11 Factorial
1.10 While Loops
Video 1.10.1 While Loops
Quiz 1.10.2 While Loops
Example 1.10.3 While Loop Countdown
Exercise 1.10.4 Even Numbers - While Loop
1.11 If Statements
Video 1.11.1 If Statements
Quiz 1.11.2 If Statements
Example 1.11.3 Negative Numbers
Example 1.11.4 Even and Odd
Exercise 1.11.5 Find the Minimum
1.12 Loop-and-a-Half
Video 1.12.1 Loop-and-a-Half
Quiz 1.12.2 Loop-and-a-Half Quiz
Example 1.12.3 Running Average
Exercise 1.12.4 Guess the Number
1.13 Short-Circuit Evaluation
Video 1.13.1 Short-Circuit Evaluation
Quiz 1.13.2 Short-Circuit Evaluation Quiz
Example 1.13.3 Pizza Slices
Exercise 1.13.4 Divisibility
1.14 De Morgan's Laws
Video 1.14.1 De Morgan's Laws
Quiz 1.14.2 De Morgan's Laws Quiz
Example 1.14.3 De Morgan AND
Example 1.14.4 De Morgan OR
Exercise 1.14.5 Amusement Park
1.15 Strings
Video 1.15.1 Strings
Quiz 1.15.2 Strings
Example 1.15.3 Comparing Strings
Exercise 1.15.4 Three Strings
Badge 1.15.5 Basic Java Exercises Badge
1.16 Unit Quiz
Quiz 1.16.1 Intro Java Unit 1
2. Methods
2.1 Java Methods
Video 2.1.1 Java Methods
Quiz 2.1.2 Java Methods
Example 2.1.3 Print Line Break
Exercise 2.1.4 Print Java
2.2 Methods and Parameters
Video 2.2.1 Methods and Parameters
Quiz 2.2.2 Methods and Parameters
Example 2.2.3 Line Breaks with Parameters
Example 2.2.4 Sum
Exercise 2.2.5 Multiply
Exercise 2.2.6 Add10
Exercise 2.2.7 Countdown From
Exercise 2.2.8 Echo
2.3 Methods and Return Values
Video 2.3.1 Methods and Return Values
Quiz 2.3.2 Return Value
Example 2.3.3 Methods and Return Values
Practice 2.3.4 Double Number
Practice 2.3.5 Square
Practice 2.3.6 Average
2.4 Javadocs and More Methods
Video 2.4.1 Javadocs
Quiz 2.4.2 Javadocs
Example 2.4.3 Javadoc Sum
Practice 2.4.4 Is in Range
Practice 2.4.5 Sum Range
Practice 2.4.6 Is Divisible
Practice 2.4.7 Fahrenheit to Celsius
2.5 Strings Methods
Video 2.5.1 String Methods
Example 2.5.2 Looping Over a String
Practice 2.5.3 Yelling
Practice 2.5.4 Porky Pig
Practice 2.5.5 Triple String
Practice 2.5.6 Full Name
Practice 2.5.7 First and Last
Practice 2.5.8 Repeating String
2.6 Strings and Characters
Video 2.6.1 Strings and Characters
Example 2.6.2 Chars are Numbers
Example 2.6.3 Escape Sequences
Example 2.6.4 Character Methods
Practice 2.6.5 Is it an Integer?
2.7 Exceptions
Video 2.7.1 Exceptions
Quiz 2.7.2 Exceptions Quiz
Example 2.7.3 Arithmetic Exception
Example 2.7.4 Index Out Of Bounds Exception
Exercise 2.7.5 Bug Hunter
2.8 String Processing
Video 2.8.1 String Processing
Example 2.8.2 Finding Palindromes
Example 2.8.3 String Concatenation
Practice 2.8.4 Fix the Sum String
Practice 2.8.5 Convert To Uppercase
Practice 2.8.6 Double Vowels
Practice 2.8.7 All Same Letter
Practice 2.8.8 AltCase
Practice 2.8.9 Do the Brackets Match?
Practice 2.8.10 Teen Talk
Practice 2.8.11 Password Checker
Practice 2.8.12 Replace Letter
Badge 2.8.13 Methods Exercises Badge
2.9 Unit Quiz
Quiz 2.9.1 Intro Java Unit 2