#15 in Java programming books
Use arrows to jump to the previous/next product

Reddit mentions of Java For Dummies (For Dummies (Computers))

Sentiment score: 1
Reddit mentions: 2

We found 2 Reddit mentions of Java For Dummies (For Dummies (Computers)). Here are the top ones.

Java For Dummies (For Dummies (Computers))
Buying options
View on Amazon.com
or
Specs:
Height9.25 Inches
Length7.5 Inches
Number of items1
Weight2.11 Pounds
Width0.94 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 2 comments on Java For Dummies (For Dummies (Computers)):

u/Crippled_shadow ยท 1 pointr/AskProgramming

> What programming languages or technologies to learn to get the best paying career possible

There's no good answer to this question. Technologies changes every few years. Python pays well now but in a few years the Shakespeare Programming Language could be the go-to language /s. If you want the best paying career possible learn the fundamentals. They are almost universal to every programming language and is the reason why good programmers can pick up languages quickly.

That being said, here's a copypasta when I helped someone else.

  • IDE:
    • (integrated development environment) This is your "Microsoft Word" for programming.
    • I recommend NetBeans or Eclipse. Atom is a great IDE I just picked up and I love it.

  • Concepts:
    • variables (data types)
    • if statements
    • for loops
    • while loops
    • method
    • classes
    • Objects
    • constructors
    • arrays
    • There's a lot of little things in programming languages and, when you start it's hard to figure out what's important and what's not. These are the concepts you'll see early on that should stand out as important.

  • Resources (Beginner):
    • I learned Java in college so I did not use these resources. However, I have looked at them and they seem to cover the important parts.
    • Java For Dummies. If your dissuaded by a "For Dummies" book don't be! They are very clearly written and cut out all the useless bits that just confuse people.
    • Udemy. If you look under the "Programming Core Java" you'll see A LOT of what I mentioned in the my concepts section.

  • Resources (Intermediate):
    • After you've gotten comfortable with the stuff in the "concepts" section you're probably ready for this.
    • Projects are the BEST way to learn. At this point Youtube videos and blog tutorials will only help so much.
    • Look for simple projects you can do. GitHub can help.
    • Write a To-Do list application
    • Write a countdown/timer application
    • Take in a list of something and put it in alphabetical order