Archive for Add new tag

You are browsing the archives of Add new tag.

ALL BANKING EXAM MODEL PAPER

1. Which of the following is the winner of Miss Universe 2008
(A) Riyo Mori
(B) Zhang Zilin
(C) Dayana Mendoza
(D) Simaran Kaur Mundi
2. The President of India can nominate to the Rajya Sabha :
(A) 6 members
(B) 9 members
(C) 12 members
(D) 15 members
3. The first General elections under the Indian constitution were held in :
(A) 1950
(B) 1951
(C) 1952
(D) [...]

COMPUTER NETWORKS QUESTIONS PART-2

31. What is the difference between TFTP and FTP application layer protocols?
The Trivial File Transfer Protocol (TFTP) allows a local host to obtain files from a remote host but does not provide reliability or security. It uses the fundamental packet delivery services offered by UDP.
[...]

Java- j2ee interview questions

1.What is J2EE?
J2EE is an environment for developing and deploying enterprise applications. The J2EE platform consists of a set of services, application programming interfaces (APIs), and protocols that provide the functionality for developing multitiered, web-based applications.
2. What is the J2EE module?
A J2EE module consists of one or more J2EE components for the [...]

TCS- aptitude 2004 paper-Hyderabad

TCS TALENT TEST
1. which is the next no:
5,6,7,8,10,11,14,?
ans: 18
2. bfge coded as cehd then code pvhdj
ans: quick
3. find the no. of y followed by w but that is not followed by z.
y w r u d d y w z ……………
4. what is the [...]

Java- Servlets interview questions

Q. What is servlet?
Ans: Servlets are modules that extend request/response-oriented servers, such as java-enabled web servers. For example, a servlet might be responsible for taking data in an HTML order-entry form and applying the business logic used to update a company’s order database.
Q. What are the classes and interfaces for servlets?
Ans: There are two packages [...]

Javasoftware questions

Q. Can you help me debug my program?
A. If the problem you are having is not directly related to our software, we suggest that you use a Java development tool that helps you with debugging, and that you invest in some books or training to help you learn Java. There are many ways to build [...]

Java - IO Streams

Q. What is a stream and what are the types of Streams and classes of the Streams?
Ans: A Stream is an abstraction that either produces or consumes information. There are two types of Streams
and they are:
Byte Stream: Provide a convenient means for handling input and output of bytes.
Character Stream: Provide a convenient means for handling [...]

Java-DataStructures

Q. What are Vector, Hashtable, LinkedList and Enumeration?
Ans: Vector : The Vector class provides the capability to implement a growable array of objects.
Hashtable : The Hashtable class implements a Hashtable data structure. A Hashtable indexes and stores
objects in a dictionary using hash codes as the object’s keys. Hash codes are integer values that identify
objects.
LinkedList: Removing [...]

Java - AWT

1.What is an event and what are the models available for event handling?
:Ans: An event is an event object that describes a state of change in a source. In other words, event occurs when an
action is generated, like pressing button, clicking mouse, selecting a list, etc.
There are two types of models for handling events and [...]