Today, I'm kicking off a series of new articles that take a look at real computer science multiple choice questions and attempt to give some tips for solving them. Right now, I want to start by...
Category: Code
Hello World is a simple program, so I thought it would be fun to try to write it in some silly ways. Here are just 5 of those ways.
Returning multiple times in a single function is legal in most programming languages, yet a lot of folks don't like it. Why?
As an educator, I find Java to be a barrier to the fun students want to have while coding, so I often recommend Python as a replacement. Here's why.
Indexing is one of those topics that's sure to rile up the average programmer. Today, I decided to look into how many languages actually support indexing from one.
Indexing arrays is always a confusing topic. After all, the average person starts counting from one, so why don't arrays?