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

1⟩ What is abstract?

A Java keyword used in a class definition to specify that a class is not to be instantiated, but rather inherited by other classes. An abstract class can have abstract methods that are not implemented in the abstract class, but in subclasses.

 148 views

2⟩ What is Abstract Window Toolkit (AWT)?

A collection of graphical user interface (GUI) components that were implemented using native-platform versions of the components. These components provide that subset of functionality which is common to all native platforms. Largely supplanted by the Project Swing component set. See also Swing.

 135 views

4⟩ What is authentication?

The process by which an entity proves to another entity that it is acting on behalf of a specific identity.

 138 views

5⟩ What is implements?

A Java keyword included in the class declaration to specify any interfaces that are implemented by the current class.

 141 views

6⟩ What is instanceof?

A two-argument Java keyword that tests whether the runtime type of its first argument is assignment compatible with its second argument.

 142 views

7⟩ What is atomic?

Refers to an operation that is never interrupted or left in an incomplete state under any circumstance.

 139 views

8⟩ What is access control?

The methods by which interactions with resources are limited to collections of users or programs for the purpose of enforcing integrity, confidentiality, or availability constraints.

 143 views

9⟩ What is ACID?

The acronym for the four properties guaranteed by transactions: atomicity, consistency, isolation, and durability.

 139 views

11⟩ What is Java API?

Application Programming Interface. The specification of how a programmer writing an application accesses the behavior and state of classes and objects.

 160 views

12⟩ What is ASCII?

American Standard Code for Information Interchange. A standard assignment of 7-bit numeric codes to characters. See also Unicode.

 131 views

13⟩ What is applet?

A component that typically executes in a Web browser, but can execute in a variety of other applications or devices that support the applet programming model.

 141 views

14⟩ What is interface?

A Java keyword used to define a collection of method definitions and constant values. It can later be implemented by classes that define this interface with the "implements" keyword.

 149 views

15⟩ What is instance method?

Any method that is invoked with respect to an instance of a class. Also called simply a method. See also class method.

 131 views

16⟩ What is IP?

Internet Protocol. The basic protocol of the Internet. It enables the unreliable delivery of individual packets from one host to another. It makes no guarantees about whether or not the packet will be delivered, how long it will take, or if multiple packets will arrive in the order they were sent. Protocols built on top of this add the notions of connection and reliability. See also TCP/IP.

 122 views

17⟩ What is Java 2 SDK, Standard Edition?

The Software Development Kit (SDK) is development environment for building applications, applets, and components using the Java programming language. This SDK provides a reference implementation of the J2SE platform.

 141 views

18⟩ What is Java Compatibility Kit (JCK)?

A test suite, a set of tools, and other requirements used to certify a Java platform implementation conformant both to the applicable Java platform specifications and to Java Software reference implementations.

 144 views

19⟩ What is Java?

A set of technologies for creating and safely running software programs in both stand-alone and networked environments.

 156 views

20⟩ What is DOM?

Document Object Model. A tree of objects with interfaces for traversing the tree and writing an XML version of it, as defined by the W3C specification.

 145 views