vote up -5 vote down star

I want to make a basic list of the most common basic skills and concpets one should have when claiming "mastery" of a language.

Funny anecdote: I once worked with a dude who said he knew java inside and out. I was suspicious when we were discussing inheiritance vs interface design --- turns out he knew javascript but seriously thought that meant he also knew java.

so, what are some things one should be able to do? My list:

1) string kung-fu: trim, truncate, concatenate, tokenize should all be skills needed

2) file processing: read, write, open, close files

3) bit manipulation

4) casting between types

Your list?

flag

76% accept rate

13 Answers

vote up 1 vote down

The most common thing you should be able to do in any language is declare a variable. Hands down.

link|flag
What about auto vivification? – tunnuz Jan 28 at 16:00
vote up 0 vote down

I'm gonna go with printing output, though the variable answer is good too.

It depends on your target system, I had some microprocessor stuff at uni and there was not console to print stuff to which really sucked.

link|flag
vote up 0 vote down

I think understanding bitwise operations is a must.

link|flag
Some languages do not have bitwise operations. It isn't clear what a bitwise or would mean on Common Lisp bignums, for example. – David Thornley Jan 28 at 17:01
vote up -1 vote down

Install a compiler.

link|flag
vote up -1 vote down

Writing comments.

link|flag
vote up 0 vote down

I'd say that it is evaluating an expression.
Without expressions, no program flow. Without program flow, no logic.

link|flag
vote up 0 vote down

Larry O'Brien has a list here of 15 exercises for knowing a programming language. If you can successfully do all of them, then I think you are a master of the specific language. I think the list covers most of the essentials.

link|flag
Your link doesn't work for me. =0( – Scottie T Jan 28 at 16:04
He moved his blog to wordpress,but I have updated the link. Cheers – Nick Masao Jan 30 at 15:13
vote up 0 vote down

I honestly don't think that this can be answered with a list that applys to all programming languages. There are too many languages, and too many different criteria that would be considered critical for mastery of a language that don't apply to all languages. Even among the mainstream languages, stuff that most users of the language would consider signs of "mastery" are going to be language specific.

I suppose it would all boil down to (to steal a bit from SICP):

  • Know the keywords of the language and what they are for
  • Know the means of combination in X language
  • Know the means of abstraction in X language
  • Know how to use the three things above effectively in X language

Then again, that's rather vague.

link|flag
vote up 6 vote down

Forget the language, problem solving skills are going to make or break you no matter the language you choose.

link|flag
vote up -1 vote down

Ability to create business value with it.

link|flag
vote up 0 vote down

The ability to research effectively or put in other words:

Learn how to Learn!

G-Man

link|flag
vote up 0 vote down

To claim "mastery" of language, to me, means more than just knowing how to do some menial tasks in the language. You should be able to design and develop large scale application with it, and have a few years of experience doing so with that language.

I know how to do all the things you've listed in Haskell (Except casting between types. You try doing that in Haskell :P), but I'm certainly not a master at it. This is a totally subjective question, and "mastery" isn't a concept measured by single skills.

Alex

link|flag
vote up 0 vote down

There can be no list. There is too much difference between languages, particularly if we include specialized languages like SQL.

Some languages haven't supported strings in any meaningful way (I have worked with some BASIC systems that didn't). SQL doesn't have the idea of a file (and neither does a free-standing C implementation). COBOL (at least when I used it) didn't have bitwise operations. Some languages don't actually have variable types (like the Forth I used, or some assembly languages), and IIRC some don't allow casting.

Even among the C descendants, there is no one list. You can't be a good C programmer without understanding pointers and memory management, which are not concerns for a Java programmer. A C++ programmer needs to have at least a basic knowledge of exceptions, which don't exist in C. If you can't put together a list of necessary skills in a language family like that, what hope have you of making one for computer languages in general?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.