- Регистрация
- 1 Мар 2015
- Сообщения
- 1,481
- Баллы
- 155
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:
? My Goals for This Challenge
Day 1 Progress
java
public class Main {
public static void main(String[] args) {
System.out.println("Hello, Java!");
}
}
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
- 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!");
}
}