1.The Java interpreter is used for the execution of the sourcecode. True
False Ans: a.
2)On successful compilation a file with the class extension iscreated.
a)True
b)False Ans:a.
3)The Java source code can be created in a Notepadeditor.
a)True
b)False Ans:a.
4)The Java Program is enclosed in a classdefinition.
a)True
b)False Ans:a.
5)What declarations are required for every Javaapplication? Ans: A class and the main( ) methoddeclarations.
6)What are the two parts in executing a Java program and theirpurposes? Ans: Two parts in executing a Java programare:
Java Compiler and Java Interpreter.
The Java Compiler is used for compilation and the Java Interpreter is used for execution of the application.
7)What are the three OOPs principles and definethem?
Ans : Encapsulation, Inheritance and Polymorphism are the three OOPs Principles.
Encapsulation:
Is the Mechanism that binds together code and the data it manipulates, and keeps both safe from outside interference and misuse.
Inheritance:
Is the process by which one object acquires the properties of another object. Polymorphism:
Is a feature that allows one interface to be used for a general class of actions.
8)What is a compilation unit? Ans : Java source codefile.
9)What output is displayed as the result of executing the followingstatement? System.out.println(“// Looks like acomment.”);
// Looks like a comment
The statement results in a compilation error Looks like a comment
No output is displayed Ans : a.
10)In order for a source code file, containing the public class Test, to successfully compile, whichof the following must betrue?
It must have a packagestatement It must be namedTest.java
It must import java.lang
It must declare a public class named Test Ans : b
11)What are identifiers and what is naming convention?
Ans : Identifiers are used for class names, method names and variable names. An identifier may beany descriptive sequence of upper case & lower case letters,numbers or underscore or dollar sign and must not begin withnumbers.
12)What is the return type of program’s main( ) method?
Ans : void
13)What is the argument type of program’s main( )method? Ans : stringarray.
14)Which characters are as first characters of anidentifier? Ans : A – Z, a – z, _,$
15)What are differentcomments? Ans : 1) // — single line comment 2) /*—
*/ multiple line comment 3) /** —
*/ documentation
16)What is the difference between constructor method and method?
Ans : Constructor will be automatically invoked when an object is created. Whereas method has to be call explicitly.
17)What is the use of bin and lib inJDK?
Ans : Bin contains all tools such as javac, applet viewer, awt tool etc., whereas Lib contains all packages and variables.
Data types,variables andArrays
1)What is meant byvariable?
Ans: Variables are locations in memory that can hold values. Before assigning any value to a variable, it must be declared.
2)What are the kinds of variables in Java? What are theiruses?
Ans: Java has three kinds of variables namely, the instance variable, the local variable and the class variable.
Local variables are used inside blocks as counters or in methods as temporary variables and are used to store information needed by a single method.
Instance variables are used to define attributes or the state of a particular object and are used to store information needed by multiple methods in the objects.
Class variables are global to a class and to all the instances of the class and are useful for communicating between different objects of all the same class or keeping track of global states.
3)How are the variablesdeclared?
Ans: Variables can be declared anywhere in the method definition and can be initialized during their declaration.They are commonly declared before usage at the beginning of the definition.
Variables with the same data type can be declared together. Local variables must be given a value before usage.
4)What are variabletypes?
Ans: Variable types can be any data type that java supports, which includes the eight primitive data types, the name of a class or interface and an array.
5)How do you assign values tovariables?
Ans: Values are assigned to variables using the assignment operator =.
6)What is a literal? How many types of literals arethere?
Ans: A literal represents a value of a certain type where the type describes how that value behaves. There are different types of literals namely number literals, character literals,
boolean literals, string literals,etc.
7)What is anarray?
Ans: An array is an object that stores a list of items.
8)How do you declare anarray?
Ans: Array variable indicates the type of object that the array holds. Ex: int arr[];
9)Java supports multidimensionalarrays. a)True
b)FalseAns:a.
10)An array of arrays can becreated.
a)True b)FalseAns:a.
11)What is astring?
Ans: A combination of characters is called as string.
12)Strings are instances of the classString. a)True
b)False Ans:a.
13)When a string literal is used in the program, Java automatically creates instances of the stringclass. a)True
b)FalseAns:a.
14)Which operator is to create and concatenatestring? Ans: Addition operator(+).
15)Which of the following declare an array of stringobjects? String[ ]s;
String []s:
String[ s]:
String s[ ]:
Ans : a, b and d
16)What is the value of a[3] as the result of the following arraydeclaration? 1
2
3
4
Ans : d
17)Which of the following are primitivetypes? byte
String integer Float Ans : a.
18)What is the range of the chartype? 0 to216
0 to 215
0 to216-1
0 to215-1
Ans. d
19)What are primitive datatypes?
Ans : byte, short, int, long float, double
boolean char
20)What are default values of different primitivetypes?
Ans : int – 0 short – 0
byte – 0 long – 0 l float – 0.0f
double – 0.0 d boolean – false char –null
21)Converting of primitive types to objects can beexplicitly. a)True
b)False
Ans: b.
22)How do we change the values of the elements of thearray?
Ans : The array subscript expression can be used to change the values of the elements of the array.
23)What is final varaible?
Ans : If a variable is declared as final variable, then you can not change its value. It becomes constant.
24)What is staticvariable?
Ans : Static variables are shared by all instances of a class.
Operators
1)What are operators and what are the various types of operators available inJava? Ans: Operators are special symbols used inexpressions.
Biwise operators, Comparison/Relational operators and Conditional operators
2)The ++ operator is used for incrementing and the — operator is usedfor decrementing.
a)True b)FalseAns:a.
3)Comparison/Logical operators are used for testing andmagnitude. a)True
b)FalseAns:a.
4)Character literals are stored as unicodecharacters. a)True
b)FalseAns:a.
5)What are the Logicaloperators?
Ans: OR(|), AND(&), XOR(^) AND NOT(~).
6)What is the %operator?
Ans : % operator is the modulo operator or reminder operator. It returns the reminder of dividing the first operand by second operand.
7)What is the value of 111 %13? 3
5
7
9
Ans : c.
8)Is &&= a validoperator? Ans :No.
9)Can a double value be cast to abyte? Ans :Yes
10)Can a byte object be cast to a double value?
Ans : No. An object cannot be cast to a primitive value.
11)What are order of precedence andassociativity?
Ans : Order of precedence the order in which operators are evaluated in expressions. Associativity determines whether an expression is evaluated left-right or right-left.
12)Which Java operator is rightassociativity? Ans : =operator.
13)What is the difference between prefix and postfix of — and ++ operators?
Ans : The prefix form returns the increment or decrement operation and returns the value of the increment or decrement operation.
The postfix form returns the current value of all of the expression and then performs the increment or decrement operation on that value.
14)What is the result of expression 5.45 +“3,2”? The double value8.6
The string “”8.6” The long value 8. The String “5.453.2” Ans : d
15)What are the values of x and y? x = 5; y =++x;
Ans : x = 6; y = 6
16)What are the values of x andz? x = 5; z =x++;
Ans : x = 6; z = 5
Control Statements
1)What are the programming constructs?
Ans: a) Sequential
b)Selection — if and switchstatements
c)Iteration — for loop, while loop and do-whileloop
2)class conditional{
public static void main(String args[]) { int i = 20;
int j = 55; int z = 0;
z = i < j ? i : j; // ternary operator System.out.println(“The value assigned is ” + z);
}
}
What is output of the above program? Ans: The value assigned is 20
3)The switch statement does not require abreak. a)True
b)FalseAns: b.
4)The conditional operator is otherwise known as the ternaryoperator. a)True
b)FalseAns:a.
5)The while loop repeats a set of code while the condition isfalse. a)True
b)FalseAns: b.
6)The do-while loop repeats a set of code atleast once before the condition istested. a)True
b)FalseAns:a.
7)What are difference between break andcontinue?
Ans: The break keyword halts the execution of the current loop and forces control out of the loop. The continue is similar to break, except that instead of halting the execution of the loop, it starts the next iteration.
8)The for loop repeats a set of statements a certain number of times until a condition ismatched. a)True
b)FalseAns:a.
9)Can a for statement loopindefintely? Ans :Yes.
10)What is the difference between while statement and a dostatement/
Ans : A while statement checks at the beginning of a loop to see whether the next loop iteration should occur.
A do statement checks at the end of a loop to see whether the next iteration of a loop should occur. The do statement will always execute the body of a loop at least once.
Introduction to Classes and Methods
1)Which is used to get the value of the instancevariables? Ans: Dot notation.
2)The new operator creates a single instance named class and returnsa reference to that object.
a)True b)FalseAns:a.
3)A class is a template for multiple objects with similarfeatures. a)True
b)FalseAns:a.
4)What is mean by garbagecollection?
Ans: When an object is no longer referred to by any variable, Java automatically reclaims memory used by that object. This is known as garbage collection.
5)What are methods and how are theydefined?
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.
Method definition has four parts. They are name of the method, type of object or primitive type the method returns, a list of parameters and the body of the method.
A method’s signature is a combination of the first three parts mentioned above.
6)What is callingmethod?
Ans: Calling methods are similar to calling or referring to an instance variable. These methodsare accessed using dotnotation.
Ex: obj.methodname(param1,param2)
7)Which method is used to determine the class of anobject?
Ans: getClass( ) method can be used to find out what class the belongs to. This class is defined in the object class and is available to all objects.
8)All the classes in java.lang package are automatically importedwhen a program iscompiled.
a)True b)FalseAns:a.
9)How can class be imported to aprogram?
Ans: To import a class, the import keyword should be used as shown.; import classname;
10)How can class be imported from a package to aprogram?
54)What is meant by “Passing by value” and ” Passing byreference”? Ans : objects – pass byreferrence
Methods – pass by value
55)Is a class a subclass ofitself? Ans : A class is a subclassitself.
56)What modifiers may be used with top-levelclass? Ans : public, abstract, final.
57)What is an example ofpolymorphism? Inner class
Anonymous classes Method overloading Method overriding Ans : c
Packages and interface
1)What are packages ? what is use of packages?
Ans :The package statement defines a name space in which classes are stored.If you omit the package, the classes are put into the default package.
Signature… package pkg;
Use: * It specifies to which package the classes defined in a file belongs to. * Package is both naming and a visibility control mechanism.
2)What is difference between importing “java.applet.Applet” and “java.applet.*;”?
Ans :”java.applet.Applet” will import only the class Applet from the package java.applet Where as “java.applet.*” will import all the classes from java.applet package.
3)What do you understand by package access specifier?
Ans : public: Anything declared as public can be accessed from anywhere private: Anything declared in the private can’t be seen outside of its class. default: It is visible to subclasses as well as to other classes in the same package.
4)What is interface? What is use ofinterface?
Ans : It is similar to class which may contain method’s signature only but not bodies.
Methods declared in interface are abstract methods. We can implement many interfaces on a class which support the multiple inheritance.
5)Is it is necessary to implement all methods in aninterface? Ans : Yes. All the methods have to beimplemented.
6)Which is the default access modifier for an interface method?
Ans : public.
7)Can we define a variable in an interface ?and what type it should be ?
Ans : Yes we can define a variable in an interface. They are implicitly final and static.
8)What is difference between interface and an abstractclass?
Ans : All the methods declared inside an Interface are abstract. Where as abstract class must have at least one abstract method and others may be concrete or abstract.
In Interface we need not use the keyword abstract for the methods.
9)By default, all program import the java.langpackage. True/False
Ans :True
10)Java compiler stores the .class files in the path specified inCLASSPATH environmentalvariable.
True/False Ans :False
11)User-defined package can also be imported just like the standardpackages. True/False
Ans :True
12)When a program does not want to handleexception,theclass is used. Ans :Throws
13)The main subclass of the Exceptionclassisclass. Ans : RuntimeException
14)Onlysubclassesofclass may be caught orthrown. Ans :Throwable
15)
Any user-defined exception class is a subclass ofthe Ans :Exception
16)The catch clause of the user-defined exception classshould Base class catchclause.
Ans : Exception
class.
its
17)Ais used to separate the hierarchy of the class while declaringan Importstatement.
Ans : Package
18)All standard classes of Java are included within apackagecalled. Ans :java.lang
19)All the classes in a package can be simultaneouslyimported using. Ans : *
20)Can you define a variable inside an Interface. If no, why? If yes,how? Ans.: YES. final andstatic
21)How many concrete classes can you have inside aninterface? Ans.:None
22)Can you extend aninterface? Ans.:Yes
23)Is it necessary to implement all the methods of an interface while implementing theinterface? Ans.:No
24)Ifyoudonotimplementallthe methodsofaninterface whileimplementing,what specifiershould you use for the class?
Ans.: abstract
25)How do you achieve multiple inheritance inJava? Ans: Usinginterfaces.
26)How to declare an interfaceexample?
Ans : access class classname implements interface.
27)Can you achieve multiple interface throughinterface? a)True
b) false Ans : a.
28)Can variables be declared in an interface ? If so, what are themodifiers? Ans : Yes. final and static are the modifiers can be declared in aninterface.
29)What are the possible access modifiers when implementing interfacemethods? Ans :public.
30)Can anonymous classes be implemented aninterface? Ans :Yes.
31)Interfaces can’t beextended. a)True
b)False Ans : b.
32)Name interfaces without a method? Ans : Serializable, Cloneble &Remote.
33)Is it possible to use few methods of an interface in a class ? If so,how? Ans : Yes. Declare the class asabstract.
Exception Handling
1)What is the difference between ‘throw’ and ‘throws’ ?And it’sapplication?
Ans : Exceptions that are thrown by java runtime systems can be handled by Try and catch blocks. With throw exception we can handle the exceptions thrown by the program itself. If a method is capable of causing an exception that it does not
handle, it must specify this behavior so the callers of the method can guard against that exception.
2)What is the difference between ‘Exception’ and ‘error’ injava?
Ans : Exception and Error are the subclasses of the Throwable class. Exception class is used for exceptional conditions that user program should catch. With exception class we can subclass to create our own custom exception.
Error defines exceptions that are not excepted to be caught by you program. Example is Stack Overflow.
3)What is ‘Resourceleak’?
Ans : Freeing up other resources that might have been allocated at the beginning of a method. 4)What is the ‘finally’ block?
Ans : Finally block will execute whether or not an exception is thrown. If an exception is thrown, the finally block will execute even if no catch statement match the exception. Any time a method is about to return to the caller from inside try/catch block, via an uncaught exception or an explicit return statement, the finally clause is also execute.
5)Can we have catch block with out try block? If sowhen? Ans : No. Try/Catch or Try/finally form aunit.
6)What is the difference between the followingstatements? Catch (Exceptione),
Catch (Error err), Catch (Throwable t) Ans :
7)What will happen to the Exception object after exceptionhandling? Ans : It will go for Garbage Collector. And frees thememory.
8)How many Exceptions we can define in ‘throws’clause? Ans : We can define multiple exceptions in throws clause. Signatureis..
type method-name (parameter-list) throws exception-list
9)The finally block is executed when an exception is thrown, even if no catch matchesit. True/False
Ans :True
10)The subclass exception should precede the base class exception when used within the catchclause. True/False
Ans :True
11)Exceptions can be caught or rethrown to a callingmethod. True/False
Ans :True
12)The statements following the throw keyword in a program are notexecuted. True/False
Ans :True
13)The toString ( ) method in the user-defined exception class isoverridden. True/False
Ans :True
MULTI THREADING
1)What are the two types ofmultitasking? Ans :1.process-based
2.Thread-based
2)What are the two ways to create thethread? Ans : 1.by implementingRunnable
2.by extending Thread
3)What is the signature of the constructor of a threadclass? Ans : Thread(Runnable threadob,StringthreadName)
4)What are all the methods available in the RunnableInterface? Ans :run()
5)What is the data type for the method isAlive() and this methodis available in whichclass?
Ans : boolean, Thread
6)What are all the methods available in the Threadclass? Ans :1.isAlive()
8)What is the mechanisam defind by java for the Resources to be used byonly one Thread at a time? Ans :Synchronisation
9)What is the procedure to own the moniter by manythreads? Ans : notpossible
10)What is the unit for 1000 in the belowstatement? ob.sleep(1000)
Ans : long milliseconds
11)What is the data type for the parameter of the sleep()method? Ans :long
12)What are all the values for the followinglevel? max-priority
min-priority normal-priority Ans :10,1,5
13)What is the method available for setting thepriority? Ans : setPriority()
14)What is the default thread at the time of starting theprogram? Ans : mainthread
15)The word synchronized can be used with only amethod. True/False
Ans :False
16)Which priority Thread can prompt the lower primaryThread? Ans : HigherPriority
17)How many threads at a time can access amonitor? Ans :one
18)What are all the four states associated in thethread? Ans : 1. new 2. runnable 3. blocked 4.dead
19)The suspend()method is used to teriminate athread? True/False
Ans : False
20)The run() method should necessary exists in clases created as subclass ofthread? True/False
Ans : True
21)When two threads are waiting on each other and can’t proceed the programe is said to be ina deadlock?
True/False Ans :True
22)Which method waits for the thread to die? Ans : join() method
23)Which of the following istrue?
1)wait(),notify(),notifyall() are defined as final & can be called only from with in asynchronized method
2)Among wait(),notify(),notifyall() the wait() method only throws IOException
3)wait(),notify(),notifyall() & sleep() are methods of objectclass 1
2
3
1 & 2
1,2 &3
Ans :D
24)Garbage collector thread belongs to whichpriority? Ans :low-priority
25)What is meant by timeslicing or timesharing?
Ans : Timeslicing is the method of allocating CPU time to individual threads in a priority schedule.
26)What is meant by daemon thread? In java runtime, what is it’srole?
Ans : Daemon thread is a low priority thread which runs intermittently in the background doing the garbage collection operation for the java runtime system.
Inheritance
1)What is the difference between superclass &subclass?
Ans : A super class is a class that is inherited whereas subclass is a class that does the inheriting.
2)Which keyword is used to inherit aclass? Ans :extends
3)Subclasses methods can access superclass members/ attributes at alltimes? True/False
Ans : False
4)When can subclasses not access superclassmembers? Ans : When superclass is declared asprivate.
5)Which class does begin Java classhierarchy? Ans : Objectclass
6)Object class is a superclass of all otherclasses? True/False
Ans :True
7)Java supports multipleinheritance? True/False
Ans : False
8)What isinheritance?
Ans : Deriving an object from an existing class. In the other words, Inheritance is the process of inheriting all the features from a class
9)What are the advantages ofinheritance?
Ans : Reusability of code and accessibility of variables and methods of the superclass by subclasses.
10)Which method is used to call the constructors of the superclass from thesubclass? Ans : super(argument)
11)Which is used to execute any method of the superclass from thesubclass? Ans : super.method-name(arguments)
12)Which methods are used to destroy the objects created by the constructormethods? Ans : finalize()
13)What are abstractclasses?
Ans : Abstract classes are those for which instances can’t be created.
14)What must a class do to implement aninterface?
Ans: It must provide all of the methods in the interface and identify the interface in its implements clause.
15)Which methods in the Object class are declared asfinal? Ans : getClass(), notify(), notifyAll(), andwait()
16)Final methods can beoverridden. True/False
Ans : False
17)Declaration of methods as final results in faster execution of theprogram? True/False
Ans: True
18)Final variables should be declared in thebeginning? True/False
Ans :True
19)Can we declare variable inside a method as final variables? Why? Ans : Cannot because, local variable cannot be declared as finalvariables.
20)Can an abstract class may befinal?
Ans : An abstract class may not be declared as final.
21)Does a class inherit the constructors of it’s superclass?
Ans: A class does not inherit constructors from any of it’s super classes.
22)What restrictions are placed on method overloading?
Ans: Two methods may not have the same name and argument list but different return types.
23)What restrictions are placed on method overriding?
Ans : Overridden methods must have the same name , argument list , and return type. The overriding method may not limit the access of the method it overridees.The overriding method may not throw any exceptions that may not be thrown by the overridden method.
24)What modifiers may be used with an inner class that is a member of an outerclass?
Ans : a (non-local) inner class may be declared as public, protected, private, static, final or abstract.
25)How this() is used withconstructors?
Ans: this() is used to invoke a constructor of the same class
26)How super() used withconstructors?
Ans : super() is used to invoke a super class constructor
27)Which of the following statements correctly describes aninterface? a)It’s a concreteclass
b)It’s asuperclass
c)It’s a type of abstractclass Ans:c
28)An interface contains methods a)Non-abstract
b)Implemented c)unimplemented Ans:c
STRINGHANDLING
Which package does define String and StringBufferclasses? Ans : java.langpackage.
Which method can be used to obtain the length of the String? Ans : length( ) method.
How do you concatenate Strings? Ans : By using ” + ” operator.
Which method can be used to compare two strings for equality? Ans : equals( ) method.
Which method can be used to perform a comparison between strings that ignores case differences? Ans : equalsIgnoreCase( ) method.
What is the use of valueOf( ) method?
Ans : valueOf( ) method converts data from its internal format into a human-readable form. What are the uses of toLowerCase( ) and toUpperCase( ) methods?
Ans : The method toLowerCase( ) converts all the characters in a string from uppercaseto lowercase.
The method toUpperCase( ) converts all the characters in a string from lowercaseto uppercase.
Which method can be used to find out the total allocated capacity of a StrinBuffer? Ans : capacity( ) method.
Which method can be used to set the length of the buffer within a StringBuffer object? Ans : setLength( ).
What is the difference between String and StringBuffer?
Ans : String objects are constants, whereas StringBuffer objects are not.
String class supports constant strings, whereas StringBuffer class supports growable, modifiable strings.
What are wrapper classes?
Ans : Wrapper classes are classes that allow primitive types to be accessed as objects. Which of the following is not a wrapper class?
String Integer Boolean Character Ans : a.
What is the output of the following program? public class Question {
public static void main(String args[]){ String s1 =“abc”;
Which of the following are legal operations? s3=s1 + s2;
s3=s1 – s2;
c) s3=s1 & s2
d) s3=s1 && s2 Ans : a.
19)Which of the following statements aretrue?
The String class is implemented as a char array, elements are addressed using the stringname[] convention
b)Strings are a primitive type in Java that overloads the + operator forconcatenation
c)Strings are a primitive type in Java and the StringBuffer is used as the matching wrappertype
d)The size of a string can be retrieved using the lengthproperty. Ans :b.
EXPLORING JAVA.LANG
java.lang package is automatically imported into all programs. True
False Ans : a
What are the interfaces defined by java.lang? Ans : Cloneable, Comparable and Runnable.
What are the constants defined by both Flaot and Double classes? Ans : MAX_VALUE,
MIN_VALUE, NaN,
POSITIVE_INFINITY, NEGATIVE_INFINITY and TYPE.
What are the constants defined by Byte, Short, Integer and Long? Ans : MAX_VALUE,
MIN_VALUE and TYPE.
What are the constants defined by both Float and Double classes? Ans : MAX_RADIX,
MIN_RADIX, MAX_VALUE,
MIN_VALUE and TYPE.
What is the purpose of the Runtime class?
Ans : The purpose of the Runtime class is to provide access to the Java runtime system. What is the purpose of the System class?
Ans : The purpose of the System class is to provide access to system resources. Which class is extended by all other classes?
Ans : Object class is extended by all other classes.
Which class can be used to obtain design information about an object?
Ans : The Class class can be used to obtain information about an object’s design. Which method is used to calculate the absolute value of a number?
Ans : abs( ) method. What are E and PI?
Ans : E is the base of the natural logarithm and PI is the mathematical value pi. Which of the following classes is used to perform basic console I/O?
System SecurityManager Math
Runtime Ans : a.
Which of the following are true?
The Class class is the superclass of the Object class. The Object class is final.
The Class class can be used to load other classes.
The ClassLoader class can be used to load other classes. Ans : c and d.
Which of the following methods are methods of the Math class? absolute( )
log( ) cosine( ) sine( )
Ans : b.
Which of the following are true about the Error and Exception classes? Both classes extend Throwable.
The Error class is final and the Exception class is not. The Exception class is final and the Error is not.
Both classes implement Throwable. Ans : a.
Which of the following are true?
The Void class extends the Class class. The Float class extends the Double class.
The System class extends the Runtime class. The Integer class extends the Number class. Ans : d.
17)Which of the following will output-4.0System.out.println(Math.floor(-4.7)); System.out.println(Math.round(-4.7)); System.out.println(Math.ceil(-4.7));
d) System.out.println(Math.Min(-4.7)); Ans : c.
18)Which of the following are validstatements
a)public class MyCalc extendsMath
b)Math.max(s);
c)Math.round(9.99,1);
d)Math.mod(4,10);
e)None of theabove.
Ans : e.
19)What will happen if you attempt to compile and run the followingcode? Integer ten=newInteger(10);
Long nine=new Long (9); System.out.println(ten + nine); int i=1;
System.out.println(i +ten); 19 followed by20
19 followed by11
Error: Can’t convert java lang Integer
d) 10 followed by 1
Ans : c.
INPUT / OUTPUT : EXPLORING JAVA.IO
What is meant by 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. They are:
Byte Streams : Byte Streams provide a convenient means for handling input and output of bytes. Character Streams : Character Streams provide a convenient means for handling input and output of characters.
Byte Stream classes : Byte Streams are defined by using two abstract classes. Theyare:InputStream and OutputStream.
Character Stream classes : Character Streams are defined by using two abstract classes. They are: Reader andWriter.
Which of the following statements are true? UTF characters are all 8-bits.
UTF characters are all 16-bits. UTF characters are all 24-bits. Unicode characters are all 16-bits. Bytecode characters are all16-bits. Ans :d.
Which of the following statements are true?
When you construct an instance of File, if you do not use the filenaming semantics of the local machine, the constructor will throw an IOException.
When you construct an instance of File, if the corresponding file does not exist on the local file system, one will be created.
When an instance of File is garbage collected, the corresponding file on the local file system is deleted. None of the above.
Ans : a,b and c.
The File class contains a method that changes the current working directory. True
False Ans : b.
It is possible to use the File class to list the contents of the current working directory. True
False Ans : a.
Readers have methods that can read and return floats and doubles. True
False Ans : b.
You execute the code below in an empty directory. What is the result? File f1 = new File(“dirname”);
File f2 = new File(f1, “filename”);
A new directory called dirname is created in the current working directory.
A new directory called dirname is created in the current working directory. A new file called filename is created in directory dirname.
A new directory called dirname and a new file called filename are created, both in the current working directory.
A new file called filename is created in the current working directory. No directory is created, and no file is created.
Ans : e.
What is the difference between the Reader/Writer class hierarchy and the InputStream/OutputStream class hierarchy?
Ans : The Reader/Writer class hierarchy is character-oriented and the InputStream/OutputStream class hierarchy is byte-oriented.
What is an I/O filter?
Ans : An I/O filter is an object that reads from one stream and writes to another, usually altering the data in some way as it is passed from one stream to another.
What is the purpose of the File class?
Ans : The File class is used to create objects that provide access to the files and directories of a local file system.
What interface must an object implement before it can be written to a stream as an object?
Ans : An object must implement the Serializable or Externalizable interface before it can be written to a stream as an object.
What is the difference between the File and RandomAccessFile classes?
Ans : The File class encapsulates the files and directories of the local file system. The RandomAccessFile class provides the methods needed to directly access data contained in any part of a file.
What class allows you to read objects directly from a stream?
Ans : The ObjectInputStream class supports the reading of objects from input streams. What value does read( ) return when it has reached the end of a file?
Ans : The read( ) method returns – 1 when it has reached the end of a file. What value does readLine( ) return when it has reached the end of a file?
Ans : The readLine( ) method returns null when it has reached the end of a file.
How many bits are used to represent Unicode, ASCII, UTF-16 and UTF-8 characters?
Ans : Unicode requires 16-bits and ASCII requires 8-bits. Although the ASCII character set uses only 1-bits, it is usually represented as 8-bits. UTF-8 represents characters using 8, 16 and 18-bit patterns. UTF-16 uses 16-bit and larger bit patterns.
Which of the following are true?
The InputStream and OutputStream classes are byte-oriented.
The ObjectInputStream and ObjectOutputStream do not support serialized object input and output. The Reader and Writer classes are character-oriented.
The Reader and Writer classes are the preferred solution to serialized object output. Ans : a and c.
Which of the following are true about I/O filters? Filters are supported on input, but not on output.
Filters are supported by the InputStream/OutputStream class hierarchy, but not by the Reader/Writer class hierarchy.
Filters read from one stream and write to another.
A filter may alter data that is read from one stream and written to another. Ans : c and d.
Which of the following are true?
Any Unicode character is represented using 16-bits. 7-bits are needed to represent any ASCII character. UTF-8 characters are represented using only 8-bits.
UTF-16 characters are represented using only 16-bits. Ans : a and b.
Which of the following are true?
The Serializable interface is used to identify objects that may be written to an output stream.
The Externalizable interface is implemented by classes that control the way in which their objects are serialized.
The Serializable interface extends the Externalizable interface. The Externalizable interface extends the Serializable interface. Ans : a, b and d.
Which of the following are true about the File class?
A File object can be used to change the current working directory. A File object can be used to access the files in the current directory.
When a File object is created, a corresponding directory or file is created in the local file system. File objects are used to access files and directories on the local file system.
File objects can be garbage collected.
When a File object is garbage collected, the corresponding file or directory is deleted. Ans : b, d and e.
How do you create a Reader object from an InputStream object? Use the static createReader( ) method of InputStream class.
Use the static createReader( ) method of Reader class.
Create an InputStreamReader object, passing the InputStream object as an argument to the InputStreamReader constructor.
Create an OutputStreamReader object, passing the InputStream object as an argument to the OutputStreamReader constructor.
Ans : c.
Which of the following are true?
Writer classes can be used to write characters to output streams using different character encodings. Writer classes can be used to write Unicode characters to output streams.
Writer classes have methods that support the writing of the values of any Java primitive type to output streams.
Writer classes have methods that support the writing of objects to output streams. Ans : a and b.
The isFile( ) method returns a boolean value depending on whether the file object is a file or a directory.
True.
False.
Ans : a.
Reading or writing can be done even after closing the input/output source. True.
False.
Ans : b.
Themethod helps in clearing the buffer. Ans : flush( ).
The System.err method is used to print error message. True.
False.
Ans : a.
What is meant by StreamTokenizer?
Ans : StreamTokenizer breaks up InputStream into tokens that are delimited by sets of characters. It has the constructor : StreamTokenizer(Reader inStream).
Here inStream must be some form of Reader. What is Serialization and deserialization?
Ans : Serialization is the process of writing the state of an object to a byte stream. Deserialization is the process of restoring these objects.
30)Which of the following can you perform using the Fileclass?
a)Change the currentdirectory
b)Return the name of the parentdirectory
c)Delete afile
d)Find if a file contains text or binaryinformation Ans : b andc.
31)How can you change the current working directory using an instance of the File classcalled FileName?
The File class does not support directly changing the current directory. Ans : d.
EVENT HANDLING
The event delegation model, introduced in release 1.1 of the JDK, is fully compatible with the event model.
True False Ans : b.
A component subclass that has executed enableEvents( ) to enable processing of a certain kind of event cannot also use an adapter as a listener for the same kind of event.
True False Ans : b.
What is the highest-level event class of the event-delegation model?
Ans : The java.util.eventObject class is the highest-level class in the event-delegation hierarchy. What interface is extended by AWT event listeners?
Ans : All AWT event listeners extend the java.util.EventListener interface. What class is the top of the AWT event hierarchy?
Ans : The java.awt.AWTEvent class is the highest-level class in the AWT event class hierarchy. What event results from the clicking of a button?
Ans : The ActionEvent event is generated as the result of the clicking of a button. What is the relationship between an event-listener interface and an event-adapterclass?
Ans : An event-listener interface defines the methods that must be implemented by an event handler for a particular kind of event.
An event adapter provides a default implementation of an event-listener interface.
In which package are most of the AWT events that support the event-delegation model defined? Ans : Most of the AWT–related events of the event-delegation model are defined in the java.awt.event package. The AWTEvent class is defined in the java.awt package.
What is the advantage of the event-delegation model over the earlier event-inheritance model? Ans : The event-delegation has two advantages over the event-inheritance model. They are :
It enables event handling by objects other than the ones that generate the events. This allows a clean separation between a component’s design and its use.
It performs much better in applications where many events are generated. This performance improvement is due to the fact that the event-delegation model does not have to repeatedly process unhandled events, as is the case of the event-inheritance model.
What is the purpose of the enableEvents( ) method?
Ans :The enableEvents( ) method is used to enable an event for a particular object. Which of the following are true?
The event-inheritance model has replaced the event-delegation model.
The event-inheritance model is more efficient than the event-delegation model.
The event-delegation model uses event listeners to define the methods of event-handling classes. The event-delegation model uses the handleEvent( ) method to support event handling.
Ans : c.
Which of the following is the highest class in the event-delegation model? java.util.EventListener
java.util.EventObject java.awt.AWTEvent java.awt.event.AWTEvent Ans : b.
When two or more objects are added as listeners for the same event, which listener is first invoked to handle the event?
The first object that was added as listener. The last object that was added as listener.
There is no way to determine which listener will be invokedfirst. It is impossible to have more than one listener for a given event. Ans :c.
Which of the following components generate actionevents? Buttons
Labels Check boxes Windows Ans :a.
Which of the following are true?
A TextField object may generate anActionEvent. A TextArea object may generate an ActionEvent. A Button object may generate anActionEvent.
A MenuItem object may generate anActionEvent. Ans : a,c andd.
Which of the following are true?
The MouseListener interface defines methods for handling mouse clicks.
The MouseMotionListener interface defines methods for handling mouse clicks. The MouseClickListener interface defines methods for handling mouse clicks.
The ActionListener interface defines methods for handling the clicking of a button. Ans : a and d.
Suppose that you want to have an object eh handle the TextEvent of a TextArea object t. How should you add eh as the event handler for t?
t.addTextListener(eh); eh.addTextListener(t); addTextListener(eh.t); addTextListener(t,eh); Ans : a.
What is the preferred way to handle an object’s events in Java 2? Override the object’s handleEvent( ) method.
Add one or more event listeners to handle the events. Have the object override its processEvent( ) methods. Have the object override its dispatchEvent( ) methods. Ans : b.
Which of the following are true?
A component may handle its own events by adding itself as an event listener.
A component may handle its own events by overriding its event-dispatching method. A component may not handle oits own events.
A component may handle its own events only if it implements the handleEvent( ) method. Ans : a and b.
APPLETS
What is an Applet? Should applets have constructors?
Ans : Applet is a dynamic and interactive program that runs inside a Web page
displayed by a Java capable browser. We don’t have the concept of Constructors in Applets.
How do we read number information from my applet’s parameters, given that Applet’s getParameter() method returns a string?
Ans : Use the parseInt() method in the Integer Class, the Float(String) constructor in the
Class Float, or the Double(String) constructor in the class Double.
How can I arrange for different applets on a web page to communicate with eachother? Ans : Name your applets inside the Applet tag and invoke AppletContext’s getApplet() method in your applet code to obtain references to the other applets on thepage.
How do I select a URL from my Applet and send the browser to that page?
Ans : Ask the applet for its applet context and invoke showDocument() on that contextobject. Eg. URLtargetURL;
String URLString
AppletContext context = getAppletContext(); try{
targetUR L = new URL(URLString);
} catch (Malformed URLException e){
// Code for recover from theexception
}
context. showDocument(targetURL);
Can applets on different pages communicate with each other?
Ans : No. Not Directly. The applets will exchange the information at one meeting place either on the local file system or at remote system.
How do Applets differ from Applications? Ans : Appln: Stand Alone
Applet: Needs no explicit installation on local m/c. Appln: Execution starts with main() method.
Applet: Execution starts with init() method. Appln: May or may not be a GUI
Applet: Must run within a GUI (Using AWT)
How do I determine the width and height of my application?
Ans : Use the getSize() method, which the Applet class inherits from the Component class in the Java.awt package. The getSize() method returns the size of the applet as a Dimension object, from which you extract separate width, height fields.
Eg. Dimension dim = getSize (); int appletwidth = dim.width ();
8) What is AppletStub Interface?
Ans : The applet stub interface provides the means by which an applet and the browser communicate. Your code will not typically implement this interface.
It is essential to have both the .java file and the .html file of an applet in the same directory.
True.
False.
Ans : b.
The tag contains twoattributesnamelyand. Ans : Name ,value.
Passing values to parameters is doneinthefile of an applet. Ans :.html.
12) What tags are mandatory when creating HTML to display an applet name, height, width
code, name
codebase, height, width
d) code, height, width Ans : d.
Applet’s getParameter( ) method can be used to get parameter values. True.
False.
Ans : a.
What are the Applet’s Life Cycle methods? Explain them?
Ans : init( ) method – Can be called when an applet is first loaded.
start( ) method – Can be called each time an applet is started.
paint( ) method – Can be called when the applet is minimized or refreshed. stop( ) method – Can be called when the browser moves off the applet’s page. destroy( ) method – Can be called when the browser is finished with the applet. What are the Applet’s information methods?
Ans : getAppletInfo( ) method : Returns a string describing the applet, its author ,copy right information, etc.
getParameterInfo( ) method : Returns an array of string describing the applet’s parameters. All Applets are subclasses of Applet.
True.
False.
Ans : a.
All Applets must import java.applet and java.awt. True.
False.
Ans : a.
What are the steps involved in Applet development? Ans : a) Edit a Java source file,
b)Compile your programand
c)Execute the appletviewer, specifying the name of your applet’s sourcefile. Applets are executed by the console based Java run-timeinterpreter.
True.
False.
Ans : b.
Which classes and interfaces does Applet class consist?
Ans : Applet class consists of a single class, the Applet class and three interfaces: AppletContext, AppletStub and AudioClip.
What is the sequence for calling the methods by AWT for applets?
Ans : When an applet begins, the AWT calls the following methods, in this sequence. init( )
start( ) paint()
When an applet is terminated, the following sequence of method cals takes place: stop()
destroy( )
Which method is used to output a string to an applet? Ans : drawString ( ) method.
Every color is created from an RGB value. True.
False Ans : a.
AWT : WINDOWS, GRAPHICS AND FONTS
How would you set the color of a graphics context called g to cyan? g.setColor(Color.cyan);
g.setCurrentColor(cyan); g.setColor(“Color.cyan”); g.setColor(“cyan’); g.setColor(new Color(cyan)); Ans : a.
The code below draws a line. What color is the line? g.setColor(Color.red.green.yellow.red.cyan); g.drawLine(0, 0, 100,100);
Red Green
Yellow Cyan Black Ans : d.
What does the following code draw? g.setColor(Color.black); g.drawLine(10, 10, 10, 50); g.setColor(Color.RED); g.drawRect(100, 100, 150, 150);
A red vertical line that is 40 pixels long and a red square with sides of 150 pixels A black vertical line that is 40 pixels long and a red square with sides of 150 pixels A black vertical line that is 50 pixels long and a red square with sides of 150 pixels A red vertical line that is 50 pixels long and a red square with sides of 150 pixels A black vertical line that is 40 pixels long and a red square with sides of 100 pixel Ans :b.
Which of the statements below are true? A polyline is always filled.
b)A polyline can not befilled.
c)A polygon is alwaysfilled.
d)A polygon is alwaysclosed
e)A polygon may be filled or notfilled Ans : b, d ande.
What code would you use to construct a 24-point bold serif font? new Font(Font.SERIF, 24,Font.BOLD);
new Font(“SERIF”, 24, BOLD”); new Font(“BOLD “,24,Font.SERIF); new Font(“SERIF”, Font.BOLD,24); new Font(Font.SERIF, “BOLD”,24); Ans :d.
What does the following paint( ) method draw? Public void paint(Graphics g) { g.drawString(“question #6”,10,0);
}
The string “question #6”, with its top-left corner at 10,0
A little squiggle coming down from the top of the component, a little way in from the left edge Ans : b.
What does the following paint( ) method draw? Public void paint(Graphics g) { g.drawString(“question #6”,10,0);
}
A circle at (100, 100) with radius of44
A circle at (100, 44) with radius of100
A circle at (100, 44) with radius of 44 The code does not compile
Ans : d.
8)What is relationship between the Canvas class and the Graphics class?
Ans : A Canvas object provides access to a Graphics object via its paint( ) method. What are the Component subclasses that support painting.
Ans : The Canvas, Frame, Panel and Applet classes support painting. What is the difference between the paint( ) and repaint( ) method?
Ans : The paint( ) method supports painting via a Graphics object. The repaint( ) method is used to cause paint( ) to be invoked by the AWT painting method.
What is the difference between the Font and FontMetrics classes?
Ans : The FontMetrics class is used to define implementation-specific properties, such as ascent
and descent, of a Font object.
Which of the following are passed as an argument to the paint( ) method? A Canvas object
A Graphics object An Image object A paint object Ans :b.
Which of the following methods are invoked by the AWT to support paint and repaintoperations? paint()
repaint( ) draw( ) redraw( ) Ans :a.
Which of the following classes have a paint( )method? Canvas
Image Frame Graphics
Ans : a and c.
Which of the following are methods of the Graphics class? drawRect( )
drawImage( ) drawPoint( ) drawString( ) Ans : a, b and d.
Which Font attributes are available through the FontMetricsclass? ascent
leading case height
Ans : a, b and d.
Which of the following aretrue?
The AWT automatically causes a window to be repainted when a portion of a window hasbeen minimized and thenmaximized.
The AWT automatically causes a window to be repainted when a portion of a window has been covered and then uncovered.
The AWT automatically causes a window to be repainted when application data is changed. The AWT does not support repainting operations.
Ans : a and b.
Which method is used to size a graphics object to fit the current size of the window? Ans : getSize( ) method.
What are the methods to be used to set foreground and background colors? Ans : setForeground( ) and setBackground( ) methods.
19)You have created a simple Frame and overridden the paint method asfollows public void paint(Graphicsg){
g.drawString(“Dolly”,50,10);
}
What will be the result when you attempt to compile and run the program?
The string “Dolly” will be displayed at the centre of the frame
b)An error at compilation complaining at the signature of the paintmethod
c)The lower part of the word Dolly will be seen at the top of the form, with the tophidden.
d)The string “Dolly” will be shown at the bottom of theform Ans :c.
20)Where g is a graphics instance what will the following code draw on thescreen.
g.fillArc(45,90,50,50,90,180);
a)An arc bounded by a box of height 45, width 90 with a centre point of 50,50,starting at an angle of 90 degrees traversing through 180 degrees counterclockwise.
b)An arc bounded by a box of height 50, width 50, with a centre point of 45,90starting at an angle of 90 degrees traversing through 180 degreesclockwise.
c)An arc bounded by a box of height 50, width 50, with a top left at coordinates of 45, 90, starting at 90 degrees and traversing through 180 degrees counterclockwise.
d)An arc starting at 45 degrees, traversing through 90 degrees clockwise bounded bya box of height 50, width 50 with a centre point of 90,180.
Ans : c.
21)Given the following code importjava.awt.*;
public class SetF extends Frame{ public static void main(String argv[]){ SetF s = new SetF(); s.setSize(300,200);
s.setVisible(true);
}
}
How could you set the frame surface color to pink a)s.setBackground(Color.pink); b)s.setColor(PINK);
c)s.Background(pink); d)s.color=Color.pink Ans : a.
AWT: CONTROLS, LAYOUT MANAGERS AND MENUS
What is meant by Controls and what are different types of controls?
Ans : Controls are componenets that allow a user to interact with your application. The AWT supports the following types of controls:
Labels
Push buttons Check boxes Choice lists Lists
Scroll bars
Text components
These controls are subclasses of Component.
You want to construct a text area that is 80 character-widths wide and 10 character-heights tall. What code do you use?
new TextArea(80, 10)
new TextArea(10, 80) Ans: b.
A text field has a variable-width font. It is constructed by calling new TextField(“iiiii”). What happens if you change the contents of the text field to
“wwwww”? (Bear in mind that is one of the narrowest characters, and w is one of the widest.) The text field becomes wider.
The text field becomes narrower.
The text field stays the same width; to see the entire contents you will have to scroll by using the ß and à keys.
The text field stays the same width; to see the entire contents you will have to scroll by using the text field’s horizontal scroll bar.
Ans : c.
The CheckboxGroup class is a subclass of the Component class. True
False Ans : b.
5)What are the immediate super classes of the followingclasses?
a)Container class
b)MenuComponentclass
c)Dialogclass
d)Appletclass
e)Menuclass
Ans : a) Container – Component
b)MenuComponent –Object
c)Dialog –Window
d)Applet –Panel
e)Menu –MenuItem
6)What are the SubClass of TextcomponentClass?Ans : TextField andTextArea
7)Which method of the component class is used to set the position and the size of acomponent? Ans : setBounds()
8)Which TextComponent method is used to set a TextComponent to the read-onlystate? Ans : setEditable()
9)How can the Checkbox class be used to create a radiobutton? Ans : By associating Checkbox objects with aCheckboxGroup.
10)What Checkbox method allows you to tell if a Checkbox is checked? Ans : getState()
11)Which Component method is used to access a component’s immediateContainer? getVisible()
getImmediate getParent() getContainer Ans : c.
12)What methods are used to get and set the text label displayed by a Buttonobject? Ans : getLabel( ) and setLabel()
13)What is the difference between a Choice and aList?
Ans : A Choice is displayed in a compact form that requires you to pull it down to see the list of available choices. Only one item may be selected from a Choice.
A List may be displayed in such a way that several List items are visible. A List supports the selection of one or more List items.
14)Which Container method is used to cause a container to be laid out andredisplayed? Ans : validate()
15)What is the difference between a Scollbar and aScrollpane? Ans : A Scrollbar is a Component, but not aContainer.
A Scrollpane is a Container and handles its own events and performs its own scrolling.
16)Which Component subclass is used for drawing andpainting? Ans : Canvas.
17)Which of the following are direct or indirect subclasses ofComponent? Button
Label CheckboxMenuItem Toolbar
Frame
Ans : a, b and e.
18)Which of the following are direct or indirect subclasses ofContainer? Frame
TextArea
MenuBar FileDialog Applet
Ans : a,d and e.
19)Which method is used to set the text of a Labelobject? setText()
setLabel( ) setTextLabel( ) setLabelText( ) Ans : a.
20)Which constructor creates a TextArea with 10 rows and 20columns? new TextArea(10,20)
new TextArea(20,10)
new TextArea(new Rows(10), new columns(20)) new TextArea(200)
Ans : a.
(Usage is TextArea(rows, columns)
21)Which of the following creates a List with 5 visible items and multiple selectionenabled? new List(5,true)
new List(true, 5) new List(5, false) new List(false,5) Ans : a.
[Usage is List(rows, multipleMode)]
22)Which are true about the Container class?
The validate( ) method is used to cause a Container to be laid out and redisplayed. The add( ) method is used to add a Component to a Container.
The getBorder( ) method returns information about a Container’s insets.
The getComponent( ) method is used to access a Component that is contained in a Container. Ans : a, b and d.
23)SupposeaPanelisaddedtoaFrameand aButtonisadded tothePanel.IftheFrame’sfontissetto 12-point TimesRoman, the Panel’s font is set to 10-point TimesRoman, and the Button’s font is not set, what font will be used to dispaly the Button’slabel?
12-point TimesRoman 11-point TimesRoman 10-point TimesRoman 9-point TimesRoman Ans : c.
A Frame’s background color is set to Color.Yellow, and a Button’s background color is to Color.Blue. Suppose the Button is added to a Panel, which is added to the Frame. What background color will be used with the Panel?
Colr.Yellow Color.Blue Color.Green Color.White Ans : a.
25)Which method will cause a Frame to bedisplayed? show()
setVisible( ) display( ) displayFrame( ) Ans : a and b.
26)All the componenet classes and container classes arederivedfromclass. Ans :Object.
27)Which method of the container class can be used to add components to aPanel. Ans : add ( )method.
28)What are the subclasses of the Containerclass?
Ans : The Container class has three major subclasses. They are :
30)The List component does not generate anyevents. True.
False.
Ans : b.
31)Which components are used to get text input from theuser. Ans : TextField and TextArea.
32)Which object is needed to group Checkboxes to make themexclusive? Ans : CheckboxGroup.
33)Which of the following components allow multipleselections? Non-exclusiveCheckboxes.
Radio buttons. Choice.
List.
Ans : a and d.
34)What are the types of Checkboxes and what is the difference betweenthem?
Ans : Java supports two types of Checkboxes. They are : Exclusive and Non-exclusive.
In case of exclusive Checkboxes, only one among a group of items can be selected at a time. I f an item from the group is selected, the checkbox currently checked is deselected and the new selection is highlighted. The exclusive Checkboxes are also called as Radio buttons.
The non-exclusive checkboxes are not grouped together and each one can be selected independent of the other.
35)WhatisaLayoutManagerand whatarethedifferent LayoutManagersavailableinjava.awtand what is the default Layout manager for the panal and the panalsubclasses?
Ans: A layout Manager is an object that is used to organize components in a container. The different layouts available in java.awt are :
FlowLayout, BorderLayout, CardLayout, GridLayout and GridBag Layout. The default Layout Manager of Panal and Panal sub classes is FlowLayout”.
36)Can I exert control over the size and placement of components in myinterface? Ans :Yes.
40)Can I create a non-resizable windows? If so, how? Ans: Yes. By using setResizable() method in classFrame.
41)What is the default Layout Manager for the Window and Window subclasses(Frame,Dialog)? Ans :BorderLayout().
42)How are the elements of different layoutsorganized?
Ans : FlowLayout : The elements of a FlowLayout are organized in a top to bottom, left to right fashion.
BorderLayout : The elements of a BorderLayout are organized at the borders (North, South, East and West) and the center of a
container.
CardLayout : The elements of a CardLayout are stacked, one on top of the other, like a deck of cards. GridLayout : The elements of a GridLayout are of equal size and are laid out using the square of a grid. GridBagLayout : The elements of a GridBagLayout are organized according to a grid.However, the elements are of different sizes and may occupy
more than one row or column of the grid. In addition, the rows and columns may have different sizes.
43)Which containers use a BorderLayout as their defaultlayout?
Ans : The Window, Frame and Dialog classes use a BorderLayout as their default layout.
44)Which containers use a FlowLayout as their defaultlayout?
Ans : The Panel and the Applet classes use the FlowLayout as their default layout.
45)What is the preferred size of acomponent?
Ans : The preferred size of a component size that will allow the component to display normally.
46)Which method is method to set the layout of acontainer? startLayout()
initLayout( ) layoutContainer( ) setLayout( )
Ans : d.
47)Which method returns the preferred size of acomponent? getPreferredSize( )
getPreferred( ) getRequiredSize( ) getLayout( )
Ans : a.
48)Which layout should you use to organize the components of a container ina tabular form?
CardLayout BorederLayout FlowLayout GridLayout Ans : d.
An application has a frame that uses a Border layout manager. Why is it probably not a good idea to put a vertical scroll bar at North in the frame?
The scroll bar’s height would be its preferred height, which is not likely to be enough.
The scroll bar’s width would be the entire width of the frame, which would be much wider than necessary.
Both a and b.
Neither a nor b. There is no problem with the layout as described. Ans : c.
What is the default layouts for a applet, a frame and a panel?
Ans : For an applet and a panel, Flow layout is the default layout, whereas Border layout is default layout for a frame.
If a frame uses a Grid layout manager and does not contain any panels, then all the components within the frame are the same width and height.
True False. Ans : a.
If a frame uses its default layout manager and does not contain any panels, then all the components within the frame are the same width and height.
True False. Ans : b.
With a Border layout manager, the component at Center gets all the space that is left over, after the components at North and South have been considered.
True False Ans : b.
An Applet has its Layout Manager set to the default of FlowLayout. What code would be the correct to change to another Layout Manager?
Assuming a method contains code which may raise an Exception (but not a RuntimeException), what is the correct way for a method to indicate that it expects the caller to handle that exception:
1)throwException
2)throwsException
3)newException
4)Don’t need to specifyanything Answer : 2
What is the result of executing the following code, using the parameters 4 and 0: public void divide(int a, int b) {
What is the permanent effect on the file system of writing data to a new FileWriter(“report”), given the file report already exists?
1)The data is appended to thefile
2)The file is replaced with a new file
3)An exception is raised as the file alreadyexists
4)The data is written to random locations within thefile Answer : 2
What is the effect of adding the sixth element to a vector created in the following manner: new Vector(5, 10);
1)An IndexOutOfBounds exception israised.
2)The vector grows in size to a capacity of 10elements
3)The vector grows in size to a capacity of 15elements
4)Nothing, the vector will have grown when the fifth element wasadded Answer : 3
What is the result of executing the following code when the value of x is 2: switch (x) {
case1:
System.out.println(1); case2:
case3:
System.out.println(3); case4:
System.out.println(4);
}
1)Nothing is printedout
2)The value 3 is printed out
3)The values 3 and 4 are printedout
4)The values 1, 3 and 4 are printedout Answer : 3
What is the result of compiling and running the Second class? Consider the following example:
class First {
public First (String s) { System.out.println(s);
}
}
public class Second extends First { public static void main(String args []) { new Second();
}
}
1)Nothing happens
2)A string is printed to the standardout
3)An instance of the class First isgenerated
4)An instance of the class Second iscreated
5)An exception is raised at runtime stating that there is no null parameter constructor in classFirst.
6)The class second will not compile as there is no null parameter constructor in the classFirst Answer : 6
What is the result of executing the following fragment of code: boolean flag = false;
if (flag = true) { System.out.println(“true”);
} else { System.out.println(“false”);
}
1)true is printed to standardout
2)false is printed to standard out
3)An exception israised
4)Nothing happensAnswer : 1
Consider the following classes. What is the result of compiling and running this class? public class Test {
public static void test() { this.print();
}
public static void print() { System.out.println(“Test”);
}
public static void main(String args []) { test();
}
}
(multiple)
1)The string Test is printed to the standard out.
2)A runtime exception is raised stating that an object has not beencreated.
3)Nothing is printed to the standard output.
4)An exception is raised stating that the method test cannot befound.
5)An exception is raised stating that the variable this can only be used within aninstance.
6)The class fails to compile stating that the variable this isundefined. Answer : 6
Examine the following class definition:
public class Test { public static void test() { print();
}
public static void print() { System.out.println(“Test”);
}
public void print() { System.out.println(“Another Test”);
}
}
What is the result of compiling this class:
1)A successfulcompilation.
2)A warning stating that the class has no mainmethod.
3)An error stating that there is a duplicatedmethod.
4)An error stating that the method test() will call one or other of the print()methods. Answer : 3
What is the result of compiling and executing the following Java class: public class ThreadTest extends Thread {
public void run() { System.out.println(“In run”); suspend();
resume(); System.out.println(“Leaving run”);
}
public static void main(String args []) { (new ThreadTest()).start();
}
}
1)Compilation will fail in the methodmain.
2)Compilation will fail in the methodrun.
3)A warning will be generated for method run.
4)The string “In run” will be printed to standardout.
5)Both strings will be printed to standardout.
6)Nothing willhappen. Answer : 4
Given the following sequence of Java statements, Which of the following options are true:
1.StringBuffer sb = newStringBuffer(“abc”);
2.String s = newString(“abc”);
3.sb.append(“def”);
4.s.append(“def”);
5.sb.insert(1,“zzz”);
6.s.concat(sb);
7.s.trim();(multiple)
1)The compiler would generate an error for line1.
2)The compiler would generate an error for line2.
3)The compiler would generate an error for line3.
4)The compiler would generate an error for line4.
5)The compiler would generate an error for line5.
6)The compiler would generate an error for line6.
7)The compiler would generate an error for line7. Answer : 4,6
What is the result of executing the following Java class:
import java.awt.*;
public class FrameTest extends Frame { public FrameTest() {
add (new Button(“First”)); add (new Button(“Second”)); add (new Button(“Third”)); pack();
setVisible(true);
}
public static void main(String args []) { new FrameTest();
}
}
1)Nothing happens.
2)Three buttons are displayed across awindow.
3)A runtime exception is generated (no layout managerspecified).
4)Only the “first” button isdisplayed.
5)Only the “second” button isdisplayed.
6)Only the “third” button isdisplayed.Answer : 6
Consider the following tags and attributes of tags, which can be used with the and
tags?
1.CODEBASE
2.ALT
3.NAME
4.CLASS
5.JAVAC
6.HORIZONTALSPACE
7.VERTICALSPACE
8.WIDTH
9.PARAM
10.JAR(multiple)
1) line 1, 2, 3
2) line 2, 5, 6, 7
3) line 3, 4, 5
4) line 8, 9, 10
5) line 8, 9 Answer : 1,5
Which of the following is a legal way to construct a RandomAccessFile:
1)RandomAccessFile(“data”,“r”);
2)RandomAccessFile(“r”,“data”);
3)RandomAccessFile(“data”,“read”);
4)RandomAccessFile(“read”, “data”); Answer : 1
Carefully examine the following code, When will the string “Hi there” be printed? public class StaticTest {
static {
System.out.println(“Hi there”);
}
public void print() { System.out.println(“Hello”);
}
public static void main(String args []){ StaticTest st1 = new StaticTest(); st1.print();
StaticTest st2 = new StaticTest(); st2.print();
}
}
1)Never.
2)Each time a new instance iscreated.
3)Once when the class is first loaded into the Java virtualmachine.
4)Only when the static method is calledexplicitly.Answer : 3
What is the result of the following program:
public class Test {
public static void main (String args []) { boolean a = false;
if (a = true) System.out.println(“Hello”); else System.out.println(“Goodbye”);
}
}
1)Program produces no output but terminatescorrectly.
2)Program does notterminate.
3)Prints out“Hello”
4)Prints out“Goodbye” Answer : 3
Examine the following code, it includes an inner class, what is the result: public final class Test4 {
class Inner { void test() {
if (Test4.this.flag); {
sample();
}
}
}
private boolean flag = true; public void sample() { System.out.println(“Sample”);
}
public Test4() { (new Inner()).test();
}
public static void main(String args []) { new Test4();
}
}
1)Prints out“Sample”
2)Program produces no output but terminatescorrectly.
3)Program does notterminate.
4)The program will notcompile Answer : 1
Carefully examine the following class:
public class Test5 {
public static void main (String args []) {
/* This is the start of a comment if (true) {
Test5 = new test5(); System.out.println(“Done the test”);
}
/* This is another comment */ System.out.println (“The end”);
}
}
1)Prints out “Done the test” and nothingelse.
2)Program produces no output but terminatescorrectly.
3)Program does notterminate.
4)The program will notcompile.
5)The program generates a runtimeexception.
6)The program prints out “The end” and nothingelse.
7)The program prints out “Done the test” and “Theend” Answer : 6
What is the result of compiling and running the following applet: import java.applet.Applet;
import java.awt.*;
public class Sample extends Applet { private String text = “Hello World”; public void init() {
add(new Label(text));
}
public Sample (String string) { text = string;
}
}
It is accessed form the following HTML page:
Sample Applet
1)Prints “HelloWorld”.
2)Generates a runtimeerror.
3)Doesnothing.
4)Generates a compile timeerror. Answer : 2
What is the effect of compiling and (if possible) running this class:
public class Calc {
public static void main (String args []) { int total = 0;
for (int i = 0, j = 10; total > 30; ++i, –j) { System.out.println(” i = ” + i + ” : j = ” + j); total += (i + j);
}
System.out.println(“Total ” + total);
}
}
1)Produce a runtimeerror
2)Produce a compile timeerror
3)Print out “Total0″
4)Generate the following asoutput:
i = 0 : j = 10 i = 1 : j = 9 i = 2 : j =8
Total 30
Answer : 3
Utility Package
1)What is the Vectorclass?
ANSWER : The Vector class provides the capability to implement a growable array of objects.
2)What is the Setinterface?
ANSWER : The Set interface provides methods for accessing the elements of a finite mathematical set.Sets do not allow duplicate elements.
3)What is Dictionaryclass?
ANSWER : The Dictionary class is the abstarct super class of Hashtable and Properties class.Dictionary provides the abstarct functions used to store and retrieve objects by key-value.This class allows any object to be used as a key or value.
4)What is the Hashtableclass?
ANSWER : The Hashtable class implements a hash table data structure. A hash table indexes and stores objects in a dictionary using hash codes as the objects’ keys. Hash codes are integer values that identify objects.
5)What is the Propertiesclass?
Answer : The properties class is a subclass of Hashtable that can be read from or written to a stream.It also provides the capability to specify a set of default values to be used if a specified key is not found in the table. We have two methods load() and save().
6)What changes are needed to make the following prg tocompile? importjava.util.*;
class Ques{
public static void main (String args[]) { String s1 =“abc”;
A)abcdefabcdef B) defabcdefabc C) fedcbafedcba D)defabc
ANSWER : D) defabc. Sets may not have duplicate elements.
12)Which of the following java.util classes supportinternationalization?
A)Locale B) ResourceBundle C) Country D)Language
ANSWER : A and B . Country and Language are not java.util classes.
13)What is theResourceBundle?
The ResourceBundle class also supports internationalization.
ResourceBundle subclasses are used to store locale-specific resources that can be loaded by a program to tailor the program’s appearence to the paticular locale in which it is being run. Resource Bundles provide the capability to isolate a program’s locale-specific resources in a standard and modular manner.
14)How are Observer Interface and Observable class, in java.util package, used? ANSWER : Objects that subclass the Observable class maintain a list of Observers. When an Observable object is updated it invokes the update() method of each of its observers to notify the observers that it has changed state. The Observer interface is implemented by objects thatobserve Observableobjects.
15)Which java.util classes and interfaces support eventhandling?
ANSWER : The EventObject class and the EventListener interface support event processing.
16)Does java provide standard iterator functions for inspecting a collection of objects?ANSWER : The Enumeration interface in the java.util package provides a framework forstepping once through a collection of objects. We have two methods in thatinterface.
public interface Enumeration { boolean hasMoreElements(); Object nextElement();
}
17)The Math.random method is too limited for my needs- How can I generate random numbers moreflexibly?
ANSWER : The random method in Math class provide quick, convienient access to random numbers, but more power and flexibility use the Random class in the java.util package.
double doubleval = Math.random();
The Random class provide methods returning float, int, double, and long values. nextFloat() // type float; 0.0 <= value < 1.0
nextDouble() // type double; 0.0 <= value < 1.0
nextInt() // type int; Integer.MIN_VALUE <= value <= Integer.MAX_VALUE nextLong() // type long; Long.MIN_VALUE <= value <= Long.MAX_VALUE
nextGaussian() // type double; has Gaussian(“normal”) distribution with mean 0.0 and standard deviation 1.0)
Eg. Random r = new Random(); float floatval = r.nextFloat();
18)How can we get all public methods of an objectdynamically?
ANSWER : By using getMethods(). It return an array of method objects corresponding to the public methods of this class.
getFields() returns an array of Filed objects corresponding to the public Fields(variables) of this class.
getConstructors() returns an array of constructor objects corresponding to the public constructors of this class.
JDBC
1)What are the steps involved in establishing aconnection?
ANSWER : This involves two steps: (1) loading the driver and (2) making the connection.
2)How can you load thedrivers?
ANSWER : Loading the driver or drivers you want to use is very simple and involves just one line of code. If, for example, you want to use the JDBC-ODBC Bridge driver, the following code will loadit: Eg.
Class.forName(“sun.jdbc.odbc.JdbcOdbcDriver”);
Your driver documentation will give you the class name to use. For instance, if the class name is jdbc.DriverXYZ , you would load the driver with the following line of code:
Eg. Class.forName(“jdbc.DriverXYZ”);
3)What Class.forName will do while loadingdrivers?
ANSWER : It is used to create an instance of a driver and register it with the DriverManager. When you have loaded a driver, it is available for making a connection with a DBMS.
4)How can you make theconnection?
ANSWER : In establishing a connection is to have the appropriate driver connect to the DBMS. The following line of code illustrates the general idea:
Eg.
String url = “jdbc:odbc:Fred”;
Connection con = DriverManager.getConnection(url, “Fernanda”, “J8”);
5)How can you create JDBCstatements?
ANSWER : A Statement object is what sends your SQL statement to the DBMS. You simply create a Statement object and then execute it, supplying the appropriate execute method with the SQL statement you want to send. For a SELECT statement, the method to use is executeQuery. For statements that create or modify tables, the method to use is executeUpdate.
Eg.
It takes an instance of an active connection to create a Statement object. In the following example, we use our Connection object con to create the Statement object stmt :
Statement stmt = con.createStatement();
6)How can you retrieve data from theResultSet?ANSWER : Step1.
JDBC returns results in a ResultSet object, so we need to declare an instance of the class ResultSet to hold our results. The following code demonstrates declaring the ResultSet object rs.
Eg.
ResultSet rs = stmt.executeQuery(“SELECT COF_NAME, PRICE FROM COFFEES”); Step2.
String s = rs.getString(“COF_NAME”);
The method getString is invoked on the ResultSet object rs , so getString will retrieve (get) the value stored in the column COF_NAME in the current row of rs
ANSWER : This special type of statement is derived from the more general class, Statement.Ifyou want to execute a Statement object many times, it will normally reduce execution time to use a PreparedStatement objectinstead.
Theadvantagetothisisthatinmostcases,thisSQLstatement willbesenttotheDBMSrightaway, where it will be compiled. As a result, the PreparedStatement object contains not just an SQL statement, but an SQL statement that has been precompiled. This means that when the PreparedStatement is executed, the DBMS can just run the PreparedStatement ‘s SQL statement without having to compile it first.
Eg.
PreparedStatement updateSales = con.prepareStatement(“UPDATE COFFEES SET SALES = ? WHERE COF_NAME LIKE ?”);
9)What setAutoCommitdoes?
ANSWER : When a connection is created, it is in auto-commit mode. This means that each individual SQL statement is treated as a transaction and will be automatically committed right after it is executed. The way to allow two or more statements to be grouped into a transaction is to disable auto-commit mode
Eg. con.setAutoCommit(false);
Once auto-commit mode is disabled, no SQL statements will be committed until you call the method commit explicitly.
ANSWER : The first step is to create a CallableStatement object. As with Statement an and PreparedStatement objects, this is done with an open Connection
object. A CallableStatement object contains a call to a stored procedure; Eg.
ANSWER : SQLWarning objects are a subclass of SQLException that deal with database access warnings. Warnings do not stop the execution of an application, as exceptions do; they simply alert the user that something did not happen as planned.
A warning can be reported on a Connection object, a Statement object (including PreparedStatement and CallableStatement objects), or a ResultSet object. Each of these classes has a getWarnings method, which you must invoke in order to see the first warning reported on the calling object
Eg.
SQLWarning warning = stmt.getWarnings(); if (warning != null) {
System.out.println(“\n—Warning—\n”); while (warning != null) {
12)How can you Move the Cursor in Scrollable Result Sets?
ANSWER : One of the new features in the JDBC 2.0 API is the ability to move a result set’s cursor backward as well as forward. There are also methods that let you move the cursor to a particular row and check the position of the cursor.
ResultSet srs = stmt.executeQuery(“SELECT COF_NAME, PRICE FROM COFFEES”);
The first argument is one of three constants added to the ResultSet API to indicate the type of a ResultSet object: TYPE_FORWARD_ONLY, TYPE_SCROLL_INSENSITIVE , and TYPE_SCROLL_SENSITIVE .
The second argument is one of two ResultSet constants for specifying whether a result set is read-only or updatable: CONCUR_READ_ONLY and CONCUR_UPDATABLE . The point to remember here is that if you specify a type, you must also specify whether it is read-only or updatable. Also, you must specify the type first, and because both parameters are of type int , the compiler will not complain if you switch the order.
Specifying the constant TYPE_FORWARD_ONLY creates a nonscrollable result set, that is, one in which the cursor moves only forward. If you do not specify any constants for the type and updatability of a ResultSet object, you will automatically get one that is TYPE_FORWARD_ONLY and CONCUR_READ_ONLY
13)What’s the difference between TYPE_SCROLL_INSENSITIVE, and TYPE_SCROLL_SENSITIVE?
ANSWER : You will get a scrollable ResultSet object if you specify one of these ResultSet constants.The difference between the two has to do with whether a result set reflects changes that are made to it while it is open and whether certain methods can be called to detect these changes.
Generally speaking, a result set that is TYPE_SCROLL_INSENSITIVE does not reflect changes made while it is still open and one that is TYPE_SCROLL_SENSITIVE does. All three types of result sets will make changes visible if they are closed and then reopened
ANSWER : Another new feature in the JDBC 2.0 API is the ability to update rows in a result set using methods in the Java programming language rather than having to send an SQL command. But before you can take advantage of this capability, you need to create a ResultSet object that is updatable. In order to do this, you supply the ResultSet constant CONCUR_UPDATABLE to the createStatement method.
Eg.
Connection con = DriverManager.getConnection(“jdbc:mySubprotocol:mySubName”); Statement stmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
ResultSet uprs = stmt.executeQuery(“SELECT COF_NAME, PRICE FROM COFFEES”);
Networking Concepts
1)The API doesn’t list any constructors for InetAddress- How do I create anInetAddress instance?
ANSWER : In case of InetAddress the three methods getLocalHost, getByName, getByAllName can be used to create instances.
ANSWER : Yes. Use InetAddress’s getLocalHost method.
3)What’s the FactoryMethod?
ANSWER : Factory methods are merely a convention whereby static methods in a class return an instance of that class. The InetAddress class has no visible constructors. To create an InetAddress object, you have to use one of the available factory methods. In InetAddress the three methods getLocalHost, getByName, getByAllName can be used to create instances of InetAddress.
4)What’s the difference between TCP andUDP?
ANSWER : These two protocols differ in the way they carry out the action of communicating. A TCP protocol establishes a two way connection between a pair of computers, while the UDP protocol is a one-way message sender. The common analogy is that TCP is like making a phone call and carrying on a two-way communication, while UDP is like mailing a letter.
5)What is the ProxyServer?
ANSWER : A proxy server speaks the client side of a protocol to another server. This is often required when clients have certain restrictions on which servers they can connect to. And when several users are hitting a popular web site, a proxy server can get the contents of the web server’s popular pages once, saving expensive internetwork transfers while providing faster access to those pages to the clients.
Also, we can get multiple connections for a single server.
ANSWER : It ensures that the mail gets to its destination. If a packet fails to get its destination, it handles the process of notifying the sender and requesting that another packet be sent.
8)What isDHCP?
ANSWER : Dynamic Host Configuration Protocol, a piece of the TCP/IP protocol suite that handles the automatic assignment of IP addresses to clients.
9)What isSMTP?
ANSWER : Simple Mail Transmission Protocol, the TCP/IP Standard for Internet mails. SMTP exchanges mail between servers; contrast this with POP, which transmits mail between a server and a client.
10)In OSI N/w architecture, the dialogue control and token management are responsibilitiesof… Answer : Network b) Session c) Application d)DataLink
ANSWER : b) Session Layer.
11)In OSI N/W Architecture, the routing isperformedbyAnswer : Network b) Session c) Application d)DataLink
ANSWER : Answer : Network Layer.
Networking
What is the difference between URL instance and URLConnection instance?
ANSWER : A URL instance represents the location of a resource, and a URLConnection instance represents a link for accessing or communicating with the resource at the location.
2)How do I make a connection toURL?
ANSWER : You obtain a URL instance and then invoke openConnection on it.
URLConnection is an abstract class, which means you can’t directly create instances of it using a constructor. We have to invoke openConnection method on a URL instance, to get the right kindof connection for yourURL.
A socket is one end-point of a two-way communication link between two programs running on the network. A socket is bound to a port number so that the TCP layer can identify the application that data is destined to be sent.Socket classes are used to represent the connection between a client program and a server program. The java.net package provides two classes–Socket and ServerSocket–which implement the client side of the connection and the server side of the connection, respectively.
What information is needed to create a TCP Socket? ANSWER : The Local System’s IP Address and Port Number. And the Remote System’s IPAddress and Port Number.
5) What are the two important TCP Socket classes?ANSWER : Socket and ServerSocket.
ServerSocket is used for normal two-way socket communication. Socket class allows us to read and write through the sockets.
getInputStream() and getOutputStream() are the two methods available in Socket class.
When MalformedURLException and UnknownHostException throws?
ANSWER : When the specified URL is not connected then the URL throw MalformedURLException and If InetAddress’ methods getByName and getLocalHost are unabletoresolve the host name they throwan UnknownHostException.
Servlets
1)What is theservlet?
ANSWER : 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.
Servlets are to servers what applets are to browsers. Unlike applets, however, servlets have no graphical user interface.
2)Whats the advantages using servlets than usingCGI?
ANSWER : Servlets provide a way to generate dynamic documents that is both easier to write and faster to run. Servlets also address the problem of doing server-side programming with platform- specific APIs: they are developed with the Java Servlet API, a standard Java extension.
3)What are the uses ofServlets?
ANSWER : A servlet can handle multiple requests concurrently, and can synchronize requests. This allows servlets to support systems such as on-line conferencing.
Servlets can forward requests to other servers and servlets.Thus servlets can be used to balance load among several servers that mirror the same content, and to partition a single logical service over several servers, according to task type or organizational boundaries.
4)Which pakage provides interfaces and classes for writingservlets? ANSWER : javax
5)Whats the ServletInterfcae?
ANSWER : The central abstraction in the Servlet API is the Servlet interface. All servlets implement this interface, either directly or, more commonly, by extending a class that implements it such as HttpServlet.
The Servlet interface declares, but does not implement, methods that manage the servlet and its communications with clients. Servlet writers provide some or all of these methods when developing a servlet.
6)When a servlet accepts a call from a client, it receives two objects- What are they? ANSWER : ServeltRequest: Which encapsulates the communication from the client to theserver. ServletResponse: Whcih encapsulates the communication from the servlet back to the client. ServletRequest and ServletResponse are interfaces defined by the javax.servletpackage.
7)What information that the ServletRequest interface allows the servlet access to? ANSWER : Information such as the names of the parameters passed in by the client, theprotocol (scheme) being used by the client, and the names of the remote host that made the request andthe server that receivedit.
The input stream, ServletInputStream.Servlets use the input stream to get data from clients that use application protocols such as the HTTP POST and PUT methods.
8)What information that the ServletResponse interface gives the servlet methods for replyingto theclient?
ANSWER : It Allows the servlet to set the content length and MIME type of the reply.
Provides an output stream, ServletOutputStream and a Writer through which the servlet can send the reply data.
9)What is the servletLifecycle?
ANSWER : Each servlet has the same life cycle:
A server loads and initializes the servlet (init())
The servlet handles zero or more client requests (service()) The server removes the servlet (destroy())
(some servers do this step only when they shut down)
10)How HTTP Servlet handles client requests?
ANSWER : An HTTP Servlet handles client requests through its service method. The service method supports standard HTTP client requests by dispatching each request to a method designed to handle that request. 1
Encapsulation :
Encapsulation is the mechanism that binds together code and the data it manipulates and keeps both safe from outside interference and misuse.
Inheritance:
Inheritance is the process by which one object acquires the properties of another object.
Polymorphism:
Polymorphism is a feature that allows one interface to be used for a general class of actions. The specific action is determined by the exact nature of actions.
Code Blocks:
Two or more statements which is allowed to be grouped into blocks of code is otherwise called as Code Blocks.This is done by enclosing the statements between opening and closing curly braces. Floating-point numbers:
Floating-point numbers which is also known as real numbers, are used when evaluating expressions that require fractional precision.
Unicode:
Unicode defines a fully international character set that can represent all of the characters found in all human languages. It is a unification of dozens of character sets, such as Latin, Greek, Arabic and many more.
Booleans:
Java has a simple type called boolean, for logical values. It can have only on of two possible values, true or false.
Casting:
A cast is simply an explicit type conversion. To create a conversion between two incompatible types, you must use a cast.
Arrays:
An array is a group of like-typed variables that are referred to by a common name. Arrays offer a convenient means of grouping related information. Arrays of any type can be created and may have one or more dimension.
Relational Operators:
The relational operators determine the relationship that one operand has to the other. They determine the equality and ordering.
11.Short-Circuit LogicalOperators:
The secondary versions of the Boolean AND and OR operators are known as short- circuit logical operators. It is represented by || and &&..
12.Switch:
The switch statement is Java’s multiway branch statement. It provides an easy way to dispatch execution to different parts of your code based on the value of an
experession.
13.JumpStatements:
Jump statements are the statements which transfer control to another part of your program. Java Supports three jump statements: break, continue, and return.
14.InstanceVariables:
The data, or variable, defined within a class are called instance variable.
0 Comments