Course Hive
Search

Welcome

Sign in or create your account

Continue with Google
or
Java variables are easy! ❎
Play lesson

Java tutorial for beginners ☕ - Java variables are easy! ❎

5.0 (4)
40 learners

What you'll learn

This course includes

  • 12 hours of video
  • Certificate of completion
  • Access on mobile and TV

Summary

Keywords

Full Transcript

#java #javatutorial #javacourse public class Main { public static void main(String[] args) { // ❎ variable = A reusable container for a value. // A variable behaves as if it was the value it contains. // 🟥 Primitive = simple value stored directly in memory (stack) // 🟦 Reference = memory address (stack) that points to the (heap) // 🟥 Primitive vs 🟦 Reference // --------- --------- // int string // double array // char object // boolean int age = 21; int year = 2025; int quantity = 1; double price = 19.99; double gpa = 3.5; double temperature = -12.5; char grade = 'A'; char symbol = '!'; char currency = '$'; boolean isStudent = true; boolean forSale = false; boolean isOnline = true; String name = "Bro Code"; String food = "pizza"; String email = "fake123@gmail.com"; String car = "Mustang"; String color = "red"; System.out.println("Your choice is a " + color + " " + year + " " + car); System.out.println("The price is: " + currency + price); if(forSale){ System.out.println("There is a " + car + " for sale"); } else{ System.out.println("The " + car + " is not for sale"); } } }

Course Hive

Continue this lesson in the app

Install CourseHive on Android or iOS to keep learning while you move.

Related Courses

FAQs

Course Hive
Download CourseHive
Keep learning anywhere