Technology Questions
Practice Technology MCQs with answers and explanations. Page 29 of 79.
Category
Interview
Topic
Technology
Page
29 / 79
Mode
Practice
Questions
Open any question to view the answer and explanation.
In PL/SQL, what is a database trigger and what are the main types of triggers based on timing and level (row or statement)?
Open
View answer
In Oracle Database, which combination correctly lists the standard transaction isolation levels that are officially supported for transactions?
Open
View answer
In Oracle Database, how can you store an image file inside a table so that the binary image data is kept in the database?
Open
View answer
In formal SQL language definition, which of the following grammar productions are valid elements of the SQL syntax?
Open
View answer
In NoSQL database systems, what is a DocumentDB type database and how is data typically stored in it?
Open
View answer
In Oracle Database, what is the maximum number of row and statement level triggers that can be defined on a single table for the basic INSERT, UPDATE, and DELETE events?
Open
View answer
In Java, what is the main difference between the PATH and CLASSPATH environment variables used by the Java tools and runtime?
Open
View answer
In Java programming, is Java considered a pure object oriented language, and why or why not?
Open
View answer
In Java, how do you typically define a constant variable so that its value cannot be changed after initialisation?
Open
View answer
In Java, what is the access scope of a protected method declared in a class?
Open
View answer
In Java, what is the impact of declaring a method as final in a class?
Open
View answer
In Java source code, which of the following is not a valid way to start a comment?
Open
View answer
In Java, for the syntax fragment "X extends Y", which of the following statements about classes and interfaces is true?
Open
View answer
In the following Java program, what string is printed to the console?
class Hell {
public static void main(String[] args) {
Integer i = 42;
String s = (i < 40) ? "life" : (i > 50) ? "base" : "ball";
System.out.println(s);
}
}
Open
View answer
In Java, what exception type is thrown by the statement Integer.parseInt("two") and should be used in the catch block to handle this error?
Open
View answer
In Java enterprise applications, what is the main difference between a JavaBean and a Servlet in terms of purpose and typical usage?
Open
View answer
In Enterprise JavaBeans (EJB), can you tell whether a session bean is stateful or stateless just by looking at its Java interface signature?
Open
View answer
In Java constructors, how are this() and super() used, and what important restriction applies to their placement inside a constructor body?
Open
View answer
In Java collections, when should you prefer using a HashMap over a TreeMap, and when is a TreeMap the better choice?
Open
View answer
In the Java Collections Framework, what is the Dictionary class and how is it typically used or regarded today?
Open
View answer
Practice smarter
Solve a few questions daily and revisit weak topics regularly to improve accuracy.