Q.1. Explain the following with examples : (20)
(a) Control statements in in JAVA.
(b) Multithreading in JAVA.
Ans. (a) Control statements in JAVA : Java programs is a set of statements that either executes sequentially or in the order in which they appear. There may arise situations in which a program breaks the normal sequential flow and jumps to another part of the code. This condition is called branching. Branching can either be conditional or unconditional. Conditional branching occurs on a particular situation or a statement in the program code while unconditional branching occurs without any particular decision. Java deals with different control and iterative statements listed below. The control statements are :
(i) if-else loop
(ii) switch statement
(iii) while loop
(iv) do-while loop
(v) for loop
(i) if-else loop : It is a powerful decision making statement that is used to control the flow of execution of statements. The syntax for if loop is :
if (expression)
(ii) Switch Statement : Switch is an another decision-making statement that can be used as an alternative to if statement. It is a special multi-way decision maker that checks whether an expression matches one of the given values. The syntax is:
switch (expression )
{
case value 1:
statement 11;
statement 12;
break;
case value 2:
statement 21;
statement 22;
break;
.
.
.
case value n :
statement n;
break;
default:
statement;
}
(ii) While loop : While loop is used when we are not sure if a loop will execute or not. If the condition is true, then loop will continue until the condition satisfies.
Its syntax is:
while (expression)
{
//Block of statements;
}
(iv) do-while loop : do-while loop is a repetitive loop supported by Java. It's an exit condition loop i.e. the set of statement will execute first, and then at the exit time the condition will be checked for repetition. If the condition return true then the loop will re-execute the statements otherwise it will terminate.
Its syntax is:
do
{
Block of statements
.............
} while (expression)
(v) for loop : for loop is the simplest loop in Java. It contains three expressions :
- initial expression : used to initialize the counter of the loop
- termination expression : used to give a termination condition on the loop
- steps expression : used to either increase or decrease the value of the counter
All above three expressions are optional, according to need of the logic, we will add in for loop.
The syntax for loop is :
for (initial expression; termination expression; steps expression)
{
Body of the loop;
}
(b) Multithreading in JAVA : A thread is a stream of code execution. This means that a single program can perform more than one task at the same time. Thread-based multitasking deals with the application program. A thread can be loosely defined as a separate stream of execution that takes place simultaneously. Every thread has a name for identification.
Initially, when a Java program starts, it has only one thread, i.e. main thread. Threads can be created in two ways : one method is to create a class as the subclass of thread class. The example related to the first method is explained :
class New_Thread extends Thread
{
New_Thread()
{
start();
}
Public void exec ()
{
\\ Block of code
}
}
We can create and start a thread of this type as :
New_Thread th1 = new New_Thread();
Another method to create a thread is to declare a class that implements a Runnable interface. The example related to this method explained below:
class New_Thread implements Runnables
{
Thread th1;
New_Thread()
{
th1 = new Thread (this, "Second"); //this is used to pass class reference
thread start();
}
public void exec()
{
//Block of code
}
}
This code would then create a thread and start it as :
New_Thread th1 = new New_Thread ();
States of a Thread : A thread is a small part of the process dedicated to perform certain job. The process has its own lifecycle, & at any instant of time a process will be in any of the state. Similarly, a thread will also have a life cycle & will be in any of the following state at any instant of time :
(i) New Thread
(ii) Runnable
(iii) Blocked
(iv) Waiting
(v) Terminated
The figure shows five states of the thread.
figure States of a Thread
- New State : When a thread object is created, a thread is born. This state is called New state. At this stage, the new thread can start & move to Runnable state or this new thread can be killed immediately. Then it is called Dead thread.
- Runnable : It means that the thread is ready for execution and is waiting for the availability of the processor for execution.
- Blocked : A thread is in a blocked state when it is not allowed to enter the Runnable state. This can happen when a thread is either suspended or sleeping. At this stage, the thread is not considered dead.
- Waiting : This is the state when a thread is waiting for the processor either to its newborn state or due to to the round-robin scheduling of the processor.
- Terminated : A thread is considered terminated when it has been killed.
Q.2. How servers are implemented ? Give suitable example of advanced socket programming. (20)
Ans. To implement networking in Java, java.net package classes, these give access to IP address, & a range of methods related to TCP, UDP, & URL, I/O stream classes are also used to read and write data from and to communication channel.
The virtual-stream supports IO stream to transport data from & to either of the connection. There are two important classes, participates in communication. InetAddress class using to provides IP address of target connection. Socket class using to creates TCP connection. Once a connection has been created, we bind the both end socket with their streams, and communication will start by writing & reading data on these streams to and from remote application.
Before looking at how to implement to server, let's have a look on the classes of java.net that are used to implement a server, are given below :
(i) Class InetAddress : Computer on internet is identified by IP address, that is currently in two version with different size, in IPv4 it is 32-bit long and in IPv6 it is 128-bit long. InetAddress provides an abstraction to access IP address.
fig here
There is no constructor of this class. The class provides some static methods to create the instance of the class i.e. an object.
(ii) Class Server Socket : The ServerSocket class provides the facility by which a server accepts a connections requested from clients across the network. The class creates a Socket for individual client connection. After socket creation, an InputStream and an OutputStream will be created for communicating with client.
Fig. ServerScocket
The fundamental mechanism for implementing a server is to open a ServerSocket with a specific and certain local port number. The ServerSocket will start to wait for connection. As client generates the request to connect to this port, the connection will be established.
ServerSocket is constructed by choosing a port on the local machine. This port number should be in the range 1-65536; however, ports 1-1023 are reserved for system services and can be used only by the machine administrator.
A server accepts the explicitly connection request from a ServerSocket to obtain a client's Socket connection. As the ServerSocket is created, operating system started to accept the connections from clients, & insert in a queue, & delete one-by-one as the server call the accept() method.
ServerSocket(int portNumber) throws IOException creates a ServerSocket that listen on the specified port portNumber and countValue specified the number of outstanding connection requests.
ServerSocket ssckt = new ServerSocket(1889,40);
(iii) Class Socket : A Socket represents a TCP connection with a machine on network. This class facilitate in establishing the stream-based channel with a remote machine.
For TCP/IP communication, there is a need to create a Socket with the remote machine. The class Socket class creates a socket & automatically established a TCP connection, & throws an exception if it fails. Socket address is the combination of two components : one is host id, which can be referring with the host name. IP address, and the port number. The port no. is an integer value lie between 1 & 65536. In fact, on every host there are 65536 different addresses. But there must be a server, and dynamically listening on the specified port.
Fig. Socket
There are two constructor of the Socket class. Creating a Socket object automatically connects to the given host and port.
Socket(String hostName, int portNumber) throws IOException creates a Socket object and connects to the given host on the given port number.
Socket sckt = new Scoket("mymac", 1889);
Socket(InetAddress hostAddress, int portNumber) throws IOException creates a Socket Object and connects to the given host address on the given port number.
InetAddress mac = InetAddress.getByName("127.0.0.1");
Socket sckt = new Socket(mac.getAddress, 1889);
Socket sckt = new Scoket ( mac.getAddress, 1889);
OR Socket sckt = new Socket " 127.0.0.1",1889);
Example of advantage socket programming
// Create a socket without a timeout
try {
InetAddress addr = InetAddress.getByName("java.sun.com");
int port = 80;
// This constructor will block until the connection succeeds
Socket socket = new Socket( addr, port);
}catch ( UnknownHostException e ) {
} catch ( IOException e ) {
}
// Create a socket with a timeout
try {
InetAddress addr = InetAddress.getByName("java.sun.com");
int port = 80 ;
SocketAddress sockaddr = new InetSocketAddress (addr, port);
// Create an unbound socket
Socket sock = new Socket ();
// This method will block no more than timeoutMs.
// If the timeout occurs, SocketTimeoutException thrown.
int timeoutMs = 2000 ; //2 seconds
sock.connect (sockaddr, timeoutMs);
} catch ( UnknownHostException e) {
} catch ( SocketTimeoutException e) {
} catch ( IOException e) {
}
Q.3. Explain the following :
(a) Design of JDBC
(b) LDAP. (20)
Ans. (a) Design of JDBC : JDBC is a set of Java API for executing SQL statements. It's a collection of classes and interfaces : those facilitate to easy of the database & perform operations on the database. Just by using few methods calls, we can easily interact with database. The program design a good GUI interface then with knowing back processing of the database, without writing complex SQL statement, communication with database will become effortless.
Types of JDBC Drivers : There are various vendors of DBMS. Each vendor provides own API's (vendor specific APIs) to interact with Database. It's a big problem to the developer to handle all these. It has removed the need to access native APIs of specific vendor; it's the responsibility of the intermediate layer to make the native calls.
Figure Types of JDBC drivers
1. JDBC-ODBC Bridge-Type 1 : The type 1 driver provides a bridge between the JDBC API and the ODBC API. The bridge is responsible to convert the JDBC calls to the corresponding ODBC calls and finally request to data source using ODBC libraries, that must be required on client tier.
Fig Type 1 driver
J2SE contains the classes for the JDBC-ODBC bridge & so that there is no need to install any other packages. Though, you have to create Data Source Name (DNS) using ODBC manager.
2. Native-API Partly Java Driver-Type 2 : Type 2 driver works on a combination of vendor-specific and Java implemented APIs to communicate with data source. Here, the client makes the JDBC calls & these calls are interpreted into vendor-specific APIs, finally from vendor-specific APIs to database to perform the operation on it. Database process the request & send the results back through the vendor-specific API, which will be forwarded back to the JDBC driver. Now, here JDBC driver will convert the response to the JDBC standards and send to Java application. The driver can be used where there is the need of, high-performance and large transaction volume.
Type 2 driver fig.
3. JDBC-Net Pure Java Driver-Type 3 : The type 3 driver works as middleware server between a numbers of Java clients to multiple vendor databases. Type 2 is a multitier and vendor-neutral driver. To connect with database server, client (Java client application) uses a server component in-between the client and database, that works as a gateway for multiple database servers. The client application sends the request to intermediate data access server, by making the JDBC call through a JDBC driver. The intermediate data access server completes the request to the Database using native driver.
Type 3 driver....fig.
4. Native-protocol Pure Java Driver-Type 4 :- Type 4 drivers converts JDBC API request directly to networking protocols of vendor-specific. By making the socket connections with databse they communicate with database. There is no need of other libraries or any middleware interface to deploy it.
Type 4 driver fig.
b) LDAP : The lightweight Directory Access Protocol(LDAP) was developed in the early 1990s as a standard directory protocol. LDAP is now probably the most popular directory protocol & because JNDI can access LADP.
"LDAP defines the mechanism by which clients should be able access data on the server. It does not however, gives details how the data should be stored on the server."
LADP uses the hierarchical tree structure to organize the data, called a Directory Information Tree(DIT). In DIT each leaf is an entry, and the first entry is called root entry.
An entry contains a Distinguished(DN) & attributes-value pairs related to it. The DN is a comprises the information how it is related to rest of the DIT, same as the Pathname shows how the file is related to rest of file system.
The path to a file on a system root to file. A DN reads right to left for example: uid=sujjain, oi=people, o=theweb.com The leftmost part of a DN is called a Relative Distinguished Name(RDN) his example would be uid=scarter.
LADP attributes often use mnemonics as their names.
LADP servers have other following benefits:
- They support references pointers to other LDAP directories where data is stored. So that just by one client request a single LDAP server could search milliones of entries.
- Reliability & speed is improved by replication of LDAP data.
- LDAP also has a exceptionally strong security model that contains.
- ACLs to protect data inside the server.
- Secure Socket Layers(SSL).
- Trasport Layer Security(TSL).
- Simple Authentication & Security Layer (SASL) protocols.
- Access Control
- White Pages Services
- Distributed Computing Directory.
- Connect to the LDAP server
- Bind to the LDAP server
- Search the server
- Add a new entry
- Modify an entry
- Delete an entry
- Disconnect from the LDAP server.
Q.4. What is the concept of :
a) Remote method invocation.
b) Explain Java IDL.
Ans. (a) Remote Method Invocation : Remote method invocation (RMI) frameworks provides a mechanism by which a Java object running in one JVM and call method of another Java object running in another JVM. It provides object-to-object communication regardless of their location. This allows an application to access and make the call to object method located remotely.
In RMI jargon, the client object makes a remote call to the remote object located at server machine, called server object. The computer running the application or a process that calls the remote method is called client, and the computer running the object that processes the call request from client, is called server. If the server generates a remote call to an object resides on another machine JVM then the server becomes the client and the remote computer will become server.
If we want two Java applications executing within different virtual machines to communicate with each other there are a couple of other Java-based approaches that can be taken besides RMI :
- Sockets
- Java Message Service(JMS)
RMI is different with JMS in such a way that the object stays local at one JVM, but in JMSthe object (message) pass through across the network from one JVM to another JVM.
REMOTE METHOD INVOCATION FIG...
Architecture of RMI : Transparency is the one of the most important aspect of RMI designn. A method invocation on a remote has the same syntax as method invocation on a local object. The RMI architecture supports to create a distributed application, in which one object call the method of remote object.
Specifically, in RMI, the definition of a remote service is coded using a java interface. The implementation of the remote service is coded in a class. Therefore, the key to understanding RMI is to remember that interfces define behaviour and classes define implementation.
RMI system fig.
The RMI architecture is high-level of abstraction. It is constructed using three layer architecture. The layered architecture gives a transparency for application architecture, mean implementation gives flexibility.
The RMI is constructed using the following three abstract layers :
- The Stub-Skeleton Layer : The responsibility of this layer is to intercept and redirect the client request for method calls to remote object.
- The remote Reference Layer : It inter-prates and manages between references, those are made by client to the remote object.
- Transport Layer : It provides the connectivity to machines.
Ans. (b) Java IDL : Java IDL (java Interface Definition Language) is a technology design for distributed objects; those are communicating with each other and running on different platform across the network. It is similar to RMI but with one advantage that interaction among the object written in any programming language like C, C++ etc. including Java.
IDL-Java Bridge Data Type Mapping : When data moves between IDL and a Java object, IDL automatically converts variable data types.
The java IDL, development Process are as know :
Q.5. What are the progress indications? Explain. Wap implementing trees in JAVA. (20)
Ans. Progress indicators or progress bars are the new controls that gives the users some indications of the progress of an operation. They were originally developed to cheek the progress of installation processes but are now frequently used for all time-consuming operations. When we call JProgressBar, we can set the maximum and minimum value for the progress bar. The inheritance diagram for JProgressBar class is as follow :
Fig : Inheritance diagram for J Progress Bar
Table : Fields of JProgressBar class
Table : Constructors of JProgressBar class
Wap to implement trees in Java :
import Java.awt.*;
import Javax.swing.*;
import Javax.swing.tree.*;
import Java.awt.event.*;
public class SimpleTree extends JFrame {
public static void main(string[] args) {
new simple tree();
public SimpleTree() {
super("Creating a Simple JTree") ;
WindowUtilities.setNativeLookAndFeel() ;
addWindowListener(new ExitListener()) ;
Container content = getContentPane() ;
Object[] hierarchy = {"1. CHAPTER 1",
new Object[] { "1.1 INTRODUCTION TO JAVA",
"1.1.1 History of JAVA",
"1.1.2 JAVA and Internet",
"1.1.3 JAVA Virtual Machine",
"1.1.4 JAVA's Magic : The Byte Code",
"1.1.5 Features of JAVA',
"1.1.6 JAVA Environment"},
new Object[]{ "1.2 DATA TYPES & OPERATORS"},
new Object[] { "1.3 ARRAYS",
"1.3.1 Declaration of Array Variables",
"1.3.2 Array Construction",
"1.3.3 Initialization of Array",
"1.3.4 Array Access",
"1.3.5 Arrays of Characters"},
new Object[] { "1.4 CONTROL STATEMENTS"},
new Object[] { "1.5 A SAMPLE PROGRAM IN JAVA"},
new Object[] { "1.6 CLASSES & METHODS",
"1.6.1 Constructor",
"1.6.2 Garbage Collection"},
new Object[] {"1.7 INHERITANCE",
"1.7.1 Single Inheritance",
"1.7.2 Multiple Inheritance",
"1.7.3 Multilevel Inheritance",
"1.7.4 Hybrid Inheritance",
new Object[] {"1.8 INTERFACE"},
new Object[] {"1.9 PACKAGES"},
new Object[] {"1.10 EXCEPTION HANDLING",
"1.10.1 try and catch with multiple catch clause,"
"1.10.2 throw and throws",
"1.10.3 finally"},
new Object[] {"1.11 MULTITHREADING",
"1.11.1 States of Thread"},
new Object[] {"1.12 COLLECTIONS"},
new Object[] {"1.13 I/O STREAMS",
"1.13.1 Working with InputStream and OutputStream",
"1.13.2 Working with Reader and Writer"},
new Object[] {"1.14 AWT"},
new Object[] {1.15 APPLET PROGRAMMING",
DefaultMutableTreeNode root = processHierarchy(hierarchy) ;
JTree tree = new JTree(root) ;
content.add(new JScrollPane(tree), BorderLayout.CENTER ;
setSize(275, 300) ;
setVisible(true) ;
}
private DefaultMutableTreeNode processHierarchy (object[] hierarchy) {
DefaultMutableTreeNode node = new
DefaultMutableTreeNode(hierarchy[0]) ;
DefaultMutableTreeNode child;
for(int i=1; i<hierarchy,length; i++) {
object nodeSpecifier = hierarchy[i] ;
if (nodSpecifier instanceofobject[]) // Ie node with children
child = processHierarchy((object[]) nodeSpecifier) ;
else
child = new DefaultMutableTreeNode(nodeSpecifier) ; // le Leaf
node.add(child) ;
}
return(node) ;
}}
import Javax.swing.*;
import Java.awt.;
public class WindowUtilities {
public static void setNativeLookAndFeel() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()) ;
} catch(Exception e) {
System.out.println(" Error setting native LAF : " +e) ;
} }
public static void setJavaLookAndFeel() {
try {
UIManager.setLookAndFeel(UIManager.getCross PlatformLookAndFeelClassName());
} catch(Exception e) {
system.out.println("Error setting Java LAF : "+e) ;
} }
public static void setMotifLookAndFeel() {
try {
UIManager.setLookAndFeel("com.sun.java.swing.plaf.motif.MotifLookAndFeel") ;
} catch(Exception e) {
System.out.println("Error setting MotifLAF : "+e ) ;
}
}
public static JFrame openInJFrame(Container content, int Width, int height, String title, Color bgColor) {
JFrame frame = new JFrame(title) ;
frame.setBackground(bgColor) ;
content.setBackground(bgColor);
frame.setSize(width, height);
frame.setContentPane(content) ;
frame.addWindowListener(new ExitListener() ) ;
frame.setVisible(true) ;
return(frame) ;
}
public static JFrame openInJFrame(Container content, int width, int height, String title ;
{
return (openInJFrame( content, width, height, title, color.white ) ) ;
}
public static JFrame openInJFrame(Container content, int width, int height) {
return(openInJFrame(content, width, height, content.getClass().getName(), Color.white)) ;
}
}
import Java.awt.* ;
import Java.awt.event.* ;
public class ExitListner extends WindoAdapter {
public void windowClosing(WindowEvent event) {
System.exit(0) ;
}
}
The output interface would look like :
Figure here---------
Q.6.Explain the following :
(a) Transparency and compositions (20)
(b) Clipboard
Ans: (a) Transparency :- Java 2D allows you to give transparency value to drawing operations, so that the graphic to be drawn, partially shows that underlying images. AlphaComposite object has to create by Alphacomposite.getInstance to provide and set the transparency. The object of AlphaComposite will be passed to setComposite method of Graphics2D object. There are 8 built-in mixing rules, but the one normally used for drawing with transparency settings is AlphaComposite. SRC_OVER. Alpha values range from 0.0F (completely transparent) to 1.0F (completely opaque).
Example :
import Java.awt.AlphaComposite ;
import Java.awt.Color ;
import Java.awt.Graphics ;
import java.awt.Graphics2D ;
import Java.swing.JFrame ;
import Java.swing.JPanel ;
public class TransparentRectangles extends Jpanel {
public void paint(Graphics g) {
super.paint(g) ;
Graphics2D g2d = (Graphics2D) g ;
g2d.setColor(Color.BLUE) ;
for (int i = 1; i<= 10; i++) {
g2d.setComposite(AlphaComposite.getInstance ( AlphaComposite.SRC_OVER, i*0. If)) ;
g2d.fillRect (50*i, 20, 40, 40) ;
}
}
public static void main (String[] args) {
JFrame frame = new JFrame ("Transparent Rectangles") ;
frame.add(new TransparentRectangles() ) ;
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE) ;
frame.setSize(590, 120) ;
frame.setLocationRelativeTo(null) ;
frame.setVisible(true) ;
}
}
Ans. (b) Clipboard : In Java, there are actually two kinds of Clipboard-system and local. The system clipboard corresponds to the usual idea of sharing data between otherwise independent applications running on the same computer. Local Clipboards are visible only with a single Java application. They are created by simply passing a name of the Clipboard constructor. A clipboard acts as a temporary staging area where application users store cut or copied information, including text, graphics, objects, and other data types. It is a heavily exploited data sharing facility. Therefore, when developing new applications, it makes sense to expend extra effort to support the clipboard, Netlecting clipboard functionallity can resulting in an application that gets complaints, requires new development, or-worst of all-never gets used.
Q.7. What are bean ? Explain the naming pattern for bean components with suitable example.
Ans. Java Bean is a softwear component written in Java, provides portability, platform-independent component model, and re-usability. You can add these components into applets, applications, or with other bean components.
By nature, beans are dynamic like other software components; these can be changed or customized.
The JavaBeans architecture was built through a collaborative industry effort and enables developers to write reusable components in the Java programming language.
With the Java Beans API you can create re useable, platform-independent components.
There are three types of benas:
- Properties define the characteristics of the bean. It can be change at design time or run time if it is not read only and some mutator methods are given in its implementation.
- Events to momunicate with other beans.
- Methods can be called from other beans or from the environment or application in that it is added.
Advantages of beans : There are following advantages of Java Bean components:
Characteristics of bean :
import Java.awt.Graphics;
import Java.beans.PropertyChangeListener;
import Java.beans.PropertyChangeSupport;
import Java.io.Serializable;
import Javax.swing.JComponent;
public class MyFirstBean extends JComponent implements Serializable
{
priavate String caption;
private final PropertyChangeSupport ob = new
PropertyChangeSupport( this );
public String getCaption()
{ return this.caption; }
public void setCaption ( String caption )
{
String oldcaption = this.caption;
this.caption = caption;
this.ob.firstPropertyChange( "caption", oldcaption, caption );
}
public void addPropertyChangeListener ( PropertyChngeListener listener )
{
this.ob.addPropertyChangeListener (listener);
}
public void removePropertyChangeListener ( PropertyChangeListener listener )
{
this.ob.removePropertyChangeListner (listnere);
}
protected void paintComponent ( Graphics g )
{
g.setColor ( getForeground() );
int height = g.getFontMetrics ().getHeight ();
paintString ( g, this.caption, height );
}
private void paintString ( Graphics g, String str, int height )
{ ( str != null )
g.drawString ( str, 0, height )
}
}
Q.8. Does Java has security constraints ? Explain byte code verification and code signing. (20)
Ans. Yes, Java has security constraints.
Byte code verification : When a class loader presents the bytecodes of a newly loaded Java platform class to the virtual machine, the bytecodes are first inspected by a verifier. All classes except system classes are verified. We can deactivate verification with the undocumented-noverify option. For exaple:
java -noverify NewProgram
The bytecode verifier traverses the bytecodes, constructs the type state information, and verifies the types of the parameters to all the bytecode instructions. The figure shows the flow of data and control from the source code to the class loader and bytecode verifier and finally on to the Java virtual machine, which contains the interpreter and runtime system. The bytecode verifier acts gatekeeper as it ensures that code passed to the Java interpreter is in a good state to be executed and can run without the fear of breaking the Java interpreter. Imported code is not allowed to execute by any means until after it has passed the verifier's tests.
Once the verifier is done, a number of important properties are known. Knowing these properties makes the Java interpreter much faster, because it doesn't have to check anything. There are no operand type checks and no stack overflow checks. The interpreter can thus function at full without compromising reliability. The properties are :
> There are no operand stack overflows or underflows.
> The type of the parameters of all bytecode instructions are known to always be correct. Object field accesses are known to be legal -- private, public or protected.
Flow of data and control.......fig.-----
The verifier permits only some bytecode sequences in valid programs and the verifier ensures that any given instruction operates on a fixed stack location that allows the JIT compiler to transform stack accesses into fixed register accesses. Due to this, the JVM does not imply a speed penalty for emulation on register-based architectures when using a JIT compiler. In the face of the code-verified JVM archetecture, it makes no difference to a JIT compiler whether it gets named imaginary registers or imaginary stack positions that need to be allocated to the target architecture's registers. Code verification makes the JVM different from a classic stack architecture whose efficient emulation with a JIT compiler is more complicated and is carried out by a slow interpreter.
The following verification checks are performed by the bytecode verifier. It verifies that
Code signing : One of the most important uses of authentication technology is signing executable programs. If a program is downloaded, then we are concerned about damage that a program can do. For example, the program could have been infected by a virus. If we know where the code comes from and that it has not been tempered then we can be comfortable in using the program. For this, we use authentication to verify where the code came from and then run the code with a security policy that enforces the permissions that you want to grant the program, depending on its origin. The most common use of code signing is to provide security when deploying. Almost every code signing implementation will provides some sort of digital signature mechanism to verify the identity of the author or build system, and a checksum to verify that the object has not been modified. Code signing is done on JAR files.
The Java Archive(JAR) file format enables you to pile multiple files into a single archive file. A JAR file contains the class files and auxiliary resources associated with applets and applications. The general steps involved with code signing process are :
- The remote Reference Layer : It inter-prates and manages between references, those are made by client to the remote object.
- Transport Layer : It provides the connectivity to machines.
Ans. (b) Java IDL : Java IDL (java Interface Definition Language) is a technology design for distributed objects; those are communicating with each other and running on different platform across the network. It is similar to RMI but with one advantage that interaction among the object written in any programming language like C, C++ etc. including Java.
IDL-Java Bridge Data Type Mapping : When data moves between IDL and a Java object, IDL automatically converts variable data types.
The java IDL, development Process are as know :
- Define the remote interface.
- Compile the remote interface.
- Implement the server.
- Implement the client.
- Start the applications.
Q.5. What are the progress indications? Explain. Wap implementing trees in JAVA. (20)
Ans. Progress indicators or progress bars are the new controls that gives the users some indications of the progress of an operation. They were originally developed to cheek the progress of installation processes but are now frequently used for all time-consuming operations. When we call JProgressBar, we can set the maximum and minimum value for the progress bar. The inheritance diagram for JProgressBar class is as follow :
Java.lang.Object
↓
Java.awt.Component
↓
Java.awt.Container
↓
Javax.swing.JComponent
↓
Javax.swing.JProgressBar
|
Table : Fields of JProgressBar class
Table : Constructors of JProgressBar class
Wap to implement trees in Java :
import Java.awt.*;
import Javax.swing.*;
import Javax.swing.tree.*;
import Java.awt.event.*;
public class SimpleTree extends JFrame {
public static void main(string[] args) {
new simple tree();
public SimpleTree() {
super("Creating a Simple JTree") ;
WindowUtilities.setNativeLookAndFeel() ;
addWindowListener(new ExitListener()) ;
Container content = getContentPane() ;
Object[] hierarchy = {"1. CHAPTER 1",
new Object[] { "1.1 INTRODUCTION TO JAVA",
"1.1.1 History of JAVA",
"1.1.2 JAVA and Internet",
"1.1.3 JAVA Virtual Machine",
"1.1.4 JAVA's Magic : The Byte Code",
"1.1.5 Features of JAVA',
"1.1.6 JAVA Environment"},
new Object[]{ "1.2 DATA TYPES & OPERATORS"},
new Object[] { "1.3 ARRAYS",
"1.3.1 Declaration of Array Variables",
"1.3.2 Array Construction",
"1.3.3 Initialization of Array",
"1.3.4 Array Access",
"1.3.5 Arrays of Characters"},
new Object[] { "1.4 CONTROL STATEMENTS"},
new Object[] { "1.5 A SAMPLE PROGRAM IN JAVA"},
new Object[] { "1.6 CLASSES & METHODS",
"1.6.1 Constructor",
"1.6.2 Garbage Collection"},
new Object[] {"1.7 INHERITANCE",
"1.7.1 Single Inheritance",
"1.7.2 Multiple Inheritance",
"1.7.3 Multilevel Inheritance",
"1.7.4 Hybrid Inheritance",
new Object[] {"1.8 INTERFACE"},
new Object[] {"1.9 PACKAGES"},
new Object[] {"1.10 EXCEPTION HANDLING",
"1.10.1 try and catch with multiple catch clause,"
"1.10.2 throw and throws",
"1.10.3 finally"},
new Object[] {"1.11 MULTITHREADING",
"1.11.1 States of Thread"},
new Object[] {"1.12 COLLECTIONS"},
new Object[] {"1.13 I/O STREAMS",
"1.13.1 Working with InputStream and OutputStream",
"1.13.2 Working with Reader and Writer"},
new Object[] {"1.14 AWT"},
new Object[] {1.15 APPLET PROGRAMMING",
DefaultMutableTreeNode root = processHierarchy(hierarchy) ;
JTree tree = new JTree(root) ;
content.add(new JScrollPane(tree), BorderLayout.CENTER ;
setSize(275, 300) ;
setVisible(true) ;
}
private DefaultMutableTreeNode processHierarchy (object[] hierarchy) {
DefaultMutableTreeNode node = new
DefaultMutableTreeNode(hierarchy[0]) ;
DefaultMutableTreeNode child;
for(int i=1; i<hierarchy,length; i++) {
object nodeSpecifier = hierarchy[i] ;
if (nodSpecifier instanceofobject[]) // Ie node with children
child = processHierarchy((object[]) nodeSpecifier) ;
else
child = new DefaultMutableTreeNode(nodeSpecifier) ; // le Leaf
node.add(child) ;
}
return(node) ;
}}
import Javax.swing.*;
import Java.awt.;
public class WindowUtilities {
public static void setNativeLookAndFeel() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()) ;
} catch(Exception e) {
System.out.println(" Error setting native LAF : " +e) ;
} }
public static void setJavaLookAndFeel() {
try {
UIManager.setLookAndFeel(UIManager.getCross PlatformLookAndFeelClassName());
} catch(Exception e) {
system.out.println("Error setting Java LAF : "+e) ;
} }
public static void setMotifLookAndFeel() {
try {
UIManager.setLookAndFeel("com.sun.java.swing.plaf.motif.MotifLookAndFeel") ;
} catch(Exception e) {
System.out.println("Error setting MotifLAF : "+e ) ;
}
}
public static JFrame openInJFrame(Container content, int Width, int height, String title, Color bgColor) {
JFrame frame = new JFrame(title) ;
frame.setBackground(bgColor) ;
content.setBackground(bgColor);
frame.setSize(width, height);
frame.setContentPane(content) ;
frame.addWindowListener(new ExitListener() ) ;
frame.setVisible(true) ;
return(frame) ;
}
public static JFrame openInJFrame(Container content, int width, int height, String title ;
{
return (openInJFrame( content, width, height, title, color.white ) ) ;
}
public static JFrame openInJFrame(Container content, int width, int height) {
return(openInJFrame(content, width, height, content.getClass().getName(), Color.white)) ;
}
}
import Java.awt.* ;
import Java.awt.event.* ;
public class ExitListner extends WindoAdapter {
public void windowClosing(WindowEvent event) {
System.exit(0) ;
}
}
The output interface would look like :
Figure here---------
Q.6.Explain the following :
(a) Transparency and compositions (20)
(b) Clipboard
Ans: (a) Transparency :- Java 2D allows you to give transparency value to drawing operations, so that the graphic to be drawn, partially shows that underlying images. AlphaComposite object has to create by Alphacomposite.getInstance to provide and set the transparency. The object of AlphaComposite will be passed to setComposite method of Graphics2D object. There are 8 built-in mixing rules, but the one normally used for drawing with transparency settings is AlphaComposite. SRC_OVER. Alpha values range from 0.0F (completely transparent) to 1.0F (completely opaque).
Example :
import Java.awt.AlphaComposite ;
import Java.awt.Color ;
import Java.awt.Graphics ;
import java.awt.Graphics2D ;
import Java.swing.JFrame ;
import Java.swing.JPanel ;
public class TransparentRectangles extends Jpanel {
public void paint(Graphics g) {
super.paint(g) ;
Graphics2D g2d = (Graphics2D) g ;
g2d.setColor(Color.BLUE) ;
for (int i = 1; i<= 10; i++) {
g2d.setComposite(AlphaComposite.getInstance ( AlphaComposite.SRC_OVER, i*0. If)) ;
g2d.fillRect (50*i, 20, 40, 40) ;
}
}
public static void main (String[] args) {
JFrame frame = new JFrame ("Transparent Rectangles") ;
frame.add(new TransparentRectangles() ) ;
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE) ;
frame.setSize(590, 120) ;
frame.setLocationRelativeTo(null) ;
frame.setVisible(true) ;
}
}
Q.7. What are bean ? Explain the naming pattern for bean components with suitable example.
Ans. Java Bean is a softwear component written in Java, provides portability, platform-independent component model, and re-usability. You can add these components into applets, applications, or with other bean components.
By nature, beans are dynamic like other software components; these can be changed or customized.
The JavaBeans architecture was built through a collaborative industry effort and enables developers to write reusable components in the Java programming language.
With the Java Beans API you can create re useable, platform-independent components.
There are three types of benas:
- Visible Bean : A bean component that is visible to an end user, such as a button or any graphical component, that is used with GUI.
- Invisible Bean : A bean that added with any application but not visible to the end user on GUI, for example checking the spelling of a document.
- Container Bean : A bean can contain another bean component, is called the container bean for example a tree bean can contain another component like images, labels, etc.
- Properties define the characteristics of the bean. It can be change at design time or run time if it is not read only and some mutator methods are given in its implementation.
- Events to momunicate with other beans.
- Methods can be called from other beans or from the environment or application in that it is added.
Advantages of beans : There are following advantages of Java Bean components:
- It supports or provide "write-once, run-anywhere" paradigm.
- Three component of the bean are exposed to an application builder tool.
- It has to run in different environment, so that, it is designed correctly.
- It's configuration setting is stored and helps to persist its state and can be used later.
- A Bean may receive events and can communicate with other by generating the events, if it is registered with events.
- States of Bean : Bean is a resusable software component. So as software hs its development life cycle similarly bean component has its own states. These states defines its lifecycle, and are as following;
- Consturaction State : In this state, the bean is under coding phase. The developer busy in writing the code for it.
- Build State : Bean is in build state, where after construction, it is added with any application.
- Run State: As the container application runs, then bean is in run state.
Characteristics of bean :
- Communication : One bean can communicate with other bean and application in that it is build. By message passing to method, it do communication.
- Introspection : It is an automatic process to analyze the properties, evens and methods.
- Persistance : A bean persists by storing and retrieving the properties from storage. The state of component to be stored in a non-volatile place for later retrieval.
- Customizers : Modifiying the appearance and behaviour at the time of building, and run time.
import Java.awt.Graphics;
import Java.beans.PropertyChangeListener;
import Java.beans.PropertyChangeSupport;
import Java.io.Serializable;
import Javax.swing.JComponent;
public class MyFirstBean extends JComponent implements Serializable
{
priavate String caption;
private final PropertyChangeSupport ob = new
PropertyChangeSupport( this );
public String getCaption()
{ return this.caption; }
public void setCaption ( String caption )
{
String oldcaption = this.caption;
this.caption = caption;
this.ob.firstPropertyChange( "caption", oldcaption, caption );
}
public void addPropertyChangeListener ( PropertyChngeListener listener )
{
this.ob.addPropertyChangeListener (listener);
}
public void removePropertyChangeListener ( PropertyChangeListener listener )
{
this.ob.removePropertyChangeListner (listnere);
}
protected void paintComponent ( Graphics g )
{
g.setColor ( getForeground() );
int height = g.getFontMetrics ().getHeight ();
paintString ( g, this.caption, height );
}
private void paintString ( Graphics g, String str, int height )
{ ( str != null )
g.drawString ( str, 0, height )
}
}
Q.8. Does Java has security constraints ? Explain byte code verification and code signing. (20)
Ans. Yes, Java has security constraints.
Byte code verification : When a class loader presents the bytecodes of a newly loaded Java platform class to the virtual machine, the bytecodes are first inspected by a verifier. All classes except system classes are verified. We can deactivate verification with the undocumented-noverify option. For exaple:
java -noverify NewProgram
The bytecode verifier traverses the bytecodes, constructs the type state information, and verifies the types of the parameters to all the bytecode instructions. The figure shows the flow of data and control from the source code to the class loader and bytecode verifier and finally on to the Java virtual machine, which contains the interpreter and runtime system. The bytecode verifier acts gatekeeper as it ensures that code passed to the Java interpreter is in a good state to be executed and can run without the fear of breaking the Java interpreter. Imported code is not allowed to execute by any means until after it has passed the verifier's tests.
Once the verifier is done, a number of important properties are known. Knowing these properties makes the Java interpreter much faster, because it doesn't have to check anything. There are no operand type checks and no stack overflow checks. The interpreter can thus function at full without compromising reliability. The properties are :
> There are no operand stack overflows or underflows.
> The type of the parameters of all bytecode instructions are known to always be correct. Object field accesses are known to be legal -- private, public or protected.
Flow of data and control.......fig.-----
The verifier permits only some bytecode sequences in valid programs and the verifier ensures that any given instruction operates on a fixed stack location that allows the JIT compiler to transform stack accesses into fixed register accesses. Due to this, the JVM does not imply a speed penalty for emulation on register-based architectures when using a JIT compiler. In the face of the code-verified JVM archetecture, it makes no difference to a JIT compiler whether it gets named imaginary registers or imaginary stack positions that need to be allocated to the target architecture's registers. Code verification makes the JVM different from a classic stack architecture whose efficient emulation with a JIT compiler is more complicated and is carried out by a slow interpreter.
- > The byte stream is either truncated nor padded with extra bytes.
- > The class bytes adhere to the correct format for the class itself, methods, fields and other components.
- > There are no overflows of operands on the stack.
- > There are no underflows of operands on the stack.
- > The proper access specifiers of methods and field variables is defined.
- > final classes are not subclassed.
- > final methods are not overridden.
- > final variables are assigned an initial value and not modified.
- > methods are invoked with the correct number and types of arguments.
- > final variables of the class are assigned with values of the correct type.
- > no local variables is accessed before it has an assigned value.
- > the class has one superclass.
Code signing : One of the most important uses of authentication technology is signing executable programs. If a program is downloaded, then we are concerned about damage that a program can do. For example, the program could have been infected by a virus. If we know where the code comes from and that it has not been tempered then we can be comfortable in using the program. For this, we use authentication to verify where the code came from and then run the code with a security policy that enforces the permissions that you want to grant the program, depending on its origin. The most common use of code signing is to provide security when deploying. Almost every code signing implementation will provides some sort of digital signature mechanism to verify the identity of the author or build system, and a checksum to verify that the object has not been modified. Code signing is done on JAR files.
The Java Archive(JAR) file format enables you to pile multiple files into a single archive file. A JAR file contains the class files and auxiliary resources associated with applets and applications. The general steps involved with code signing process are :
- Compile the code to the signed into class files.
- Creates a JAR files.
- Sign the JAR file.
- Export a public key certificate.
- Import the certificate as a trusted certificate.
- Create a policy file indicating that such a principal should be trusted for certain permissions.
- Load the trusted code with your Java application.
311 comments
«Oldest ‹Older 1 – 200 of 311 Newer› Newest»
ReplyVery nice article! I’ll try to put in practice.
Distance Education Institute In Gurgaon
Thank you, I had been looking for some online reference to be used in my Java training and your work really helped me.
ReplyJava Course in Chennai | Java Course in Chennai | Java Course in Chennai
Learning new technolgoy would help oneself at hard part of their career. And staying updated is the only way to survive in current position. Your content tells the same. Thanks for sharing this information in here. Keep blogging like this.
ReplyJAVA J2EE Training in Chennai | JAVA Training in Chennai | Hadoop training in chennai
In near future, big data handling and processing is going to the future of IT industry. Thus taking Hadoop Training in Chennai | Big Data Training in Chennai will prove beneficial for talented professionals.
ReplyYour training is really useful.I got some useful information after reading your blog.As the demand of java programming application keeps on increasing, there is massive demand for java professionals in software development industries. FITA offers a best training with experienced professionals.
ReplyRegards,
Java Training in chennai | Java course in chennai
Fabulous post.I am really happy to read such kind of article.I have bookmarked this page for future reference.Waiting for your next article.
ReplyRegards,
Hadoop Training Chennai | Best Hadoop Training in Chennai | Hadoop Training in Chennai
Great and useful post.Adding to the conversation,providing more information, or expressing a new point of view.
ReplyBest DOTNET Training institute in Chennai | DOTNET Training in Chennai
Excellent post..Thank you for sharing Best Selenium Training in Chennai |Selenium Training in Chennai | Best Selenium Training Center in Chennai
ReplyAndroid Training in Chennai
I have read your blog its very attractive and impressive. I like it your blog.
ReplyJavaEE Training in Chennai JavaEE Training in Chennai
Java Training in Chennai Core Java Training in Chennai Core Java Training in Chennai
Java Online Training Java Online Training Core Java 8 Training in Chennai Java 8 Training in Chennai
Thanks for sharing this unique and informative content which provided me the required information.
ReplyStruts training in chennai
Thanks for sharing this unique and informative content which provided me the required information.
ReplyJava Training in Chennai | JAVA Course in Chennai
Thanks for sharing the information about the hadoop training and keep updating us.This information is useful to me.
ReplyHadoop Training Chennai
Hadoop training in Chennai
Hi, you have given really informative post. Thanks for sharing this post to our vision. Learn Hadoop Online Training will helps you to reach your goal.Selenium Training
ReplyThank you for Sharing. Brave Technologies is a leading low cost erp software solution providers in chennai. For more details call +91 9677025199. cloud erp in Chennai | erp software solutions provider in chennai
ReplyAmazing Post very informative and helpful.
ReplyThanks for the share
Cloud Computing training institute in Gurgaon | ethical hacking training in Gurgaon
Really an amazing post..! By reading your blog post i gained more information.
ReplyBulk SMS Chennai
These provided information was really so nice,thanks for giving that post and the more skills to develop.giving articles really nice..Linux Training Institute in Chennai | Linux Training Institute in Velachery.
Reply
ReplyThank you for sharing the excellent post . you helped me to gain more information on the latest technique
Java Training |
Java Course in Chennai
Wonderful Blog!!! Your post is very informative about Data Management. Thank you for sharing the article with us.
ReplyHadoop Training Chennai |
Big Data Training
I found this content is useful to me to learn something advanced, thanks admin for your informative post :)
ReplyRegards,
Best JAVA Training in Chennai|Best JAVA Training institute in Chennai
It is natural to make mistake while developing your application as a developer. Keep updating more knowledge on Software testing. Selenium is the best automation testing tool to test any application.
ReplySelenium Training in chennai |
Selenium Course in Chennai
Thanks for sharing this valuable information to our vision. You have posted a trust worthy blog keep sharing. Hadoop Training in Chennai|Big Data Training in Chennai
ReplyNice Post! It is really interesting to read from the beginning & I would like to share your blog to my circles, keep your blog as updated.
ReplyRegards,
PHP Training Center in Chennai|PHP Course Chennai
It's really an innovative article. Keep to sharing the knowledge..
ReplyRobotics Training Center in Chennai | Robotics Project Center in Velachery
Really it was an awesome article...very interesting to read..You have provided an nice article....Thanks for sharing..
ReplyAndroid Training in Chennai
Ios Training in Chennai
Awesome post, Thanks for sharing...
ReplyRegards,
DOT NET Training Institutes in Chennai|Best DOT NET Training in Chennai
Nice tutorial on android technology hats-off to your effort. Your article explained the potential of android technology in coming years. Android Training in Chennai|Android Course in Chennai
ReplyIn near future, big data handling and processing is going to the future of IT industry. Thus taking Hadoop Training in Chennai | Big Data Training in Chennai will prove beneficial for talented professionals.
ReplyReally it was an awesome article...very interesting to read..You have provided an nice article....Thanks for sharing..
ReplyMat Lab Project Center in Chennai | IEEE Mat Lab Projects in Velachery
Thanks for sharing. this article wonderful website Information provided in this website are very nice.. Again Thanks for this article..
ReplyInformative blog and it was up to the point describing the information very effectively. Thanks to blog author for wonderful and informative post. Also great with all of the valuable information on mobile app and you are doing well.
ReplyMobile application developers in Chennai | Android application developers in Chennai
I feel really happy to have seen your webpage and look forward to so many more entertaining times reading here. Thanks once more for all the details.
Replydata-science-training-in-bangalore
Nice article Thanks for sharing this article Wonderful information from this website Thanks !!!
ReplyI have read your blog its very attractive and impressive. I like it your blog.
ReplyElectrical Project Center in Chennai | Electrical Project Center in Velachery | Best Electrical Projects in Velachery
Nice article.thank you for sharing its very useful and informative.keep sharing..
ReplyBest VMware Training Institute in Chennai | Best VMware Training Institute in Velachery
Very good and informative article. Thanks for sharing such nice article, keep on updating.
ReplyBest Microsoft Azure Training Institute in Chennai | Best Microsoft Azure Training Institute in Velachery
Excellent information with unique content and it is very useful to know about the information based on blogs.
ReplyBest VMware Training Institute in Chennai | Best VMware Training Institute in Velachery
I feel really happy to have seen your webpage and look forward to so many more entertaining times reading here. Thanks once more for all the details.
Replywhite label website builder
Nice blog..Keep sharing..
ReplySummer Course Training in Chennai | Summer Course Training in Meenambakkam
I strongly believe that there will be great opportunities for those who looked into this area, thanks much for sharing here the best useful content please do keep on sharing...
ReplyBest Online Software Training Institute | Advanced Java Training
your blog contain very useful information. Really hereafter I am very big follower of your blog..
ReplyCompTIA A+ Certifications Center in Chennai | A+ Exams in Perungudi
Your Blog is nice and informative,its really useful for everyone.keep sharing...
ReplyCisco Certifications Exam Center in Chennai | Best Cisco Course in Thiruvanmiyur
Thanks for sharing this valuable blog. Very clear step by step representation of the process. Keep updating.
ReplyISTQB Certifications Course in Chennai | QA Testing in Medavakkam
Awesome post. Really you are shared very informative concept... Thank you for sharing. Keep on updating..
ReplyAndroid Certifications Exam Training in Chennai | Android Course in Adyar
Good Post! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge as updated one, keep blogging…
ReplyPython Certification Exam Coaching in Chennai | Best Python Training in T.Nagar
Thank you a lot for providing individuals with a very spectacular possibility to read critical reviews from this site.
Replyaws training institute in bangalore
Very good informative article. Thanks for sharing such nice article, keep on up dating such good articles.
ReplyCompTIA Network Plus Certifications Exam Training in Chennai | Network Plus in Adambakkam
I really love reading and following your post as I find them extremely informative and interesting.
ReplyCisco CCNA Certification Course in Chennai | Excellent Cisco CCNA Course in Tambaram
Excellent post!!!. The strategy you have posted in this technology helped me to get into the next level and had lot of information in it.
ReplyCorelDraw Training Courses in Chennai | No.1 Multimedia Training in Guindy
Well Said, you have furnished the right information that will be useful to anyone at all time. Thanks for sharing your Ideas.
ReplyCisco CCNP Certification Center in Chennai | CCNA Training in Velachery | No.1 CCNP Course in Guindy
Thanks for this blog. Very good knowledge and very good information. The simplest method to do this process....
ReplyCertified Ethical Hacking Training in Chennai | No.1 Ethical Hacking in Alandur
nice and really helpful article to everyone... thanks for sharing
ReplyDot Net Project Center in Chennai | Dot Net Training in Guindy
Nice Blog..useful information
ReplyAndroid Project Center in Chennai | No.1 Android Training in Velachery
Thanks for sharing your ideas on mobile application.Really useful to me.Continue sharing more like this.
ReplyJava Project Center in Chennai | No.1 Java Project Training in Porur
Thank you a lot for providing individuals with a very spectacular possibility to read critical reviews from this site.
ReplyBSC Final Year Project Center in Chennai | MSC Project Training in Guindy
Nice blog. Thank you for the introduction of information that is very interesting to see in this article. Keep sharing...
ReplyAndroid Final Year Project Center in Chennai | No.1 Android Training in Saidapet
Extraordinary blog. you put Good stuff. All the themes were clarified briefly.Thanks for sharing that post.Keep in blogging…
ReplyMCA Final Year Project Center in Chennai | MCA Project in Tambaram
Amazing article. Your blog helped me to improve myself in many ways thanks for sharing this kind of wonderful informative blogs in live. I have bookmarked more article from this website. Such a nice blog you are providing ! Kindly Visit Us @ Madurai Travels ! Best Travels in Madurai | Tours and Travels in Madurai
ReplyI learn new information from your article , you are doing a great job . Keep it up
ReplyBE Final Year Project Center in Chennai | BE Project in Madipakkam
I am impressed with your work and skill. Thank you so much.
ReplyNS2 Final Year Project Center in Chennai | NS2 Project in Tambaram
I am impressed with your work and skill. Thank you so much.
ReplyJava Project Center in Chennai | Java Project in Chromepet
Wonderful post.... thanks for sharing...
ReplyMSC Final Year Project Center in Chennai | BSC Training in Guindy
I read this post two times, I like it so much, please try to keep posting & Let me introduce other material that may be good for our community.
ReplyMatLab Final Year Project Center in Chennai | MatLab Project in Tambaram
Amazing Post very informative and helpful.
ReplyPHP Final Year Project Center in Chennai | PHP Project in Chromepet
Thanks for sharing,this blog makes me to learn new thinks.Interesting to read and understand.Keep updating it.
ReplyBE Final Year Project Center in Chennai | BE Training in Guindy
Neat and fruitful presentation!! I thouroughly enjoyed your article. I was searching the post like you wrote. Thanks for your sharing!!
ReplyAngular Training in Chennai
Angular 6 Training in Chennai
Angular 5 Training in Chennai
RPA Training in Chennai
R Programming Training in Chennai
Devops Training in Chennai
I learn new information from your article , you are doing a great job . Keep it up
ReplyEmbedded Final Year Project Center in Chennai | Embedded Project in Alandur
Thanks its Great Article… I love to read your articles because your writing style is too good, its is very very helpful for all of us.
ReplyVLSI Final Year Project Center in Chennai | VLSI Project Center in Madipakkam
The content you have given is Extra-Ordinary. Very interesting write-up. Looking forward for your next Post.
ReplyEthical Hacking Course in Chennai
Hacking Course in Chennai
Learn Ethical Hacking
Ethical Hacking Training Institute in Chennai
Ethical Hacking Course in Anna Nagar
Node JS Training in Chennai
Node JS Course in Chennai
Photoshop Classes in Chennai
Photoshop Course in Chennai
Great post and informative blog.it was awesome to read, thanks for sharing this great content to my vision.
ReplyVLSI Final Year Project Center in Chennai | VLSI Training in Madipakkam
Wonderful blog!!! I liked the complete article…. great written,Thanks for all the information you have provided…
ReplyAndroid Final Year Project Center in Chennai | Android Project Center in Perungudi
Really I enjoy this blog….. Very nice post… Thanks for sharing and keep updating..
ReplyBE Final Year Project Center in Chennai | BE Project Center in Chromepet
Impressive blog with lovely information. really very useful article for us thanks for sharing such a wonderful blog...
ReplyAndroid Final Year Project Center in Chennai | Android Training in Adambakkam
Replythe article is nice.most of the important points are there.thankyou for sharing a good one.
QTP Training in Chennai
Best QTP Training Center in Chennai
Qtp classes in chennai
qtp training institute in chennai with placement
best qtp training in chennai
LoadRunner Training in Chennai
performance testing training
hp loadrunner training
Nice article, I read your post form the beginning. It’s sound interesting to read. Thanks for sharing the useful blog.
ReplyDot Net Final Year Project Center in Chennai | Dot Net Projects in Meenambakkam
Such a cute blog. Thank you for blogging. Keep adding more blogs. Very nicely presented..
ReplyPHP Final Year Project Center in Chennai | PHP Projects in Velachery
This is an interesting blog that you have posted, you shares a lot of useful things about Technology.
ReplySAS Training in Chennai
SAS Course in Chennai
SAS Training Institute in Chennai
clinical sas training in chennai
clinical sas training
SAS Analytics Training in Chennai
SAS Training Chennai
Nice blog with excellent information. Thank you, keep sharing.
ReplyMatLab Projects Center in Chennai | VLSI Project in Velachery | MatLab Projects Center in Adambakkam
Such a cute blog. Thank you for blogging. keep sharing.Best vacation course Training in and vacation course for Students in Kanchipuram|
ReplyVery Useful information that i have found. don't stop and Please keep updating us..... Thanks
ReplyVacation Courses in Chennai | Summer Classes in Pallikaranai
Your Blog is really awesome with useful and helpful content for us.Thanks for sharing ..keep updating more information.
ReplyVacation Classes in Chennai | Summer Courses in Besant Nagar
Nice article, I read your post form the beginning.Best summer courses traning for Students in Kanchipuram|
ReplyHi, you have given really informative post. Thanks for sharing this post to our vision. Best Hardware and Networking courses in kanchipuram|
Replythe blog is very useful, interesting and informative. thank you for sharing the blog with us. keep on updating. Best web designing and development courses in kanchipuram|
Replyvery nice blogs!!! i have to learning for lot of information for this sites...Sharing for wonderful information. Thanks for sharing this valuable information to our vision. You have posted a trust worthy blog keep sharing
ReplyBest AWS Training Academy in Kanchipuram
Really very great information to be provided and the All points discussed were worth reading and i’ll surely work with them all one by one.
ReplyBest C and C++ Programming Training Academy in Kanchipuram
Awesome post. Really you are shared very informative concept... Thank you for sharing. Keep on updating...
ReplyBest Graphics Designing Training Academy in Kanchipuram
Great post i must say thanks for the information you added to this post. I appreciate your post and looking forward for more.
ReplyData Science
It should be noted that whilst ordering papers for sale at paper writing service, you can get unkind attitude. In case you feel that the bureau is trying to cheat you, don't buy term paper from it.
ReplyExcelR Data science courses in Bangalore
Wonderful post. Thank you for updating such an informative content.
ReplyBest Python Training Academy in Kanchipuram
This post is very interesting and I got a more unique information. The written style is very nice and keep sharing with us...
ReplyCorporate Training in Chennai
Corporate Training Companies in Chennai
Spark Training in Chennai
Primavera Training in Chennai
Oracle Training in Chennai
Pega Training in Chennai
Power BI Training in Chennai
Oracle DBA Training in Chennai
Corporate Training in Chennai
Corporate Training institute in Chennai
I want you to thank for your time of this wonderful read!!! I definately enjoy every little bit of it and I have you bookmarked to check out new stuff of your blog a must read blog!
ReplyData Science Course in Pune
ReplyThis is also a very good post which I really enjoyed reading. It is not every day that I have the possibility to see something like this..
data science course malaysia
Awesome blog. I enjoyed reading your articles. This is truly a great read for me. I have bookmarked it and I am looking forward to reading new articles. Keep up the good work!
ReplyBig Data Course
I am hoping the same best effort from you in the future as well. In fact your creative writing skills has inspired me.
Replydata analytics course malaysia
I was just browsing through the internet looking for some information and came across your blog. I am impressed by the information that you have on this blog. It shows how well you understand this subject. Bookmarked this page, will come back for more.
Replydata science course in singapore
I found some useful information in your blog, it was awesome to read, thanks for sharing this great content to my vision, keep sharing..
ReplyBest Graphic Designing Training Institute in in Kanchipuram
really you have posted an informative blog. it will be really helpful to many peoples. thank you for sharing this blog. so keep on sharing such kind of useful blogs.
ReplyBest TALLY ERP 9.0 Training Academy In Kanchipuram
Nice post... Really you are done a wonderful job. Thanks for sharing such wonderful information with us. Please keep on updating...
ReplyBest Graphic designing Training Institute in in Kanchipuram
I believe there are many more pleasurable opportunities ahead for individuals that looked at your site
ReplyBest dotnet Training Institute in Kanchipuram
thank you for such a great article with us. hope it will be much useful for us. please keep on updating..
ReplyBest software testing Training Institute in Kanchipuram
It should be noted that whilst ordering papers for sale at paper writing service, you can get unkind attitude. In case you feel that the bureau is trying to cheat you, don't buy term paper from it. Love it.
ReplyI am looking for and I love to post a comment that "The content of your post is awesome" Great work!
ReplyData Science Courses
Excellent post, it will be definitely helpful for many people. Keep posting more like this.
ReplyBest ccna Training in Chennai
ccna Training in Chennai
ccna course in Chennai
Angular 7 Training in Chennai
CCNA course in Ambattur
CCNA course in T Nagar
CCNA course in OMR
I feel really happy to have seen your webpage and look forward to so many more entertaining times reading here. Thanks once more for all the details.
ReplyBest C++ Training Training Institute in Kanchipuram
You might comment on the order system of the blog. You should chat it's splendid. Your blog audit would swell up your visitors. I was very pleased to find this site.I wanted to thank you for this great read!!
Replymachine learning course malaysia
this is very informative and intersting for those who are interested in blogging field.
ReplyOne data science
One Machine Learning
this is very informative and intersting for those who are interested in blogging field.
ReplyOne data science
One Machine Learning
Hi, am a big follower of your blog. I am really happy to found such a helpful and fascinating post that is written in well manner. Thanks for sharing such an informative post. keep update your blog.
ReplyBest UIPath Robotic Process Automation in Training Institute in Kanchipuram
This information is impressive; I am inspired with your post writing style & how continuously you describe this topic. After reading your post, thanks for taking the time to discuss this, I feel happy about it and I love learning more about this topic.Regards,
ReplyBest tally erp 9 Training Institute in kanchipuram|
I think this is an informative post and it is very useful and knowledgeable. I really enjoyed reading this post. thank you!
ReplyBest Python Course Training Institute in kanchipuram|
This post was quite awesome and interesting to read. Congrats for your work. Thanks a lot for providing this with us. Keep on updating this with us regularly:
ReplyBest Selenium Automation Course Training Institute in kanchipuram|
The best thing is that your blog really informative thanks for your great information
ReplyBest tally erp 9 Course Training Institute in kanchipuram|
Awesome Blog with informative concept. Really I feel happy to see this useful blog, Thanks for sharing such a nice blog...
ReplyBest Linux Certification Course Training Institute in kanchipuram|
Great post.Thanks for one marvelous posting! I enjoyed reading it;The information was very useful.Keep the good work going on!!
ReplyBest Graphic Designing Course Training Institute in kanchipuram|
This is excellent information. It is amazing and wonderful to visit your site.Thanks for sharing this information,this is useful to me...
ReplyBest UIPath Robotic Process Automation Course Training Institute in kanchipuram|
There was very wonderful information and that's great one. I really appreciate the kind words, thanks for sharing that valuable information.
ReplyBest C++ Course Training Institute in kanchipuram|
Nice informative content Data Science Course In Chennai
ReplyProtractor Training in Chennai
jmeter training in chennai
Rpa Training in Chennai
Rpa Course in Chennai
Blue prism training in Chennai
Selenium Training In Chennai
Selenium Training In Chennai
The information you have here is really useful to make my knowledge good. It is truly supportive for us and I have accumulated some essential data from this blog.
ReplyBest JAVA and J2EE Course Training Institute in kanchipuram|
Nice Post...I have learn some new information.thanks for sharing.
ReplyClick here for ExcelR Business Analytics Course
Your Blog is really awesome with helpful post..keep updating such an excellent post with us..
ReplyBest CCNA Course Training Institute in kanchipuram|
Great blog.you put Good stuff.All the topics were explained briefly.so quickly understand for me.I am waiting for your next fantastic blog.Thanks for sharing.
ReplyBest Tally erp9 Course Training Institute in kanchipuram|
Nice..You have clearly explained about it ...Its very useful for me to know about new things..Keep on blogging..
ReplyBest JAVA and J2EE Course Training Institute in kanchipuram|
Hi, am a big follower of your blog. I am really happy to found such a helpful and fascinating post that is written in well manner. Thanks for sharing such an informative post. keep update your blog.
ReplyBest CCNA Course Training Institute in kanchipuram|
Great post.Thanks for one marvelous posting! I enjoyed reading it;The information was very useful.
ReplyBest Best Web Designing and Development Course Training Institute in kanchipuram|
Your info is really amazing with impressive content..Excellent blog with informative concept. Really I feel happy to see this useful blog, Thanks for sharing such a nice blog..
ReplyBest Python Course Training Institute in kanchipuram|
Quite Interesting post!!! Thanks for posting such a useful post. I wish to read your upcoming post to enhance my skill set, keep blogging.
ReplyBest Web Technologies Course Training Institute in kanchipuram|
This is excellent information. It is amazing and wonderful to visit your site.Thanks for sharing this information, this is useful to me…
ReplyBest Linux Certification Course Training Institute in kanchipuram|
Nice Post! It is really interesting to read from the beginning & I would like to share your blog to my circles, keep your blog as updated.
ReplyBest Tally ERP 9 Course Training Institute in kanchipuram|
Interesting post! This is really helpful for me. I like it! Thanks for sharing!
ReplyBest Graphic Designing Course Training Institute in kanchipuram|
Wonderful Blog with impressive content..keep updating..
ReplyBest Python Training Course Training Institute in kanchipuram|
your blog contain very useful information. Really hereafter I am very big follower of your blog..
ReplyBest MATLAB Course Training Institute in kanchipuram|
This is excellent information. It is amazing and wonderful to visit your site.Thanks for sharing this information, this is useful to me…no:1
ReplyHP QTP / UFT Automation training institute in kanchipuram.
Great post....Thank you for posting the great content……I found it quiet interesting, hopefully you will keep posting such blogs…Keep updating your creative and awesome blog.
ReplyBest Tally Erp9 Course Training Institute in kanchipuram|
The best thing is that your blog really informative thanks for your great information! I have got some important suggestions from it.
ReplyBest Printed Circuit Board (PCB) Course Training Institute in kanchipuram|
Pretty blog, so many ideas in a single site, thanks for the informative article, keep updating more article.
ReplyDigital Marketing Training in Chennai
Digital Marketing Training in Bangalore
Digital Marketing Training in Coimbatore
Digital Marketing Course in Madurai
The information you have deliver here is really useful to make my knowledge good. Thanks for your heavenly post.
ReplyBest Best Web Designing and Development Course Training Institute in kanchipuram|
Interesting post! This is really helpful for me. I like it! Thanks for sharing!
ReplyBest CCNA Course Training Institute in kanchipuram|
ReplyNice information, valuable and excellent design, as share good stuff with good ideas and concepts, lots of great information and inspiration, both of which I need, thanks to offer such a helpful information here.
"360digitmg certified machine learning courses"
Interesting post! This is really helpful for me. I like it! Thanks for sharing!
ReplyBest Tally erp9 Course Training Institute in kanchipuram|
Your post explain everything in detail and it was very interesting to read. Thank you sharing.
ReplyBest Tally Erp9 Course Training Institute in kanchipuram|
Quite Interesting post!!! Thanks for posting such a useful post. I wish to read your upcoming post to enhance my skill set, keep blogging.
ReplyNo:1 Tally Training Academy in kanchipuram
Really it was an awesome information...very interesting to read..You have provided an nice blog....Thanks for sharing..
ReplyBest JAVA / J2EE / J2ME Course Training Institute in kanchipuram|
Excellent post. I have read your blog it's very interesting and informative. Keep sharing.
ReplyBest JAVA / J2EE / J2ME Course Training Institute in kanchipuram|
I have read your Blog..Its really helpful to us...
Replykeep updating such a wonderful article..
No:1 Tally Training Academy in kanchipuram
I have read your Blog..Its really helpful to us...
Replykeep updating such a wonderful article..
No:1 Tally Training Academy in kanchipuram
Really it was an awesome information...very interesting to read..You have provided an nice blog....Thanks for sharing..
ReplyNo:1 Tally Training Academy in kanchipuram
I feel satisfied with your blog, you have been delivering useful & unique information to our vision even you have explained the concept as deep clean without having any uncertainty, keep blogging.
ReplyNo:1 Tally Training Academy in kanchipuram
I feel satisfied with your blog, you have been delivering useful & unique information to our vision even you have explained the concept as deep clean without having any uncertainty, keep blogging.
ReplyNo:1 Tally Training Academy in kanchipuram
Excellent post!!! The future of cloud computing is on positive side. With most of the companies integrate Salesforce to power their business; there is massive demand for Salesforce developers and administrators across the world.
ReplyNo:1 BBA Project Center in kanchipuram
I have read your blog. Good and more information useful for me, Thanks for sharing this information keep it up....
ReplyBest Dot Net Course Training Institute in kanchipuram|
Really it was an awesome blog...very interesting to read..You have provided an nice information....Thanks for sharing..
ReplyBest Hardware & Networking Course Training Institute in kanchipuram|
I have been tying to get this set up for the past few 2 days. When I came across your article and wanted to know id others have been able to get it to work. Glad to hea from anyone with updated info.
ReplyNo:1 Selenium Automation Training Academy in kanchipuram
To find out the popular mistakes in essay, have a glimpse at this papers site to read
Replythe useful article about it.
No:1 Java Training Academy in
Kanchipuram
Thanks for making me this Blog. You have done a great job by sharing this content here. Keep writing blog like this
ReplyNo:1
Graphic Design Training Academy in kanchipuram
Wow Very Nice Information Thanks For Sharing It.keep update…
ReplyBest EEE Project Centre Training Institute in kanchipuram|
Thanks for sharing this valuable information to our vision. You have posted a trust worthy blog keep sharing.
ReplyBest PCB (Printed Circuit Board) Course Training Institute in kanchipuram|
Nice blog. Thank you for sharing. The information you shared is very effective for learners I have got some important suggestions from it.
ReplyNo:1 Hardware and Networking Training Academy in Kanchipuram
Nice blog. Thank you for sharing. The information you shared is very effective for learners I have got some important suggestions from it…
ReplyNo:1
Embedded Systems Training Academy in kanchipuram
I love reading and following your post as I find them extremely informative and interesting.
ReplyBest AWS (Advanced Amazon Web Services) Course Training Institute in kanchipuram|
Thanks for your informative blog. Your post helped me to understand the future and career prospects. Keep on updating your blog with such awesome blog.No:1 Software Testing Training Academy in Kanchipuram
ReplyAwesome post. Really you are shared very informative information... Thank you for sharing. Keep on updating...
ReplyBest AWS (Advanced Amazon Web Services) Course Training Institute in kanchipuram|
Nice blog. Thank you for sharing. The information you shared is very effective for
Replylearners I have got some important suggestions from it.
No:1 Azure Training Academy in
Kanchipuram
Wonderful post. Thanks for taking time to share this information with us.
ReplyNo:1
RPA Training Academy in kanchipuram
Great post..Its very useful for me to understand the information..Keep on blogging..
ReplyBest Software Testing Course Training Institute in kanchipuram|
I am reading your post from the beginning, it was so interesting to read & I feel thanks to you for posting such a good blog, keep updates regularly.
ReplyBest Cloud Computing Course Training Institute in kanchipuram|
Wow! I've been searching for this for a while. Glad that you posted it. This will be really helpful. I'm taking reference from here. Keep us updated with more such posts.
ReplyNo:1
IOS Training Academy in kanchipuram
Marvelous and fascinating information.Thanks for this greatful blog. keep your blog updated.
ReplyBest Hardware & Networking Course Training Institute in kanchipuram|
Marvelous and fascinating information.Thanks for this greatful blog. keep your blog updated.
ReplyBest Hardware & Networking Course Training Institute in kanchipuram|
This is really awesome. Full of knowledge and latest information.Thanks for sharing.
ReplyBest JAVA / J2EE / J2ME Course Training Institute in kanchipuram|
Really thanks for sharing...This blog is awesome very informative..
ReplyExcelR Machine Learning
The provided information’s are very useful to me.Thanks for sharing.Keep updating your blog.
ReplyNo:1 Networking project Centre in kanchipuram
very usefull informatation.and iam expecting more posts like this please keep updating us....
ReplyNo:1 Best Android Project Center in kanchipuram|
Thank you for sharing in this webpage, I can learn a lot and could also be a reference, I hope to read the next your article updates.
ReplyNo:1
JAVA Project Center in kanchipuram
Great post! I am actually getting ready to across this information, It's very helpful for this blog.Also great with all of the valuable information you have Keep up the good work you are doing well.
ReplyNo:1
VLSI Project Center in kanchipuram
You post explain everything in detail and it was very interesting to read.Thank you for Sharing.
ReplyNo:1 Best Dotnet Project Center in kanchipuram|
Great one,You have done a great job by sharing this content,Thank you a lot for providing individuals with a very spectacular possibility to read critical reviews from this site.
ReplyVLSI Project Center in kanchipuram
After reading your blog, I was quite interested to learn more about this information. Thanks for sharing.
ReplyNo:1 Best PGDCA Training Center in kanchipuram|
this is really too useful and have more ideas from yours. keep sharing many
Replytechniques.
No:1 CCNA training Center in Kanchipuram
You post explain everything in detail and it was very interesting to read.Thank you for Sharing.
ReplyNo:1 Best Tally Training Center in kanchipuram|
Your blog is awesome..You have clearly explained about it ...Its very useful for me to know about new things..Keep on blogging…No: 1 ECE Project Center in Chennai|
Reply
ReplyThese provided information was really so nice,thanks for giving that post and the more skills to develop after refer that post. Your blog really impressed for me,because of all information so nice.No: 1 VLSI Project Center in Chennai|
This blog is informative.It helps me to gain good knowledge.It helps to understand the concept easily. please update this kind of information…No: 1 IT Project Center in Chennai|
ReplyThe information you shared is very effective for learners. I learnt this technology very well with the help of this article.Thanks for this useful information.Keep updating.
ReplyBasic Computer Course in kanchipuram
I am reading your post from the beginning, it was so interesting to read & I feel thanks to you for posting such a good blog, keep updates regularly.No: 1 PMP Exam Center in Chennai|
Replyhi welcome to this blog. really you have post an informative blog. it will be really helpful to many peoples. thank you for sharing this blog.No: 1 Final Year Project Center in Chennai|
ReplyGreat Article. Thank you for sharing! Really an awesome post for every one.
ReplyProject Centers in Chennai
JavaScript Training in Chennai
Final Year Project Domains for IT
JavaScript Training in Chennai
I found some useful information in your blog, it was awesome to read, thanks for sharing this great content to my vision, keep sharing.
ReplyBest Python Project Center in Chennai
Thank you so much as you have been willing to sharing your information with us. And not only that we will spend a lot of time other blog but your blog is so informative and compare to that your blog is unique.No: 1 EEE Project Center in Chennai|
ReplyI have completely read your post and the content is crisp and clear.Thank you for posting such an informative article, I have decided to follow your blog so that I can myself updated.
ReplyRobotics Project Center in Chennai
I am really happy with your blog because your blog is very unique and powerful for new reader.No: 1 Microsoft Exam Center in Chennai|
ReplyI have completely read your post and the content is crisp and clear.Thank you for posting such an informative article, I have decided to follow your blog so that I can myself updated.
ReplyRobotics Project Center in Chennai
Really an amazing post..! By reading your blog post i gained more information.No: 1 CCNA Exam Center in Chennai|
ReplyI have read your blog its very attractive and impressive. I like it your blog.No: 1 Python Certification in Chennai|
ReplyThis information is impressive..I am inspired with your post writing style & how continuously you describe this topic. After reading your post, thanks for taking the time to discuss this, I feel happy about it and I love learning more about this topic
ReplyAWS Certification in Chennai
Thanks for posting this useful content, Good to know about new things here, Keep updating your blog...No: 1 Blue Prium Certification in Chennai|
ReplyThis information is impressive..I am inspired with your post writing style & how continuously you describe this topic. After reading your post, thanks for taking the time to discuss this, I feel happy about it and I love learning more about this topic
ReplyAWS Certification in Chennai
Nice blog. Thank you for sharing. The information you shared is very effective for learners I have got some important suggestions from it…
ReplyAndroid Project Center in Chennai
Post a Comment