ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
Do you have a collection of Interview Questions and interested to share with us!!
Please send that collection to along with your userid / name. ThanQ
Google
 
Categories  >>  Software  >>  Core Java  >>  Java J2EE  >>  Java Related
 
 


 

 
 Core Java interview questions  Core Java Interview Questions
 Advanced Java interview questions  Advanced Java Interview Questions
 Swing interview questions  Swing Interview Questions
 EJB interview questions  EJB Interview Questions
 Servlets interview questions  Servlets Interview Questions
 Struts interview questions  Struts Interview Questions
 JDBC interview questions  JDBC Interview Questions
 JMS interview questions  JMS Interview Questions
 SunOne interview questions  SunOne Interview Questions
 J2EE interview questions  J2EE Interview Questions
 Weblogic interview questions  Weblogic Interview Questions
 Websphere interview questions  Websphere Interview Questions
 Java Networking interview questions  Java Networking Interview Questions
 Java J2EE AllOther interview questions  Java J2EE AllOther Interview Questions
Question
Q1.A. Write note on “The class path Environment Variable”?
   B. Which are different kinds of source code?

Q2.A. How to create an interface?
   B. Why convert an applet to an application?

Q3.A. How to use Media tracker Class.
   B. How to use string tokenizer class.

Q4 A. Explain the overview of UDP messaging.
   B. Difference between SQL Exception class and SQL
      Warning class.

Q5. A. How to create com object in Java?
    B. Write short notes on “The properties class”

Q6. A. When object is created and destroyed?
    B. Explain the JDB in depth & command line.
    C. Write short notes on Web Sites.
 Question Submitted By :: Roshan.subba
I also faced this Question!!     Rank Answer Posted By  
 
  Re: Q1.A. Write note on “The class path Environment Variable”? B. Which are different kinds of source code? Q2.A. How to create an interface? B. Why convert an applet to an application? Q3.A. How to use Media tracker Class. B. How to use string tokenizer class. Q4 A. Explain the overview of UDP messaging. B. Difference between SQL Exception class and SQL Warning class. Q5. A. How to create com object in Java? B. Write short notes on “The properties class” Q6. A. When object is created and destroyed? B. Explain the JDB in depth & command line. C. Write short notes on Web Sites.
Answer
# 1
Java classpath
The Java™ virtual machine uses the Java classpath to find 
classes during runtime. Java commands and tools also use 
the classpath to locate classes. The default system 
classpath, the CLASSPATH environment variable, and the 
classpath command parameter all determine what directories 
are searched when looking for a particular class.
In the Java 2 Software Development Kit (J2SDK), Standard 
Edition, the java.ext.dirs property determines the 
classpath for the extensions that are loaded. 
The default bootstrap classpath is system-defined, and you 
should not change it. On your server, the default bootstrap 
classpath specifies where to find the classes that are part 
of the IBM® Developer Kit for Java, the Native Abstract 
Window Toolkit (NAWT), and other system classes.
To find any other classes on the system, you must specify 
the classpath to search by using the CLASSPATH environment 
variable or the classpath parameter. The classpath 
parameter that is used on a tool or command overrides the 
value that is specified in the CLASSPATH environment 
variable.
You can work with the CLASSPATH environment variable using 
the Work with Environment Variable (WRKENVVAR) command. 
From the WRKENVVAR display, you can add or change the 
CLASSPATH environment variable. The Add Environment 
Variable (ADDENVVAR) command and Change Environment 
Variable (CHGENVVAR) command either add or change the 
CLASSPATH environment variable.
The value of the CLASSPATH environment variable is a list 
of path names, separated by colons (:), which are searched 
to find a particular class. A path name is a sequence of 
zero or more directory names. These directory names are 
followed by the name of the directory, the ZIP file, or the 
JAR file that is to be searched in the integrated file 
system. The components of the path name are separated by 
the slash (/) character. Use a period (.) to indicate the 
current working directory.
 
Is This Answer Correct ?    8 Yes 0 No
Harmeet
 
  Re: Q1.A. Write note on “The class path Environment Variable”? B. Which are different kinds of source code? Q2.A. How to create an interface? B. Why convert an applet to an application? Q3.A. How to use Media tracker Class. B. How to use string tokenizer class. Q4 A. Explain the overview of UDP messaging. B. Difference between SQL Exception class and SQL Warning class. Q5. A. How to create com object in Java? B. Write short notes on “The properties class” Q6. A. When object is created and destroyed? B. Explain the JDB in depth & command line. C. Write short notes on Web Sites.
Answer
# 2
Q2(A)
In the Java programming language, an interface is a 
reference type, similar to a class, that can contain only 
constants, method signatures, and nested types. There are 
no method bodies. Interfaces cannot be instantiated—they 
can only be implemented by classes or extended by other 
interfaces. Extension is discussed later in this lesson. 

java comes with the Swing widgets. The only hard part is 
learning the different Layout methods. We have to have a 
LayoutManager in a top-level container -- such as a JFrame. 
The Layout will divide up all the space to present the 
buttons, listboxes, checkboxes and so forth. Really, the 
Sun Swing tutorials are the best route to learning GUI.

Defining an interface is similar to creating a new class: 
public interface OperateCar {

   // constant declarations, if any

   // method signatures
   int turn(Direction direction,   // An enum with values 
RIGHT, LEFT
              double radius, double startSpeed, double 
endSpeed);
   int changeLanes(Direction direction, double startSpeed, 
double endSpeed);
   int signalTurn(Direction direction, boolean signalOn);
   int getRadarFront(double distanceToCar, double 
speedOfCar);
   int getRadarRear(double distanceToCar, double 
speedOfCar);
         ......
   // more method signatures
}
Note that the method signatures have no braces and are 
terminated with a semicolon. 
To use an interface, you write a class that implements the 
interface. When an instantiable class implements an 
interface, it provides a method body for each of the 
methods declared in the interface. For example, 
public class OperateBMW760i implements OperateCar {

   // the OperateCar method signatures, with 
implementation --
   // for example:
   int signalTurn(Direction direction, boolean signalOn) {
      //code to turn BMW's LEFT turn indicator lights on
      //code to turn BMW's LEFT turn indicator lights off
      //code to turn BMW's RIGHT turn indicator lights on
      //code to turn BMW's RIGHT turn indicator lights off
   }

   // other members, as needed -- for example, helper 
classes
   // not visible to clients of the interface

}
In the robotic car example above, it is the automobile 
manufacturers who will implement the interface. Chevrolet's 
implementation will be substantially different from that of 
Toyota, of course, but both manufacturers will adhere to 
the same interface. The guidance manufacturers, who are the 
clients of the interface, will build systems that use GPS 
data on a car's location, digital street maps, and traffic 
data to drive the car. In so doing, the guidance systems 
will invoke the interface methods: turn, change lanes, 
brake, accelerate, and so forth.
 
Is This Answer Correct ?    6 Yes 0 No
Njoy
 
 
 

 
 
 
Other Core Java Interview Questions
 
  Question Asked @ Answers
 
where lives in jvm  3
what is difference between String buffer and String builder? Benchmark2
What is a compilation unit?  2
What are the latest versions in JAVA related areas? Netcraft2
Can you make an instance of an abstract class? Accenture4
what is finalmethod & final variable with example? HP2
In what type of containers, Border layout is a default layout?  3
What is the smallest package in Java API?  4
What are virtual functions?  2
What are command line arguments?  2
What is meant by controls and types?  1
Hi Friends, can u give code to convert ArrayList to HashMap and HashMap to ArrayList.  1
There are 2 classes, 1 LandAnimal and another WaterAnimal. There is another class Animal which wants to have the properties of both LandAnimal and WaterAnimal. How will you design this situation? KPIT3
What are Font and FontMetrics classes?  1
What are order of precedence and associativity, and how are they used?  1
what do you meant by Platform-Independent? Persistent4
Name the methods in mouse listeners ?  3
can you program for reverse string? IBM5
what is difference between abstraction and interface? FIC6
How you can create a radio buttion using Checkbox class?  1
 
For more Core Java Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com