The ________ interface in Java provides a way to traverse, filter, and extract data.

  • Collection
  • Iterable
  • Iterator
  • Stream
The Iterable interface in Java provides a way to traverse (iterate over) a collection of elements. It allows you to loop through the elements and perform operations on them. While it doesn't provide built-in filtering or extraction like Streams, it serves as a foundation for working with collections.

A method or a data member which is declared as ________ is accessible to all classes in the Java program.

  • default (package-private)
  • private
  • protected
  • public
In Java, when a method or data member is declared as "public," it is accessible to all classes, regardless of their location in the program. This is the highest level of visibility, and it allows unrestricted access from any part of the program.

The switch case in Java can be used with data types like _______, _______, and _______.

  • byte, short, int
  • char, long, byte
  • double, string
  • int, float, boolean
In Java, the switch case can be used with data types like char, long, and byte. While other data types like int, float, boolean, double, and String are commonly used in Java, they are not directly compatible with the switch case. This limitation is important to consider when using switch statements.

The process of converting a primitive data type into an object is known as ________.

  • Boxing
  • Casting
  • Parsing
  • Wrapping
The process of converting a primitive data type into an object is known as "boxing." Boxing involves creating an object (e.g., Integer, Double) from a primitive type (e.g., int, double). This is often required when using primitive types in contexts that expect objects, such as collections and generics.

What is the issue, if any, with the following statement: int[][] arr = new int[][5];?

  • It declares a 2D array with a missing size for the first dimension.
  • It declares a 2D array with a missing size for the second dimension.
  • It declares a 2D array with a size of 5 for both dimensions.
  • It declares a valid 2D array in Java.
The statement is incorrect because when declaring a 2D array, you need to specify the size of both dimensions. In this case, the size for the second dimension is missing (int[][5]). The correct syntax would be something like int[][] arr = new int[3][5];, where 3 is the number of rows, and 5 is the number of columns.

What is the role of Savepoint in JDBC transactions?

  • It allows you to create a named point within a transaction where you can roll back to later
  • It is a way to commit a transaction and make the changes permanent
  • It is used to save the current state of a database before making any changes
  • It is used to terminate a transaction prematurely
Savepoints in JDBC transactions allow you to create a named point within a transaction. This named point can be used to roll back the transaction to that specific point if needed, providing finer-grained control over transaction rollback. Options 2, 3, and 4 do not accurately describe the role of Savepoint in JDBC transactions.

Which of the following keywords is used to create a new object in Java?

  • createObject
  • new
  • newInstance
  • newObject
In Java, the new keyword is used to create a new object. When you want to instantiate a class and create an object, you use the new keyword followed by the class constructor. For example, ClassName obj = new ClassName();. The other options are not used to create objects in Java.

Consider a scenario where you are developing a menu-driven application. The user is presented with different options, and based on the user's selection, a specific action is performed. Which control structure would be the most appropriate to handle this?

  • Do-while loop
  • For loop
  • Switch statement
  • While loop
In this scenario, a switch statement would be the most appropriate control structure. It allows you to efficiently handle multiple options and execute specific code blocks based on the user's selection. Each case represents a different option, making the code more readable and maintainable compared to a series of if-else statements. The for, while, and do-while loops are used for iterative operations, not menu-driven options.

Which class should be used when a string is going to be modified frequently?

  • StringArray
  • StringBuffer
  • StringBuilder
  • StringModifier
When a string is going to be modified frequently in Java, the StringBuilder class should be used. This class provides a mutable sequence of characters and is more efficient for string manipulation operations compared to String or StringBuffer. The other options, StringBuffer, StringArray, and StringModifier, are not standard Java classes for string manipulation.

How can you create a bi-directional binding between two properties in JavaFX?

  • By manually updating the properties.
  • Using the addBinding() method.
  • Using the bind() method.
  • Using the bindBidirectional() method.
To create a bi-directional binding between two properties in JavaFX, you can use the bindBidirectional() method provided by the javafx.beans.property package. This method establishes a two-way connection between the properties, ensuring that changes in one property are automatically reflected in the other and vice versa. This is a powerful feature for maintaining consistency between related properties.