d2jsp
Log InRegister
d2jsp Forums > Off-Topic > Computers & IT > Programming & Development > Coding Professionals
Add Reply New Topic New Poll
Member
Posts: 4,114
Joined: May 9 2008
Gold: 0.00
Dec 12 2015 12:49pm
I've just started my CS degree and my first course is intro to Java. One word to define the class is "gibberish". I literally do not understand a single thing in how to code. I understand everything when the professor explains it and I can tell what a code does by looking at it but the second I get asked to actually write something myself I don't know where to start. I blank out after public.

tl;dr Can read code but not write it.

My question is, how the hell do people become pro's and go work at Google just by learning it themselves. Do they watch YouTube tutorials day in and day out? Read Java books?
Seriously I'm curious to know how people with no academic help manage to become programming Gods.
Member
Posts: 32,925
Joined: Jul 23 2006
Gold: 3,804.50
Dec 12 2015 01:20pm
Don't make two topics in PH. stick to one.

as a teaching assistant, i found most students could be grouped into two categories: 1) the people who enjoy programming and found it interesting prior to college and 2) people who read that CS majors make money and havent tried programming before. you sound like the second bucket. My advice to anyone in high school thinking about starting a CS major is to spend some time programming on your own. if it's a struggle, you might want to consider other careers before you get your heart set on something you never tried.

one important concept to understand is that "programming" isn't the same as "syntax" and "keywords". syntax and keywords are very simple. java has something like 50ish keywords. a real programmer can pick up any language. programming is the problem solving aspect, which isn't something for everyone; in fact, it's probably not for most people. you may have seen people make comparisons to math. in general, if you're the kind of person who hated word problems, then you probably won't like programming. when you get a job, every assignment you get is a word problem. boss gives you functional details ("i want an iphone app where users can request sick days off"), and you have to convert it to technical details.

Before you write code, i suggest you focus on the logic of the program. instead of thinking "what word do i type next?" you should be thinking "how do i solve this problem?" write out pseudocode and don't worry about java or the syntax. after you have the logic done, you can start with the syntax. take one of your previous assignments and try this process on it.

/edit: in general, if all you learned was from school, you probably wouldn't pass the interview at google, though you'd probably be fine at a "normal" company. people who learned out of school probably have the advantage since they don't have the "i'm graduating from an ivy league school" arrogance

This post was edited by carteblanche on Dec 12 2015 01:49pm
Go Back To Programming & Development Topic List
Add Reply New Topic New Poll