J2SE

  Home  Java Programing  J2SE


“J2SE Interview Questions and Answers will teach you now that Java Platform, Standard Edition or Java SE is a widely used platform for programming in the Java language. It is the Java Platform used to deploy portable applications for general use. In practical terms, Java SE consists of a virtual machine. So learn J2SE by this Java Platform, Standard Edition Interview Questions with Answers guide”



206 J2SE Questions And Answers

123⟩ What is multithreaded?

Describes a program that is designed to have parts of its code execute concurrently. See also thread.

 184 views

125⟩ What is OTS?

Object Transaction Service. A definition of the interfaces that permit CORBA objects to participate in transactions.

 154 views

126⟩ What is ORB?

Object Request Broker. A library than enables CORBA objects to locate and communicate with one another.

 176 views

127⟩ What is octal What is object-oriented design?

The numbering system using 8 as its base, using the numerals 0-7 as its digits. In programs written in the Java programming language, octal numbers must be preceded with 0. See also hexadecimal.

 156 views

129⟩ What is local variable?

A data item known within a block, but inaccessible to code outside the block. For example, any variable defined within a method is a local variable and can't be used outside the method.

 170 views

130⟩ What is linker?

A module that builds an executable, complete program from component machine code modules. The Java linker creates a runnable program from compiled classes. See also compiler, interpreter, runtime system.

 168 views

132⟩ What is Just-in-time (JIT) Compiler?

A compiler that converts all of the bytecode into native machine code just as a Java program is run. This results in run-time speed improvements over code that is interpreted by a Java virtual machine.

 169 views

133⟩ What is keyword?

Java sets aside words as keywords - these words are reserved by the language itself and therefore are not available as names for variables or methods.

 152 views

134⟩ What is Jini Technology?

A set of Java APIs that may be incorporated an optional package for any Java 2 Platform Edition. The Jini APIs enable transparent networking of devices and services and eliminates the need for system or network administration intervention by a user. The Jini technology is currently an optional package available on all Java platform editions.

 184 views

135⟩ What is JavaSpaces?

A technology that provides distributed persistence and data exchange mechanisms for code in Java.

 178 views

136⟩ What is JDK?

Java Development Kit. A software development environment for writing applets and application in Java .

 172 views

137⟩ What is realm?

Also, a string, passed as part of an HTTP request during basic authentication, that defines a protection space. The protected resources on a server can be partitioned into a set of protection spaces, each with its own authentication scheme and/or authorization database.

 190 views

140⟩ What is property?

Characteristics of an object that users can set, such as the color of a window.

 187 views