I need to study for a state competition.

Hello!

I am a first-year high school Computer Science student and the sole representative for my school at the state UIL competition. I only placed in test-taking at Regional with a rather pathetic score, and that without my team to help with the point-total at State. I need to study syntax, string-manipulation, collections, and Big-O measurements, among other things,not the actual programming. I would prefer lessons and quizzes focusing on one topic at a time to tests, but any reference would be extremely helpful. Thanks!

[549 byte] By [Jesdisciplea] at [2007-11-27 1:32:03]
# 1
http://www.google.comLook through the Sun tutorials on whatever subject you want. They are very helpful.
CaptainMorgan08a at 2007-7-12 0:35:52 > top of Java-index,Java Essentials,Training...
# 2
www.topcoder.comTry some of their practice tuts, if you don't know the java required you can look at others submitted answers to see how it's used.
Bogada at 2007-7-12 0:35:52 > top of Java-index,Java Essentials,Training...
# 3
http://www.javaranch.com/cattledrive.jsp has some very interesting challenges.
cookepa at 2007-7-12 0:35:52 > top of Java-index,Java Essentials,Training...
# 4
JavaRanch required $200 which I'm not willing to pay. TopCoder might end up being useful, but, every time I go back to the registration form again, my session has expired; I've contacted their support to get through this. Thanks again!
Jesdisciplea at 2007-7-12 0:35:52 > top of Java-index,Java Essentials,Training...
# 5
> .JavaRanch required $200 which I'm not willing to pay. Not just to do the exercises, surely! What was the money for?
DrLaszloJamfa at 2007-7-12 0:35:52 > top of Java-index,Java Essentials,Training...
# 6
The $200 is to grade the assignments and mail you what ever it is you get when you pass.You can see the assignments for free at the bottom of the page.
cookepa at 2007-7-12 0:35:52 > top of Java-index,Java Essentials,Training...
# 7
So you looking for someone who'll grade assignments for free?!By the way, there are many on-line Java quizes, often associated withcertification examines. Search this forum or google for them.
DrLaszloJamfa at 2007-7-12 0:35:52 > top of Java-index,Java Essentials,Training...
# 8
http://www.javabat.com/I might not be as difficult as you would like, but it does check to see if you got them right.
CaptainMorgan08a at 2007-7-12 0:35:52 > top of Java-index,Java Essentials,Training...
# 9
These resources are great and I expect to use them after my competition, but I need to learn how to answer test questions about code and code-related topics, not how to program. I think APIs and The Java Tutorial are the only things useful for studying right now. Thanks for your help!
Jesdisciplea at 2007-7-12 0:35:52 > top of Java-index,Java Essentials,Training...
# 10
so you just want "the quick answers" to cheat your way past a job interview about a topic you don't know the first thing about and you have no interest in learning about.Why didn't you say so immediately, would have made things so much easier for everyone.
jwentinga at 2007-7-12 0:35:52 > top of Java-index,Java Essentials,Training...
# 11

> so you just want "the quick answers" to cheat your

> way past a job interview about a topic you don't know

> the first thing about and you have no interest in

> learning about.

> Why didn't you say so immediately, would have made

> things so much easier for everyone.

I think he's look to see how data structures work and other algorithms. The tricky type stuff you'd see on a generally ridiculous test.

I know, I was in the Regional Competition for this.

To the original poster:

I'd suggest reading everything you can on Binary Search Trees, Priority Queues, Maps, Sets, LinkedLists, Iterators, etc.

Not only would I recommend reading these, but actually learning how to write your own classes that mirror what these do.

I didn't have enough time to study all of these, but after reading pages after pages of BST's I got every question on the test about them right. (Except 1 stupid mistake I made :( ).

On every test I've seen this year, the test creator has used a Sorting problem.

Eg. Selection sort, quick sort, merge sort, insertion sort.

I'd suggest reading over and learning all of those and how to implement them yourself.

Here is a great site that teaches you about Data Structuring and how to use/write the Sorting methods.

http://www.theparticle.com/javadata2.html

Good resource:

http://leepoint.net/notes-java/

You're going to the state level right?

Why do you need help ? :P

Unless you're in a smaller conference maybe?

Also, I'd be more focused on Data structuring and small algorithms rather than manipulation of Strings and such. On the latest test, there was 1 BigO question, and maybe 1 or 2 String manipulation questions.

Message was edited by:

lethalwire

lethalwirea at 2007-7-12 0:35:52 > top of Java-index,Java Essentials,Training...
# 12
Thanks, lethalwire. And yes, I'm in a small conference. I did pretty well at all the invitational practice meets and District, but my score went down more than half between District and Regional. Thanks again for the info!
Jesdisciplea at 2007-7-12 0:35:52 > top of Java-index,Java Essentials,Training...
# 13
I just remembered to post on it, but, thanks to the help I got here, I placed at state. I plan to refer back here for the general resources, as well. Thanks!
Jesdisciplea at 2007-7-12 0:35:52 > top of Java-index,Java Essentials,Training...
# 14
you may find the bookA programmer's guide to Java Certificationby Khalid Mughal and Rasmussenuseful.
PMJaina at 2007-7-12 0:35:52 > top of Java-index,Java Essentials,Training...