dd Faqs_Questions_And_Answers Faqs_Questions_And_Answers Faqs_Questions_And_Answers Faqs_Questions_And_Answers Faqs_Questions_And_Answers Faqs_Questions_And_Answers Faqs_Questions_And_Answers
Faqs_Questions_And_Answers Faqs_Questions_And_Answers Faqs_Questions_And_Answers Faqs_Questions_And_Answers Faqs_Questions_And_Answers Faqs_Questions_And_Answers Faqs_Questions_And_Answers Faqs_Questions_And_Answers Faqs_Questions_And_Answers
Faqs_Questions_And_Answers Faqs_Questions_And_Answers Faqs_Questions_And_Answers Faqs_Questions_And_Answers Faqs_Questions_And_Answers Faqs_Questions_And_Answers Faqs_Questions_And_Answers Faqs_Questions_And_Answers Faqs_Questions_And_Answers
Accounting Faqs_Questions_And_Answers Action Script Faqs_Questions_And_Answers AJAX Faqs_Questions_And_Answers Antivirus Faqs_Questions_And_Answers C Faqs_Questions_And_Answers C++ Faqs_Questions_And_Answers CAD Faqs_Questions_And_Answers CAM Faqs_Questions_And_Answers Data Stage Faqs_Questions_And_Answers Data Base Faqs_Questions_And_Answers Data Warehousing Faqs_Questions_And_Answers Desktop Publishing
Data Structures Faqs_Questions_And_Answers Freeware Faqs_Questions_And_Answers Graphics Faqs_Questions_And_Answers Hacking Faqs_Questions_And_Answers Internet Faqs_Questions_And_Answers Intranet Faqs_Questions_And_Answers JAVA Faqs_Questions_And_Answers J2EE Faqs_Questions_And_Answers Lotus Notes Faqs_Questions_And_Answers MainFrames Faqs_Questions_And_Answers Marketing Faqs_Questions_And_Answers Multimedia
MIS Faqs_Questions_And_Answers MySql Faqs_Questions_And_Answers .NET Faqs_Questions_And_Answers Open Source Faqs_Questions_And_Answers Operating Systems Faqs_Questions_And_Answers Oracle Apps Faqs_Questions_And_Answers Oracle9i Faqs_Questions_And_Answers OOPS Faqs_Questions_And_Answers Pl/SQL Faqs_Questions_And_Answers People Soft Faqs_Questions_And_Answers PHP
Sql Server Faqs_Questions_And_Answers SAP Faqs_Questions_And_Answers SAS Faqs_Questions_And_Answers Siebel Faqs_Questions_And_Answers Security Faqs_Questions_And_Answers Springs Faqs_Questions_And_Answers Shell Scripting Faqs_Questions_And_Answers Perl Scripting Faqs_Questions_And_Answers Testing Tools Faqs_Questions_And_Answers Web Sphere Faqs_Questions_And_Answers XML
JAVA

JAVA

Click here for Architectures of Java  
1 What is Class?
Ans: Class is a template for multiple objects with similar features and it is a blue print for objects. It defines a type of object according to the data the object can hold and the operations the object can perform.
 
2 what is an Object?
Ans:

Object is an instance of a class and it is a software unit that combines a structured set of data with a set of operations for inspecting and manipulating that data. When an object is created using new operator, memory is allocated to it.

 
3 what is Interface?
Ans:

Interface is similar to a class which may contain method’s signature only but not bodies and it is a formal set of method and constant declarations that must be defined by the class that implements it. Interfaces are useful for:

 
4 what is Methods ?
Ans:

Methods are functions that operate on instances of classes in which they are defined. Objects can communicate with each other using methods and can call  methods in other classes.

 
5 what is abstract class?
Ans:

Abstract class is a class designed with implementation gaps for subclasses to fill in and is deliberately incomplete.

 
6 what is super class ?
Ans: Super class is a class that is inherited whereas sub class is a class that does the inheriting.
 
7 what is package?
Ans:

Package is a collection of classes and interfaces that provides a high-level layer of access protection and name space management.

 
8 What is Primitive Data Type?
Ans: Primitive data types are 8 types and they are: byte, short, int, long, float, double, boolean, char.
 
9 what are Wrapper classes?
Ans: The  classes that allow primitive types to be accessed as objects.
 
10 what is Enumeration?
Ans:

An object that implements the Enumeration interface generates a series of elements, one at a time. It has two methods, namely hasMoreElements() and nextElement(). HasMoreElemnts() tests if this enumeration has more elements and nextElement method returns successive elements of the series.

Page :    1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9
Top