+ 1
new to coding
Im not in school but im trying to learn coding on my own any advice for somebody coming into coding blindly
2 Answers
+ 2
2 Ways to learn.
1. Do Sololearn but always try to memorize what you see.
"Oh I passed the course now i understand it" is the most common mistake
(that i did before as well) since you just forget about it after 3 days.
Grab Netbeans IDE and try replicating the examples.
2. Say goodbye to sololearn and search for Java Tutorials from oracle
(It has this name.
I'm not talking about any kind of Tutorial)
Open your IDE and try making a simple program and implementing everything
you learn. Oh, and don't forget to use the double slash (//) to leave a comment
In codes that you just copy pasted because you didnt understand. Otherwise
you can lose track of what you understand and what you don't. The discussing section of this site is really nice and all but Stack Overflow got a STASH of
questions that already got answered.
TL;DR
Sololearn is good but not in its own.
Learn with sololearn, Understand with Java Tutorials, Practice with an IDE,
And ask internet for everything you don't know.
Hope this helps.
0
/*code, eat, sleep, repeat :)
practice coding each day i find this the best way to learn.
getting to know how strings and ints work is a good start as it all kind of based with symbols having a value.*/
String x = "hello world ";
int y = 33;
System.out.println(x + y);
/*output hello world 33*/