What is the primary difference between Runnable and Callable interfaces?
- Callable can be scheduled for future execution.
- Callable can run without being wrapped in a thread.
- Runnable allows returning a result.
- Runnable can be used for multi-threading.
The primary difference between Runnable and Callable interfaces is that Callable allows you to return a result from the computation, whereas Runnable does not. Callable is typically used when you need a result from a task that can be scheduled for future execution, while Runnable is a simple interface for a task that does not return a result.
The ________ method in the Stream API returns an equivalent stream that is sequential.
- filter
- map
- parallel
- sequential
In the Stream API of Java, the sequential() method is used to return an equivalent stream that is sequential in nature. This method can be useful when you want to ensure that subsequent operations on the stream are executed in a sequential order.
In Java, a variable declared within a method is referred to as a ________ variable.
- Global
- Instance
- Local
- Static
In Java, a variable declared within a method is referred to as a "Local" variable. Local variables are defined within a method and are only accessible within that method's scope. They are used for temporary storage and are typically used to store intermediate results or data specific to a method.
Which method is used to write characters to a file in Java?
- append()
- println()
- read()
- write()
To write characters to a file in Java, you typically use the write() method, which is available in classes like FileWriter and BufferedWriter. It allows you to write characters as a sequence of bytes to the file. The other options, such as read(), append(), and println(), are not primarily used for writing characters to a file.
The ________ class is used to display a color picker in JavaFX.
- ColorChooser
- ColorDialog
- ColorPicker
- ColorSelector
In JavaFX, the ColorPicker class is used to display a color picker. It allows users to select colors easily by providing a graphical interface for color selection. You can integrate it into your JavaFX applications to enable users to choose colors interactively.
An abstract class in Java can have both ________ and non-abstract methods.
- Both Abstract and Static Methods
- Non-Static Methods
- Only Abstract Methods
- Only Static Methods
An abstract class in Java can have both abstract (unimplemented) and non-abstract (implemented) methods. Abstract methods are declared using the 'abstract' keyword and are meant to be implemented by concrete subclasses, while non-abstract methods provide default implementations that can be inherited by subclasses or overridden.
In a JavaFX application, you have a scenario where a button should become visible only after a sequence of animations has completed. How would you implement this to ensure a smooth UI experience?
- Manually add a delay between animations and make the button visible using the setVisible method after the delay.
- Use a ParallelTransition to run animations simultaneously, ensuring that the button appears at the right moment during the animations.
- Use a SequentialTransition to combine all animations in a sequence and add a ChangeListener to the last animation to make the button visible when it completes.
- Use a Timeline to schedule the button's visibility change at a specific time relative to the animations.
In JavaFX, for a smooth UI experience, you can use a SequentialTransition to combine animations in a sequence. By adding a ChangeListener to the last animation, you can make the button visible when the sequence completes. This approach ensures synchronization. Using a ParallelTransition won't guarantee the button's visibility at the right time. Manually adding a delay is less reliable and can lead to timing issues. Using a Timeline is not the optimal choice for sequencing animations.
How does Java store a two-dimensional array in memory?
- Java stores a two-dimensional array as a contiguous block of memory, with rows and columns laid out sequentially.
- Java stores a two-dimensional array as a set of separate arrays, where each row is a distinct array stored in memory.
- Java stores a two-dimensional array as a single array where each element points to another array holding the row data.
- Java uses a linked list data structure to store elements in a two-dimensional array, providing dynamic memory allocation.
In Java, a two-dimensional array is stored as a contiguous block of memory, with rows and columns laid out sequentially. This ensures efficient memory access and better cache performance. The other options are not how Java stores two-dimensional arrays and may lead to inefficiencies.
What is the correct syntax for the switch statement in Java?
- select(expr) { }
- switch { case: ... break; }
- switch(expr) { case: ... }
- switch(expression) { }
In Java, the correct syntax for a switch statement is: switch (expression) { case value1: // Code for value1 break; case value2: // Code for value2 break; // Add more cases as needed default: // Code to execute if no case matches } The switch statement is used for multi-way branching based on the value of the expression.
BufferedReader uses a default buffer size of ________ characters unless specified otherwise.
- 1024
- 4096
- 512
- 8192
BufferedReader uses a default buffer size of 1024 characters unless you specify a different size during its initialization. Choosing an appropriate buffer size can optimize input operations.