Skip to main content

Job Interviews

I had a job interview today. Man it was rough. I forgot to brush up on my skills and knowledge in computer science and tried to wing the interview. Bad idea. Even though I felt I answered most of the questions decently, it was still very challenging. I bet those guys thought I was an idiot.

[+]A note to anyone who is thinking about or about to get an interview for a programming job.

Make sure you know about data structures, algorithms, efficiencies of data structures, linked list vs arrays(not dynamic), sql statements such as joins and why NULLS are bad in tables.

If you list a programming language be prepared to answer some questions about it. I thought I knew a lot about python. Turns out I was still not too knowledgeable about the simplest stuff. 

This was quite the experience but I think for my next interview I will go in more prepared.

Comments

Popular posts from this blog

Inkscape Game Character #4

This one goes to the fellows a PopCap Games . This is a plant pod from the game Plants vs Zombies.   If you would like to study the drawing feel free to download the Inkscape SVG file. Right click then hit save link as: plantpod.svg All rights reserve to the original artists.

New Angry Birds(Maybe)

So I'm a huge fan of angry birds and while playing the game I thought hey I want to make some birds to break things. So here are some of the birds I created (with the exception of the first one). Let me know what you guys think. If you would like to study the drawing feel free to download the Inkscape SVG file. Right click then hit save link as: newbirds.svg All rights reserve to the original artists.

Libgdx: Create Item Database using JSON files

This blog post describes how to create an Item database using libgdx JSON parser and storing it in a Collections object to retrieve from. 0.) Create the JSON file Save this as "weaponDb.json". This JSON object is used to create a list of Items in which we can grab items from. [ { "id": 1, "name": "Dumb Basic Sword", }, { "id": 2, "name": "Bad Ass Flaming Sword", }, { "id": 3, "name": "Sword of Kick Ass", } ] 1.) Create the test A simple JUnit test to test our database import com.mygdx.items.Item; import com.mygdx.items.ItemLoader; import org.junit.Test; import java.io.IOException; import java.util.ArrayList; /*Simple Test Case*/ public class TestDb { @Test public void testDb() throws IOException { ItemLoader itemLoader = new ItemLoader(); ArrayList database = itemLoader.load(...