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

141⟩ What is peer?

In networking, any functional unit in the same layer as another entity.

 153 views

142⟩ What is public?

A Java keyword used in a method or variable declaration. It signifies that the method or variable can be accessed by elements residing in other classes.

 168 views

143⟩ What is pixel?

The picture element on a display area, such as a monitor screen or printed page. Each pixel is individually accessible.

 144 views

145⟩ What is privilege?

A security attribute that does not have the property of uniqueness and which may be shared by many principals. An example of a privilege is a group.

 153 views

148⟩ What is optional packages?

The set or sets of APIs in a Java platform edition which are available with and may be supported in a compatible implementation. Over time, optional packages may become required in an edition as the marketplace requires them.

 155 views

150⟩ What is persistence?

The protocol for transferring the state of a bean between its instance variables and an underlying database.

 155 views

151⟩ What is POA?

Portable Object Adapter. A CORBA standard for building server-side applications that are portable across heterogeneous ORBs.

 158 views

152⟩ What is overloading?

Using one identifier to refer to multiple items in the same scope. In the Java programming language, you can overload methods but not variables or operators.

 165 views

153⟩ What is protected?

A Java keyword used in a method or variable declaration. It signifies that the method or variable can only be accessed by elements residing in its class, subclasses, or classes in the same package.

 160 views

154⟩ What is private?

A Java keyword used in a method or variable declaration. It signifies that the method or variable can only be accessed by other elements of its class.

 207 views

156⟩ What is profiles?

A profile is a collection of Java APIs that complements one or more Java 2 Platform Editions by adding domain-specific capabilities. Profiles may also include other defined profiles. A profile implementation requires a Java 2 Platform Edition to create a complete development and deployment environment in a targeted vertical market. Each profile is subject to an associated set of compatibility requirements. Profiles may be usable on one or more editions.

 159 views

158⟩ What is primitive type?

A variable data type in which the variable's value is of the appropriate size and format for its type: a number, a character, or a boolean value.

 149 views

159⟩ What is security technology domain?

A scope over which the same security mechanism is used to enforce a security policy. Multiple security policy domains can exist within a single technology domain.

 155 views