logo

CuriousTab

CuriousTab

Discussion


Home Java Programming Threads Comments

  • Question
  • Which statement is true?


  • Options
  • A. A static method cannot be synchronized.
  • B. If a class has synchronized code, multiple threads can still access the nonsynchronized code.
  • C. Variables can be protected from concurrent access problems by marking them with the synchronized keyword.
  • D. When a thread sleeps, it releases its locks.

  • Correct Answer
  • If a class has synchronized code, multiple threads can still access the nonsynchronized code. 

    Explanation
    B is correct because multiple threads are allowed to enter nonsynchronized code, even within a class that has some synchronized methods.

    A is incorrect because static methods can be synchronized; they synchronize on the lock on the instance of class java.lang.Class that represents the class type.

    C is incorrect because only methods?not variables?can be marked synchronized.

    D is incorrect because a sleeping thread still maintains its locks.


    Threads problems


    Search Results


    • 1. Which statement is true?

    • Options
    • A. The notifyAll() method must be called from a synchronized context.
    • B. To call wait(), an object must own the lock on the thread.
    • C. The notify() method is defined in class java.lang.Thread.
    • D. The notify() method causes a thread to immediately release its locks.
    • Discuss
    • 2. Which statement is true?

    • Options
    • A. If only one thread is blocked in the wait method of an object, and another thread executes the modify on that same object, then the first thread immediately resumes execution.
    • B. If a thread is blocked in the wait method of an object, and another thread executes the notify method on the same object, it is still possible that the first thread might never resume execution.
    • C. If a thread is blocked in the wait method of an object, and another thread executes the notify method on the same object, then the first thread definitely resumes execution as a direct and sole consequence of the notify call.
    • D. If two threads are blocked in the wait method of one object, and another thread executes the notify method on the same object, then the first thread that executed the wait call first definitely resumes execution as a direct and sole consequence of the notify call.
    • Discuss
    • 3. The following block of code creates a Thread using a Runnable target:
      Runnable target = new MyRunnable();
      Thread myThread = new Thread(target);
      
      Which of the following classes can be used to create the target, so that the preceding code compiles correctly?

    • Options
    • A. public class MyRunnable extends Runnable{public void run(){}}
    • B. public class MyRunnable extends Object{public void run(){}}
    • C. public class MyRunnable implements Runnable{public void run(){}}
    • D. public class MyRunnable implements Runnable{void run(){}}
    • Discuss
    • 4. Which two statements are true?

      1. Deadlock will not occur if wait()/notify() is used
      2. A thread will resume execution as soon as its sleep duration expires.
      3. Synchronization can prevent two objects from being accessed by the same thread.
      4. The wait() method is overloaded to accept a duration.
      5. The notify() method is overloaded to accept a duration.
      6. Both wait() and notify() must be called from a synchronized context.

    • Options
    • A. 1 and 2
    • B. 3 and 5
    • C. 4 and 6
    • D. 1 and 3
    • Discuss
    • 5. What will be the output of the program?
      class MyThread extends Thread 
      {
          MyThread() 
          {
              System.out.print(" MyThread");
          }
          public void run() 
          {
              System.out.print(" bar");
          }
          public void run(String s) 
          {
              System.out.println(" baz");
          }
      }
      public class TestThreads 
      {
          public static void main (String [] args) 
          {
              Thread t = new MyThread() 
              {
                  public void run() 
                  {
                      System.out.println(" foo");
                  }
              };
              t.start();
          }
      }
      

    • Options
    • A. foo
    • B. MyThread foo
    • C. MyThread bar
    • D. foo bar
    • Discuss
    • 6. Which two can be used to create a new Thread?

      1. Extend java.lang.Thread and override the run() method.
      2. Extend java.lang.Runnable and override the start() method.
      3. Implement java.lang.Thread and implement the run() method.
      4. Implement java.lang.Runnable and implement the run() method.
      5. Implement java.lang.Thread and implement the start() method.

    • Options
    • A. 1 and 2
    • B. 2 and 3
    • C. 1 and 4
    • D. 3 and 4
    • Discuss
    • 7. Which of the following statements is true?

    • Options
    • A. In an assert statement, the expression after the colon ( : ) can be any Java expression.
    • B. If a switch block has no default, adding an assert default is considered appropriate.
    • C. In an assert statement, if the expression after the colon ( : ) does not have a value, the assert's error message will be empty.
    • D. It is appropriate to handle assertion failures using a catch clause.
    • Discuss
    • 8. Which of the following statements is true?

    • Options
    • A. If assertions are compiled into a source file, and if no flags are included at runtime, assertions will execute by default.
    • B. As of Java version 1.4, assertion statements are compiled by default.
    • C. With the proper use of runtime arguments, it is possible to instruct the VM to disable assertions for a certain class, and to enable assertions for a certain package, at the same time.
    • D. When evaluating command-line arguments, the VM gives -ea flags precedence over -da flags.
    • Discuss
    • 9. Which three statements are true?

      1. Assertion checking is typically enabled when a program is deployed.
      2. It is never appropriate to write code to handle failure of an assert statement.
      3. Assertion checking is typically enabled during program development and testing.
      4. Assertion checking can be selectively enabled or disabled on a per-package basis, but not on a per-class basis.
      5. Assertion checking can be selectively enabled or disabled on both a per-package basis and a per-class basis.

    • Options
    • A. 1, 2 and 4
    • B. 2, 3 and 5
    • C. 3, 4 and 5
    • D. 1, 2 and 5
    • Discuss
    • 10. Which statement is true?

    • Options
    • A. Assertions can be enabled or disabled on a class-by-class basis.
    • B. Conditional compilation is used to allow tested classes to run at full speed.
    • C. Assertions are appropriate for checking the validity of arguments in a method.
    • D. The programmer can choose to execute a return statement or to throw an exception if an assertion fails.
    • Discuss


    Comments

    There are no comments.

Enter a new Comment