

MCQOPTIONS
Saved Bookmarks
This section includes 12 Mcqs, each offering curated multiple-choice questions to sharpen your Junit knowledge and support exam preparation. Choose a topic below to get started.
1. |
What does a specified timeout of 0 imply? |
A. | 130 milliseconds |
B. | 130 minutes |
C. | 130 seconds |
D. | Not set |
Answer» E. | |
2. |
If a timeout which has been specified lapses before the completion of the test, its execution is interrupted with _____________ |
A. | Interrupt() |
B. | Thread.interrupt() |
C. | Thread.interruptable() |
D. | Threads.interruptable() |
Answer» C. Thread.interruptable() | |
3. |
IF_A_TIMEOUT_WHICH_HAS_BEEN_SPECIFIED_LAPSES_BEFORE_THE_COMPLETION_OF_THE_TEST,_ITS_EXECUTION_IS_INTERRUPTED_WITH______________?$ |
A. | Interrupt() |
B. | Thread.interrupt() |
C. | Thread.interruptable() |
D. | Threads.interruptable() |
Answer» C. Thread.interruptable() | |
4. |
What_does_a_specified_timeout_of_0_imply?$ |
A. | 130 milliseconds |
B. | 130 minutes |
C. | 130 seconds |
D. | Not set |
Answer» E. | |
5. |
The Timeout Rule implements which interface? |
A. | Timeout |
B. | Test |
C. | TestingTimeout |
D. | TestRule |
Answer» E. | |
6. |
Where is the Timeout class present? |
A. | org.junit.rules.Timeout |
B. | org.junit.Timeout |
C. | org.Timeout |
D. | org.junit.RuleClasses.Timeout |
Answer» B. org.junit.Timeout | |
7. |
A Timeout Rule is initialized by ____________ |
A. | @Rule public Timeout object = new Timeout() |
B. | @Rule public Timeout object = Timeout.seconds() |
C. | public Timeout object = Timeout.seconds() |
D. | public Timeout object = new Timeout() |
Answer» C. public Timeout object = Timeout.seconds() | |
8. |
What applies the same timeout to every test method of a class? |
A. | @Timeout |
B. | @Expected |
C. | Timeout Rule |
D. | Not possible to apply same timeout |
Answer» D. Not possible to apply same timeout | |
9. |
Timeout testing is ____________ |
A. | Software Dependent |
B. | Hardware Dependent |
C. | Software and Hardware Dependent |
D. | Software and Hardware Independent |
Answer» D. Software and Hardware Independent | |
10. |
@Test(timeout = 130) implies a time limit of ___________ |
A. | 130 milliseconds |
B. | 130 minutes |
C. | 130 seconds |
D. | 1.30 minutes |
Answer» B. 130 minutes | |
11. |
The ___________ parameter is used along with the @Test annotation to test for timeouts. |
A. | Expected |
B. | Timeout |
C. | NoLimit |
D. | Time |
Answer» C. NoLimit | |
12. |
What is timeout testing? |
A. | Testing for exceptions |
B. | Testing code execution within time limits |
C. | Testing code correctness |
D. | Testing code with time functions |
Answer» C. Testing code correctness | |