Which of the following is not a part of the JDBC API?
- DriverManager
- ResultSet
- ResultSetMetaData
- SQLException
DriverManager is not a part of the JDBC API. It is a class in the Java standard library used to manage a list of database drivers. The other options are part of the JDBC API for working with databases in Java.
If a method in an interface is declared without an access modifier, it is implicitly ________.
- package-private (no modifier)
- private
- protected
- public
In Java, if a method in an interface is declared without an access modifier, it is implicitly considered public. This means that the method is accessible from any class that implements the interface, even if it is in a different package. The other access modifiers (private, protected, and package-private) cannot be used for interface methods.
How can you manipulate request headers when using HttpURLConnection?
- By altering the HTTP request method
- By calling addRequestHeader method
- By modifying the Content-Type header
- By using the setRequestProperty method
To manipulate request headers in HttpURLConnection, you should use the setRequestProperty method. This method allows you to set custom headers for your HTTP request. Modifying the Content-Type header is one specific use case of this method. The other options are not standard ways to manipulate headers using HttpURLConnection.
Which of the following is not a valid JDBC transaction isolation level?
- TRANSACTION_COMMITTED
- TRANSACTION_NONE
- TRANSACTION_REPEATABLE_READ
- TRANSACTION_SERIALIZABLE
JDBC defines standard transaction isolation levels such as TRANSACTION_NONE, TRANSACTION_SERIALIZABLE, and TRANSACTION_REPEATABLE_READ. However, TRANSACTION_COMMITTED is not a valid JDBC transaction isolation level. Isolation levels determine how transactions interact with each other and the data.
Which method removes the first occurrence of the specified element from a LinkedList?
- delete()
- deleteFirst()
- remove()
- removeFirst()
The remove() method in a LinkedList is used to remove the first occurrence of the specified element. It takes the element as an argument and searches for its first occurrence, then removes it. removeFirst() is not a standard method in LinkedList. deleteFirst() and delete() are not valid methods for removing elements in a LinkedList.
How can you cancel a task submitted to ExecutorService using Future?
- future.cancel(true)
- future.interrupt()
- future.shutdown()
- future.stop()
In Java, you can cancel a task submitted to an ExecutorService using the cancel method on a Future object. The argument true passed to cancel(true) means an attempt to interrupt the task, while false means attempting a graceful cancellation. Using stop() and interrupt() is not recommended for canceling tasks, and shutdown() is used to shut down the entire ExecutorService, not to cancel a specific task.
The ________ class in Java creates an immutable sequence of characters.
- CharArray
- String
- StringBuffer
- StringBuilder
In Java, the String class creates an immutable sequence of characters. This means that once a string is created, its content cannot be changed. The other options, StringBuilder, StringBuffer, and CharArray, are used for mutable character sequences.
A private constructor prevents the class from being instantiated outside of the class and is commonly used in ________.
- Abstraction
- Inheritance
- Polymorphism
- Singleton Pattern
A private constructor is commonly used in the Singleton design pattern. The Singleton pattern ensures that a class has only one instance, and the private constructor prevents external instantiation. It is not typically used for inheritance, polymorphism, or abstraction.
Consider a scenario where you need to write a log file and ensure that each log entry is written to disk immediately for audit compliance. Which classes and/or methods would you use to implement this?
- FileWriter and BufferedWriter classes
- FileOutputStream class and flush() method
- PrintWriter class and sync() method
- RandomAccessFile class and write() method
In this scenario, to ensure that each log entry is written to disk immediately, you can use the PrintWriter class with the sync() method. This combination ensures that data is flushed and written to disk immediately. The other options do not provide the same level of immediate disk writing.
How is operator overloading achieved for the String class in Java?
- By defining custom methods for concatenation
- By using the '+' operator for String concatenation
- By using the '+' operator with custom type conversion
- Java does not support operator overloading for the String class
Operator overloading is not supported for the String class in Java. Instead, Java provides a convenient way to concatenate strings using the '+' operator, but it doesn't involve operator overloading. You can use custom methods for string manipulation, but it's not true operator overloading.