Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


suppose string s1="rajnish";
string s2="bhaskar";
then what will be happend ?

Answers were Sorted based on User's Feedback



suppose string s1="rajnish"; string s2="bhaskar"; then what will be ha..

Answer / kvk

two object will be saved in string constant pool

Is This Answer Correct ?    8 Yes 0 No

suppose string s1="rajnish"; string s2="bhaskar"; then what will be ha..

Answer / tck

It shows the systex error,The String is the final class in
java the syntax for string class is
String s1="rajinesh";
String s2="bhaskar";
so we have to declare the string variables like this .

Is This Answer Correct ?    8 Yes 3 No

suppose string s1="rajnish"; string s2="bhaskar"; then what will be ha..

Answer / ravi jain

2 new string objects will be created in String pool area in JVM.

String are immutable that why they are stores in

different area in JVM

as in case of final variables.

Is This Answer Correct ?    4 Yes 0 No

suppose string s1="rajnish"; string s2="bhaskar"; then what will be ha..

Answer / venkat

FIRST OF ALL THE JVM CREATED THE OBJECTS FOR STRING
CLASSESS IN TWO WAYS
1)STRING S1=NEW STRING("VENKI");
2)STRING S2="VENKI"
IN SECOND APPROACH WHEN THE JVM IS EN COUNTED THE ""
(DOUBLE QUOTATIONS) THEN IT UNDERSTOOD ,AND CREATED THE
OBJECT FOR THE S2 , AND THIS OBJECT IS PLACED IN THE STRING
POOL (SEPERATE MEMORY LOCATION IS MAINTAINED) . i.e in this
position we are not creating the object for the string class
explicitly ,the jvm internally created this object

Is This Answer Correct ?    3 Yes 0 No

suppose string s1="rajnish"; string s2="bhaskar"; then what will be ha..

Answer / aruna raman

'S' should be in capital for string.. Java is case
sensitive, then it will run successfully.

Is This Answer Correct ?    3 Yes 0 No

suppose string s1="rajnish"; string s2="bhaskar"; then what will be ha..

Answer / guest

dsf

Is This Answer Correct ?    0 Yes 2 No

suppose string s1="rajnish"; string s2="bhaskar"; then what will be ha..

Answer / selvan

It shows compile error, bcoz without class how it should be
run? so only coming expection. Declaration And all correct.

Is This Answer Correct ?    0 Yes 3 No

suppose string s1="rajnish"; string s2="bhaskar"; then what will be ha..

Answer / ravikiran

two objects will be saved in the heap

Is This Answer Correct ?    0 Yes 6 No

suppose string s1="rajnish"; string s2="bhaskar"; then what will be ha..

Answer / tejas gowda

Two String Object run successfuly and will be saved in the
heap memory

Is This Answer Correct ?    0 Yes 8 No

Post New Answer

More Core Java Interview Questions

In which language java is written?

0 Answers  


What are the 4 types of characters?

0 Answers  


What is core java called?

0 Answers  


Why pass by reference is not possible in java?

0 Answers  


What are the advantages of arraylist over arrays?

0 Answers  


What is multithreading and its advantages?

0 Answers  


What's the purpose of static methods and static variables?

0 Answers  


What is meant by class?

0 Answers  


How do you declare an empty string?

0 Answers  


What is the difference between preparedstatement and statement in java?

0 Answers  


public class Test { public static void main(String[] args) { int countA = 0; int countB = 0; int countC = 0; int countD = 0; int countE = 0; int countF = 0; int countG = 0; int countH = 0; int countI = 0; int countJ = 0; int countK = 0; int countL = 0; int countM = 0; int countN = 0; int countO = 0; int countP = 0; int countQ = 0; int countR = 0; int countS = 0; int countT = 0; int countU = 0; int countV = 0; int countW = 0; int countX = 0; int countY = 0; int countZ = 0; } } Can anybody tell me any alternate solution(like loop or something) to automate this initialization process. Ex:- for(char chr='A';chr<='Z'; chr++) { (int) String "count"+chr = 0; }

0 Answers  


Why put method is idempotent?

0 Answers  


Categories