Hey Devs! π
Today marks Day 1 of my 30-Day Core Java Challenge! π»β
Iβve decided to commit the next 30 days to learning Core Java to strengthen my fundamentals and grow as a developer.
π What I'm Using to Learn
I'm following a Java course on Udemy, which covers:
- Java basics & syntax
- Object-Oriented Programming (OOP)
- Collections
- Exception handling
- File I/O
- And more!
π― My Goals for This Challenge
- Study Java every day (even if just for 30 minutes)
- Build mini projects** along the way
- Share my daily progress here to stay accountable
- Ask questions and connect with others learning Java
β Day 1 Progress
- Installed JDK & setup IntelliJ IDEA
- Learned about the Java Virtual Machine (JVM), JRE & JDK
- Wrote my first Hello World program π
java
public class Main {
public static void main(String[] args) {
System.out.println("Hello, Java!");
}
}
Top comments (1)
Which java course are you learning on Udemy?