Here's the recent articles submitted by info campus
Articles By info campus
Exception Handling A Concept To Avoid The Program Terminate Improperly In Java
Submitted as: Infocampus
When java executing any faulty statement , an interruption occur or program terminated improperly .that is known as exception.We need to handle the exception using exception handling mechanism.(read
entire article)
View : 467 Times
Category : Computer Programming
In Java How Collection Is Single Unit Of Objects
Submitted as: Infocampus
A collections framework is a unified architecture for representing
and manipulating collections. Collection represents a single unit of objects i.e.a group.(read
entire article)
View : 376 Times
Category : Education
Working Of Java Virtual Machine (jvm )in Java
Submitted as: Infocampus
JVM is known as Java Virtual Machine. It is the engine that executes the Java Code. It converts bytecode into machines code. In JVM also JIT (Just In Time)compiler is available which converts the some part of byte code to native machine code to increase the performance.(read
entire article)
View : 447 Times
Category : Education
Hibernate A Framework For Mapping In Java
Submitted as: Infocampus
Hibernate is an object-relational mapping (ORM) library for Java language, providing a framework for mapping an object-oriented domain model to a traditional relational database.(read
entire article)
View : 472 Times
Category : Computer Programming
How Advanced Java Is Different From Core Java
Submitted as: Infocampus
Core Java is mainly used for the stand- alone application whereas Advance Java is used for the web based application and enterprise application.Core Java is the single tier architecture where as Advance Java is the Client-Server Architecture.(read
entire article)
View : 480 Times
Category : Computer Programming
Pl/sql A New Way For The Arrangement Of Records In Database
Submitted as: Infocampus
PL/SQL is a block structured language. The programs of PL/SQL are logical blocks that can contain any number of nested sub-blocks. PL/SQL stands for "Procedural Language extension of SQL" that is used in Oracle. It is integrated with Oracle database (since version 7).(read
entire article)
View : 550 Times
Category : General
Java Server Page Jsp A Concept In Java
Submitted as: Infocampus
Java Server Pages (JSP) is a server-side programming language that is used for the creation of dynamic, platform-independent method for building Web-based applications.(read
entire article)
View : 384 Times
Category : Education
Struts Framework To Develop Mvc Based Webapplication In Java
Submitted as: Infocampus
Struts2 is popular web application framework based on the MVC design pattern. Struts2 is not just the next version of Struts1, but it is a complete rewrite of the Struts architecture.The struts framework was initially created by Craig McClanahan .(read
entire article)
View : 432 Times
Category : Computer Programming
Java Bean Fully Encapsulated Class In Java
Submitted as: Infocampus
A Java Bean is a java class which is fully encapsulated that should have a no-arg constructor , should be Serializable and should provide methods to set and get the values of the properties, known as getter and setter methods.(read
entire article)
View : 683 Times
Category : Computer Programming
Why We Used Inner Classes In Java
Submitted as: Infocampus
Inner classes are a security mechanism in Java. We know a class cannot be associated with the access modifier private, but if we have the class as a member of other class, then the inner class can be made private.(read
entire article)
View : 427 Times
Category : Computer Programming