+ 3
What are the best concepts required for good coding skills?
5 Antworten
+ 4
I only believe in ideas and beauty of coding :)
+ 3
thank you!
+ 1
the concepts depends up on the type of language you are learning ...
but in general for object oriented language you need to be strong in oops concepts ...
0
I'd say if you're talking about general purpose good habits then you should find what conventions are most widely used for the programming language you are using and try to follow that. It helps with overall consistency and readability and helps me personally stay organized. Also, name things intuitively. Don't go naming a variable that holds, let's say, the current amount in someone's bank account 'portebello_mushroom' or something silly like that. Take a moment to think of a good name, you'll thank yourself later. Happy coding!
0
ability to divide a task into subtasks. two short functions are often better than a long one