|
what is '1000 projects'?
'fullinterview.com' is a educational content website dedicated to finding and realizing final year projects for btech, be, mtech, mca students, here you can search, find your projects and get guidance from experts the below are the different technological projects.
visual Studio projects
.net projects,
asp projects,
c & ds projects,
c++ projects (all),
cold fusion projects,
delphi projects,
java projects,
perl projects,
php projects,
sql projects,
vc++ projects,
visual basic projects.
how it works?
well, everything on this site is submitted by the student and professional community. after you submit your project, it is being verified and approved by our administrator. after approval, other people can read/discuss it, save to favorites.
more number of projects?
here you can find morethan 1000 projects on different technologies, if u want to get more projects please visit our sister sites www.fullinterview.com & Chetanasprojects.com
Category Articles
What is Java Naming and Directory Interface (JNDI) ?
Added on Sat, Dec 26, 2009
A set of APIs that assists with the interfacing to multiple naming and directory services. Read More
What is encapsulation ?
Added on Sat, Dec 26, 2009
The localization of knowledge within a module. Because objects encapsulate data and implementation, the user of an object can view the object as a black box that provides services. Instance variables and methods can be added, deleted, or changed, but... Read More
What is autoboxing?
Added on Sat, Dec 26, 2009
Automatic conversion between reference and primitive types Read More
What is J2SE?
Added on Sat, Dec 26, 2009
J2SE consists of two components: Core Java and Desktop Java. Core Java provides back-end functionality, while Desktop Java provides GUI ( Graphical User Interface) functionality. J2SE contains both the J2SE Development Kit( JDK) and the Java... Read More
What is Java Runtime Environment (JRE) ?
Added on Sat, Dec 26, 2009
A subset of the Java Development Kit (JDK) for end-users and developers who want to redistribute the runtime environment alone. The Java runtime environment consists of the Java virtual machine1, the Java core classes, and supporting files. Read More
What is Java Platform Editions ?
Added on Sat, Dec 26, 2009
A Java platform "edition" is a definitive and agreed-upon version of the Java platform that provides the functionality needed over a broad market segment. An edition is comprised of two kinds of API sets: (i) "core packages," which are essential to... Read More
What is abstract ?
Added on Sat, Dec 26, 2009
A Java keyword used in a class definition to specify that a class is not to be instantiated, but rather inherited by other classes. An abstract class can have abstract methods that are not implemented in the abstract class, but in subclasses. Read More
What is abstract class ?
Added on Sat, Dec 26, 2009
A class that contains one or more abstract methods, and therefore can never be instantiated. Abstract classes are defined so that other classes can extend them and make them concrete by implementing the abstract methods. Read More
What is authentication ?
Added on Sat, Dec 26, 2009
The process by which an entity proves to another entity that it is acting on behalf of a specific identity. Read More
What is deprecation ?
Added on Sat, Dec 26, 2009
Refers to a class, interface, constructor, method or field that is no longer recommended, and may cease to exist in a future version. Read More
Explain the various Administrator benefits using Web sphere?
Added on Sat, Dec 26, 2009
Web sphere almost reduces the work of server administrator as he can manage load on servers efficiently without any hassles. It also gives him flexibility to divide the load and applications among different server farms. He can also predict about the... Read More
What is abstract method?
Added on Sat, Dec 26, 2009
A method that has no implementation. Read More
What is ACID?
Added on Sat, Dec 26, 2009
The acronym for the four properties guaranteed by transactions: atomicity, consistency, isolation, and durability. Read More
What is Java Media APIs ?
Added on Sat, Dec 26, 2009
A set of APIs that support the integration of audio and video clips, 2D fonts, graphics, and images as well as 3D models and telephony. Read More
What is actual parameter list?
Added on Sat, Dec 26, 2009
The arguments specified in a particular method call. See also formal parameter list Read More
What is API?
Added on Sat, Dec 26, 2009
Application Programming Interface. The specification of how a programmer writing an application accesses the behavior and state of classes and objects. Read More
What is applet?
Added on Sat, Dec 26, 2009
A component that typically executes in a Web browser, but can execute in a variety of other applications or devices that support the applet programming model. Read More
What is ASCII?
Added on Sat, Dec 26, 2009
American Standard Code for Information Interchange. A standard assignment of 7-bit numeric codes to characters. See also Unicode. Read More
What is atomic?
Added on Sat, Dec 26, 2009
Refers to an operation that is never interrupted or left in an incomplete state under any circumstance. Read More
What is int ?
Added on Sat, Dec 26, 2009
A Java keyword used to define a variable of type integer. Read More
What is bean?
Added on Sat, Dec 26, 2009
A reusable software component that conforms to certain design and naming conventions. The conventions enable beans to be easily combined to create an application using tools that understand the conventions. Read More
What is interface ?
Added on Sat, Dec 26, 2009
A Java keyword used to define a collection of method definitions and constant values. It can later be implemented by classes that define this interface with the "implements" keyword. Read More
What is binary operator?
Added on Sat, Dec 26, 2009
An operator that has two arguments. Read More
What is Internet
Added on Sat, Dec 26, 2009
An enormous network consisting of literally millions of hosts from many organizations and countries around the world. It is physically put together from many smaller networks and data travels by a common set of protocols. Read More
What is bitwise operator
Added on Sat, Dec 26, 2009
An operator that manipulates the bits of one or more of its operands individually and in parallel. Examples include the binary logical operators (&, |, ^), the binary shift operators (<< , >>, >>> ) and the unary one's... Read More
What is IP ?
Added on Sat, Dec 26, 2009
Internet Protocol. The basic protocol of the Internet. It enables the unreliable delivery of individual packets from one host to another. It makes no guarantees about whether or not the packet will be delivered, how long it will take, or if... Read More
What is block?
Added on Sat, Dec 26, 2009
In the Java programming language, any code between matching braces. Example: { x = 1; }. Read More
What is interpreter ?
Added on Sat, Dec 26, 2009
A module that alternately decodes and executes every statement in some body of code. The Java interpreter decodes and executes bytecode for the Java virtual machine1. See also compiler, runtime system. Read More
What is boolean?
Added on Sat, Dec 26, 2009
Refers to an expression or variable that can have only a true or false value. The Java programming language provides the boolean type and the literal values true and false. Read More
What is JAIN ?
Added on Sat, Dec 26, 2009
See: Java APIs for Integrated Networks (JAIN) Read More
What is Java Interface Definition Language (IDL) ?
Added on Sat, Dec 26, 2009
A set of Java APIs that provide CORBA (Common Object Request Broker Architecture) interoperability and connectivity capabilities for the J2EE platform. These capabilities enable J2EE applications to invoke operations on remote network services using... Read More
What is Java Media Framework ?
Added on Sat, Dec 26, 2009
The core framework supports clocks for synchronizing between different media (e.g., audio and video output). The standard extension framework allows users to do full audio and video streaming. Read More
What is Java Native Interface ?
Added on Sat, Dec 26, 2009
A standard programming interface for writing Java native methods and embedding the JVM into native applications. The primary goal is binary compatibility of native method libraries across all JVM implementations on a given platform. Read More
What is Java Platform ?
Added on Sat, Dec 26, 2009
Consists of class libraries, a Java virtual machine ( JVM) and class loader (which comprise the runtime environment) and a compiler, debugger and other tools (which comprise the development kit). In addition, the runtime platform is subject to a set... Read More
What is Java Remote Method Invocation (RMI) ?
Added on Sat, Dec 26, 2009
A distributed object model for Java program to Java program, in which the methods of remote objects written in the Java programming language can be invoked from other Java virtual machines1, possibly on different hosts. Read More
What is Java virtual machine ?
Added on Sat, Dec 26, 2009
A software "execution engine" that safely and compatibly executes the byte codes in Java class files on a microprocessor (whether in a computer or in another electronic device). Read More
What is Abstract Window Toolkit (AWT) ?
Added on Sat, Dec 26, 2009
A collection of graphical user interface ( GUI) components that were implemented using native-platform versions of the components. These components provide that subset of functionality which is common to all native platforms. Largely supplanted by... Read More
What is access control ?
Added on Sat, Dec 26, 2009
The methods by which interactions with resources are limited to collections of users or programs for the purpose of enforcing integrity, confidentiality, or availability constraints. Read More
What is API ?
Added on Sat, Dec 26, 2009
Application Programming Interface. The specification of how a programmer writing an application accesses the behavior and state of classes and objects. Read More
What is CODEBASE
Added on Sat, Dec 26, 2009
Works together with the code attribute in the < APPLET> tag to give a complete specification of where to find the main applet class file: code specifies the name of the file, and codebase specifies the URL of the directory containing the file. Read More
What is conversational state ?
Added on Sat, Dec 26, 2009
The field values of a session bean plus the transitive closure of the objects reachable from the bean's fields. The transitive closure of a bean is defined in terms of the serialization protocol for the Java programming language, that is, the... Read More
What is break?
Added on Sat, Dec 26, 2009
A Java keyword used to resume program execution at the statement immediately following the current statement. If followed by a label, the program resumes execution at the labeled statement. Read More
What is JAR ?
Added on Sat, Dec 26, 2009
JAR (Java Archive) is a platform-independent file format that aggregates many files into one. Multiple applets written in the Java programming language, and their requisite components (.class files, images, sounds and other resource files) can be... Read More
What is bytecode?
Added on Sat, Dec 26, 2009
Machine-independent code generated by the Java compiler and executed by the Java interpreter. Read More
What is Java ?
Added on Sat, Dec 26, 2009
A set of technologies for creating and safely running software programs in both stand-alone and networked environments. Read More
What is case?
Added on Sat, Dec 26, 2009
A Java keyword that defines a group of statements to begin executing if a value specified matches the value defined by a preceding switch keyword. Read More
What is Java 2 Platform ?
Added on Sat, Dec 26, 2009
The second generation of the Java platform. (The first generation was the JDK.) Also see "Java Platform" and "Java Platform Editions". Read More
What is casting
Added on Sat, Dec 26, 2009
Explicit conversion from one data type to another. Read More
What is Java 2 SDK, Standard Edition ?
Added on Sat, Dec 26, 2009
The Software Development Kit (SDK) is development environment for building applications, applets, and components using the Java programming language. This SDK provides a reference implementation of the J2SE platform. Read More
What is catch?
Added on Sat, Dec 26, 2009
Java keyword used to declare a block of statements to be executed in the event that a Java exception, or run time error, occurs in a preceding try block. Read More
What is Java APIs for Integrated Networks (JAIN) ?
Added on Sat, Dec 26, 2009
enables the rapid development of Next Generation telecom products and services on the Java platform. Read More
What is Java Card API ?
Added on Sat, Dec 26, 2009
An ISO 7816-4 compliant application environment focused on smart cards. Read More
What is "abstract schema name"?
Added on Sat, Dec 26, 2009
A logical name that is referenced in EJB QL queries. Read More
What is Java Compatibility Kit (JCK) ?
Added on Sat, Dec 26, 2009
A test suite, a set of tools, and other requirements used to certify a Java platform implementation conformant both to the applicable Java platform specifications and to Java Software reference implementations. Read More
What is Java Database Connectivity (JDBC) ?
Added on Sat, Dec 26, 2009
An industry standard for database-independent connectivity between the Java platform and a wide range of databases. The JDBC provides a call-level API for SQL-based database access. Read More
What is Java Development Kit (JDK) ?
Added on Sat, Dec 26, 2009
A software development environment for writing applets and applications in the Java programming language. Technically, the JDK is the correct name for all versions of the Java platform from 1.0 to 1.1.x. Read More
What is Java Foundation Classes (JFC) ?
Added on Sat, Dec 26, 2009
An extension that adds graphical user interface class libraries to the Abstract Windowing Toolkit (AWT) Read More
What is Java IDL ?
Added on Sat, Dec 26, 2009
What is "abstract schema"?
Added on Sat, Dec 26, 2009
The part of an entity bean's deployment descriptor that defines the bean's persistent fields and relationships. Read More
|