Right Place For Right PersonTM 
Home Tutorials Articles Forums Source Code Books Certifications Interviews Questions
Tolal:22 Click: 1 2
Previous Home Next

Lang Interview Questions And Answers

Page 1

Ques: 1 what is lang
Ques: 2 What is java.lang Package?
Ques: 3 what is the base class of all classes?

Ans:
java.lang.Object

Ques: 4 what do you think is the logic behind having a single base class for all classes?

Ans:
1. casting 2. Hierarchical and object oriented structure.

Ques: 5 why most of the Thread functionality is specified in Object Class?

Ans:
Basically for inter tribal communication.

Ques: 6 what is the importance of == and equals () method with respect to String object?

Ans:
== is used to check whether the references are of the same object. .equals () is used to check whether the contents of the objects are the same. But with respect to strings, object reference with same content will refer to the same object. String str1=”Hello”; String str2=”Hello”; (str1==str2) and str1.equals(str2) both will be true. If you take the same example with String-buffer, the results would be different. String-buffer str1=”Hello”; String-buffer str2=”Hello”; str1.equals(str2) will be true. str1==str2 will be false.

Ques: 7 Is String a Wrapper Class or not?

Ans:
No. String is not a Wrapper class

Ques: 8 How will you find length of a String object?

Ans:
Using length () method of String class.

Ques: 9 How many objects are in the memory after the exeception of following code segment?

Ans:
String str1 = “ABC”; String str2 = “XYZ”; String str1 = str1 + str2; There are 3 Objects.

Ques: 10 what is the difference between an object and object reference?

Ans:
An object is an instance of a class. Object reference is a pointer to the object. There can be many references to the same object.

Ques: 11 what will trim () method of String class do?

Ans:
The trim () eliminate spaces from both the ends of a string.

Ques: 12 what is the use of java.lang.Class class?

Ans:
The java.lang.Class class is used to represent the classes and interfaces that are loaded by a java program.

Ques: 13 what is the possible runtime exception thrown by substring () method?

Ans:
ArrayIndexOutOfBoundsException.

Ques: 14 what is the difference between String and String Buffer?

Ans:
Object’s of String class is immutable and object’s of String Buffer class is mutable moreover String Buffer is faster in concatenation.

Ques: 15 what is the use of Math class?

Ans:
Math class provides methods for mathematical functions.

Ques: 16 Can you instantiate Math class?

Ans:
No. It cannot be instantiated. The class is final and its constructor is private. But all the methods are static, so we can use them without instantiating the Math class.

Ques: 17 what will Math. abs () do?

Ans:
It simply returns the absolute value of the value supplied to the method, i.e. gives you the same value. If you supply negative value it simply removes the sign.

Ques: 18 what will Math. cell () do?

Ans:
This method returns always double, which is not less than the supplied value. It returns next available whole number

Ques: 19 what will Math. floor () do?

Ans:
This method returns always double, which is not greater than the supplied value.

Ques: 20 what will Math. ax () do?

Ans:
The max () method returns greater value out of the supplied values.


Goto Page:
1 2
Share |

Lang Objective

Lang Objective Questions And Answers

Lang Interview Questions And Answers

Lang Interview Questions And Answers

R4R,Lang Objective, Lang Subjective, Lang Interview Questions And Answers,Lang,Lang Interview,Lang Questions ,Lang Answers


||Advertiser PRIVACY POLICY ||User PRIVACY POLICY ||