Final of Introduction to Programming I

Click here to download the PDF for the final exam.

Comments

  1. 55 questions for 60 minutes? really?

    ReplyDelete
  2. It was eeeeeeeeeeeeextremely hard

    ReplyDelete
  3. Some of questions does not seems correct, will there be an appeal session? At least the question #34. Quote from the sources of standart Java library:

    /**
    * Causes this thread to begin execution; the Java Virtual Machine
    * calls the run method of this thread.
    *
    * The result is that two threads are running concurrently: the
    * current thread (which returns from the call to the
    * start method) and the other thread (which executes its
    * run method).
    *
    * It is never legal to start a thread more than once.
    * In particular, a thread may not be restarted once it has completed
    * execution.
    *
    * @exception IllegalThreadStateException if the thread was already
    * started.
    * @see #run()
    * @see #stop()
    */
    public synchronized void start() {
    ...
    }

    ReplyDelete

Post a Comment