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

101⟩ What is Java Media Framework?

The core framework supports clocks for synchronizing between different media (e.g., audio and video output). The standard extension framework allows users to do full audio and video streaming.

 156 views

102⟩ What is interpreter?

A module that alternately decodes and executes every statement in some body of code. The Java interpreter decodes and executes bytecode for the Java virtual machine1. See also compiler, runtime system.

 151 views

103⟩ What is Internet?

An enormous network consisting of literally millions of hosts from many organizations and countries around the world. It is physically put together from many smaller networks and data travels by a common set of protocols.

 157 views

104⟩ What is int?

A Java keyword used to define a variable of type integer.

 155 views

105⟩ What is import?

A Java keyword used at the beginning of a source file that can specify classes or entire packages to be referred to later without including their package names in the reference.

 143 views

106⟩ What is impersonation?

An act whereby one entity assumes the identity and privileges of another entity without restrictions and without any indication visible to the recipients of the impersonator's calls that delegation has taken place. Impersonation is a case of simple delegation.

 154 views

107⟩ What is instance?

An object of a particular class. In programs written in the Java programming language, an instance of a class is created using the new operator followed by the class name.

 156 views

108⟩ What is instance variable?

Any item of data that is associated with a particular object. Each instance of a class has its own copy of the instance variables defined in the class. Also called a field. See also class variable.

 156 views

109⟩ What is IIOP?

Internet Inter-ORB Protocol. A protocol used for communication between CORBA object request brokers.

 150 views

110⟩ What is method?

A function defined in a class. See also instance method, class method. Unless specified otherwise, a method is not static.

 143 views

111⟩ What is lexical?

Pertaining to how the characters in source code are translated into tokens that the compiler can understand.

 150 views

113⟩ What is native?

A Java keyword that is used in method declarations to specify that the method is not implemented in the same Java source file, but rather in another language.

 154 views

114⟩ What is null?

The null type has one value, the null reference, represented by the literal null, which is formed from ASCII characters. A null literal is always of the null type.

 194 views

115⟩ What is literal?

The basic representation of any integer, floating point, or character value. For example, 3.0 is a double-precision floating point literal, and "a" is a character literal.

 152 views

116⟩ What is GUI?

Graphical User Interface. Refers to the techniques involved in using graphics, along with a keyboard and a mouse, to provide an easy-to-use interface to some program.

 182 views

117⟩ What is hierarchy?

A classification of relationships in which each item except the top one (known as the root) is a specialized form of the item above it. Each item can have one or more items below it in the hierarchy. In the Java class hierarchy, the root is the Object class.

 161 views

118⟩ What is HTTP?

HyperText Transfer Protocol. The Internet protocol, based on TCP/IP, used to fetch hypertext objects from remote hosts. See also TCP/IP.

 152 views

119⟩ What is IDL?

Interface Definition Language. APIs written in the Java programming language that provide standards-based interoperability and connectivity with CORBA (Common Object Request Broker Architecture).

 149 views