Blog Info
Blog Info
Blog Info
Answer: A group of similar things to achieve better performance. A weblogic cluster is usually used to achieve high
availability ( implemented using the fault tolerance mechanish - thru HTTP Session replication)
Everything is different.
1) the architecture
Answer:
Ticketing :
remedy tool
clarify
Monitoring :
Answer:
1) problem description
Answer:
2)How can u start the services of node manager in the control pannel in windows environment ?
Insert Quote
2)How can u start the services of node manager in the control pannel in windows environment ?
Answer: yes
Answer: : the nodemanager has to be put into run control scripts called rc which can be done by system admins
Answer:
Answer:
Answer:
s.xml
<bea-installation>
config.xml
<server>
<listen-address>
<listen-port>
<production-mode-enabled>
etc.
Q>How can we make the domain read-only after logged in ? Please provide path?
---------------------------------------------------
Quote
Unicast - TCP/IP
MULTICAST - UDP
Quote
same as above
Quote
Hi guys yesterday i faced wipro interview if anyone knows the answer reply for this questions
Nice bunch of JMS Questions. How did you manage to get him to JMS. As you can see, i am assuming you have
answered all these questions except couple. Most of these questions were discussed in the classroom. Questions 8
& 9 we will include it in the next classes.
Answer : Jrocket & JDK are both two JVMs provided from different vendors. The first one ( Jrockit) is from bea
systems ( now it is Oracle ) and the 2nd one JDK was from Sun Microsystems ( Again now it is Oracle)
Any of these two can be used to run Weblogic servers. They differ in terms of memory management, garbage
collection and other algorithms implemented inside the JVM.
Hi guys yesterday i faced wipro interview if anyone knows the answer reply for this questions
Hi friends,
As this is my first interview, you can draft the answers for below questions and reply accordingly ...
--2.class loader
--3.there is one hello.class file in lib folder and second one in some other place; which class will be loaded
--6.the weblogic server was down, what would be the reason because the log file was not showing the status
--7.where does weblogic gets the revenue when they provide us the server on open source
--9.what is heap dump? Do you used any tool for retrieving this?
Quote
pgrep
Quote
Double Compartment Bus - can balance load & server more no. of passengers. But the engine can still fail.
Two Engined Train - There will not be any change in the load. But if one engine fails, the train can still run
--7.where does weblogic gets the revenue when they provide us the server on open source
Quote
Weblogic is not opensource. JBoss is . ( JBOSS is from Apache Foundation which is supported by a lot of
commercial companies and lots of developers) There is a good article about how Open Source softwares survive
Q)wipro interview questions?
2,if more then one process running in managed server,how do you know which application running.
3,hard ware load balancer configure same box,or different box,how u configure?
4,what will be eefect if multicast ip is duplicated for different applications in any network?
11, u send the message 4 consumers through topic, have u receave any message from 4 consumers?
17,when starts the server not coming up due to data source fail, what u do?
Java is a high-level programming language originally developed by Sun Microsystems and released in 1995. Java
runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX.
Java runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX/Linux like HP-Unix,
Sun Solaris, Redhat Linux, Ubuntu, CentOS, etc.
Some features include Object Oriented, Platform Independent, Robust, Interpreted, Multi-threaded
Its compiler generates an architecture-neutral object file format, which makes the compiled code to be executable on
many processors, with the presence of Java runtime system.
Java uses Just-In-Time compiler to enable high performance. Just-In-Time compiler is a program that turns Java
bytecode, which is a program that contains instructions that must be interpreted into instructions that can be sent
directly to the processor.
It is designed to adapt to an evolving environment. Java programs can carry extensive amount of run-time information
that can be used to verify and resolve accesses to objects on run-time.
What is Java Virtual Machine and how it is considered in context of Javas platform independent feature?
When Java is compiled, it is not compiled into platform specific machine, rather into platform independent byte code.
This byte code is distributed over the web and interpreted by virtual Machine (JVM) on whichever platform it is being
run.
Object is a runtime entity and its state is stored in fields and behavior is shown via methods. Methods operate on an
object's internal state and serve as the primary mechanism for object-to-object communication.
Define class?
A class is a blue print from which individual objects are created. A class can contain fields and methods to describe
the behavior of an object.
Variables defined inside methods, constructors or blocks are called local variables. The variable will be declared and
initialized within the method and it will be destroyed when the method has completed.
Instance variables are variables within a class but outside any method. These variables are instantiated when the
class is loaded.
These are variables declared with in a class, outside any method, with the static keyword.
Singleton class control object creation, limiting the number to one but allowing the flexibility to create more objects if
the situation changes.
Constructor gets invoked when a new object is created. Every class has a constructor. If we do not explicitly write a
constructor for a class the java compiler builds a default constructor for that class.
Default value of float and double datatype in different as compared to C/C++. For float its 0.0f and for double its 0.0d
This data type is used to save space in large arrays, mainly in place of integers, since a byte is four times smaller
than an int.
Class variables also known as static variables are declared with the static keyword in a class, but outside a method,
constructor or a block.
Java provides access modifiers to set access levels for classes, variables, methods and constructors. A member has
package or default accessibility when no accessibility modifier is specified.
Variables, methods and constructors which are declared protected in a superclass can be accessed only by the
subclasses in other package or any class within the package of the protected members' class.
What do you mean by synchronized Non Access Modifier?
Java provides these modifiers for providing functionalities other than Access Modifiers, synchronized used to indicate
that a method can be accessed by only one thread at a time.
According to Java Operator precedence, which operator is considered to be with highest precedence?
Variables used in a switch statement can only be a string, enum, byte, short, int, or char.
This method is used to get the primitive data type of a certain String.
The String class is immutable, so that once it is created a String object cannot be changed. Since String is immutable
it can safely be shared between many threads ,which is considered very important for multithreaded programming.
The String class is considered as immutable, so that once it is created a String object cannot be changed. If there is a
necessity to make alot of modifications to Strings of characters then StringBuffer should be used.
Use StringBuilder whenever possible because it is faster than StringBuffer. But, if thread safety is necessary then use
StringBuffer objects.
java.util.regex consists of three classes Pattern class, Matcher class and PatternSyntaxException class.
It is possible to define a method that will be called just before an object's final destruction by the garbage collector.
This method is called finalize( ), and it can be used to ensure that an object terminates cleanly.
What is an Exception?
An exception is a problem that arises during the execution of a program. Exceptions are caught by handlers
positioned along the thread's method invocation stack.
It is an exception that is typically a user error or a problem that cannot be foreseen by the programmer. For example,
if a file is to be opened, but the file cannot be found, an exception occurs. These exceptions cannot simply be ignored
at the time of compilation.
The Exception class has two main subclasses : IOException class and RuntimeException Class.
If a method does not handle a checked exception, the method must declare it using the throwskeyword. The throws
keyword appears at the end of a method's signature.
An exception can be thrown, either a newly instantiated one or an exception that you just caught, by using throw
keyword.
The finally keyword is used to create a block of code that follows a try block. A finally block of code always executes,
whether or not an exception has occurred.
What things should be kept in mind while creating your own exceptions in Java?
If you want to write a checked exception that is automatically enforced by the Handle or Declare Rule, you need to
extend the Exception class.
You want to write a runtime exception, you need to extend the RuntimeException class.
Define Inheritance?
It is the process where one object acquires the properties of another. With the use of inheritance the information is
made manageable in a hierarchical order.
If the method overrides one of its superclass's methods, overridden method can be invoked through the use of the
keyword super. It can be also used to refer to a hidden field.
What is Polymorphism?
Polymorphism is the ability of an object to take on many forms. The most common use of polymorphism in OOP
occurs when a parent class reference is used to refer to a child class object.
What is Abstraction?
It refers to the ability to make a class abstract in OOP. It helps to reduce the complexity and also improves the
maintainability of the system.
These classes cannot be instantiated and are either partially implemented or not at all implemented. This class
contains one or more abstract methods which are simply method declarations without a body.
When Abstract methods are used?
If you want a class to contain a particular method but you want the actual implementation of that method to be
determined by child classes, you can declare the method in the parent class as abstract.
What is Encapsulation?
It is the technique of making the fields in a class private and providing access to the fields via public methods. If a
field is declared private, it cannot be accessed by anyone outside the class, thereby hiding the fields within the class.
Therefore encapsulation is also referred to as data hiding.
The main benefit of encapsulation is the ability to modify our implemented code without breaking the code of others
who use our code. With this Encapsulation gives maintainability, flexibility and extensibility to our code.
What is an Interface?
An interface is a collection of abstract methods. A class implements an interface, thereby inheriting the abstract
methods of the interface.
It includes
A Package can be defined as a grouping of related types(classes, interfaces, enumerations and annotations )
providing access protection and name space management.
Packages are used in Java in-order to prevent naming conflicts, to control access, to make searching/locating and
usage of classes, interfaces, enumerations and annotations, etc., easier.
A multithreaded program contains two or more parts that can run concurrently. Each part of such a program is called
a thread, and each thread defines a separate path of execution.
Thread can be created by: implementing Runnable interface, extending the Thread class.
What is an applet?
An applet is a Java program that runs in a Web browser. An applet can be a fully functional Java application because
it has the entire Java API at its disposal.
An applet extend which class?
It uses garbage collection to free the memory. By cleaning those objects that is no longer reference by any of the
program.
It is used with variables or methods and used to call constructer of same class.
It is a collection of element which cannot contain duplicate elements. The Set interface contains only methods
inherited from Collection and adds the restriction that duplicate elements are prohibited.
Explain TreeSet?
It is used to sort collections and arrays of objects using the collections.sort() and java.utils. The objects of the class
implementing the Comparable interface can be ordered.
It includes:
Without throws, Checked exception cannot be handled where as checked exception can be propagated with throws
JAR files is Java Archive fles and it aggregates many files into one. It holds Java classes in a library. JAR files are
built on ZIP file format and have .jar file extension.
This is Web Archive File and used to store XML, java classes, and JavaServer pages. which is used to distribute a
collection of JavaServer Pages, Java Servlets, Java classes, XML files, static Web pages etc.
What is the difference between object oriented programming language and object based programming language?
Object based programming languages follow all the features of OOPs except Inheritance. JavaScript is an example of
object based programming languages.
The java compiler creates a default constructor only if there is no constructor in the class.
It is used to initialize the static data member, It is excuted before main method at the time of classloading.
Define composition?
Holding the reference of the other class within some other class is known as composition.
If a class has multiple functions by same name but different parameters, it is known as Method Overloading.
If a subclass provides a specific implementation of a method that is already provided by its parent class, it is known
as Method Overriding.
Method overloading increases the readability of the program. Method overriding provides the specific implementation
of the method that is already provided by its super class parameter must be different in case of overloading,
parameter must be same in case of overriding.
What is NullPointerException?
A NullPointerException is thrown when calling the instance method of a null object, accessing or modifying the field of
a null object etc.
What are the ways in which a thread can enter the waiting state?
A thread can enter the waiting state by invoking its sleep() method, by blocking on IO, by unsuccessfully attempting to
acquire an object's lock, or by invoking an object's wait() method. It can also enter the waiting state by invoking its
(deprecated) suspend() method.
The operating system's task scheduler allocates execution time to multiple tasks. By quickly switching between
executing tasks, it creates the impression that tasks execute sequentially.
After a thread is started, via its start() method of the Thread class, the JVM invokes the thread's run() method when
the thread is initially executed.
Does it matter in what order catch statements for FileNotFoundException and IOException are written?
Yes, it does. The FileNoFoundException is inherited from the IOException. Exception's subclasses have to be caught
first.
When a task invokes its yield() method, it returns to the ready state. When a task invokes its sleep() method, it
returns to the waiting state.
The Vector class provides the capability to implement a growable array of objects. Vector proves to be very useful if
you don't know the size of the array in advance, or you just need one that can change sizes over the lifetime of a
program.
How many bits are used to represent Unicode, ASCII, UTF-16, and UTF-8 characters?
Unicode requires 16 bits and ASCII require 7 bits. Although the ASCII character set uses only 7 bits, it is usually
represented as 8 bits. UTF-8 represents characters using 8, 16, and 18 bit patterns. UTF-16 uses 16-bit and larger bit
patterns.
These are classes that allow primitive types to be accessed as objects. Example: Integer, Character, Double,
Boolean etc.