Tuesday, September 15, 2009
Free Website
For creating a website in just three steps at free of cost, visit http://thenewidentity.com/
TCS Revised Offer Letter
For providing information to all TCS palced stidents please provide these.
Please mention your name, your college name and stream here.
Mention your date of joining and place.
Please mention your name, your college name and stream here.
Mention your date of joining and place.
Thursday, August 27, 2009
Rummy-Go would be funny if it did not hurt so much. Here is the way it goes down. A duke is confronted with the kidnaping of his beloved wife and struggles valiantly to keep her alive without paying a vast sum for her release. The modern reader is left wondering how many were involved in the abduction and — You will find that this is a short romance, or perhaps it is a mystery. Well, it is definitely a good piece of humor, but it may be cut short in tragedy at any second. Be sure you read this one.
http://www.browzerbooks.com/ entersanctum/romance/rummied. pdf
***
Here we go with yet another kidnaping story, and this one with a very long, cold twist. —
“If you had lived in this country long, M’seur, you would have heard of _la Maison de Mort Rouge_
“The House of the Red Death, as you would call it.
“That is where we are now —deep in the dungeon room. Once upon a time it was a Hudson Bay post, abandoned almost since I can remember. When I was a child the smallpox plague tore through this way and killed all the people in its path. Nineteen years ago the red plague came again, and again, not one person lived through it in this _Poste de Mort Rouge._
“Since then it has been left to the weasels and the owls and even they have died. It is shunned by every living soul between the Athabasca and the bay. And I shall leave you here. Perhaps you will be safe? “At least, no one shall disturb you.”
http://www.browzerbooks.com/ entersanctum/adventure/ reddeath.pdf
Kidnaping again?
Oh yes, and this one by a master we all know and love..
The Links of Northmour, by Robert Louis Stevenson. The Turf is there on top, rich, almost luxurious, but always beneath the turf is the sand. It is halted now, moving not - but ever ready to deal treachery out and let die with unwinking, uncaring eye. The Links they are called, and the pavilion that stands like a haunting flag is known quite simply as “The Pavilion On The Links.” My blood still runs cold when I think of those links, The Links of Northmour.
http://www.browzerbooks.com/ entersanctum/mystery/ Northmour.pdf
http://www.browzerbooks.com/
***
Here we go with yet another kidnaping story, and this one with a very long, cold twist. —
“If you had lived in this country long, M’seur, you would have heard of _la Maison de Mort Rouge_
“The House of the Red Death, as you would call it.
“That is where we are now —deep in the dungeon room. Once upon a time it was a Hudson Bay post, abandoned almost since I can remember. When I was a child the smallpox plague tore through this way and killed all the people in its path. Nineteen years ago the red plague came again, and again, not one person lived through it in this _Poste de Mort Rouge._
“Since then it has been left to the weasels and the owls and even they have died. It is shunned by every living soul between the Athabasca and the bay. And I shall leave you here. Perhaps you will be safe? “At least, no one shall disturb you.”
http://www.browzerbooks.com/
Kidnaping again?
Oh yes, and this one by a master we all know and love..
The Links of Northmour, by Robert Louis Stevenson. The Turf is there on top, rich, almost luxurious, but always beneath the turf is the sand. It is halted now, moving not - but ever ready to deal treachery out and let die with unwinking, uncaring eye. The Links they are called, and the pavilion that stands like a haunting flag is known quite simply as “The Pavilion On The Links.” My blood still runs cold when I think of those links, The Links of Northmour.
http://www.browzerbooks.com/
Tuesday, August 25, 2009
Data Hiding
If a subclass is having a data member with same name as superclass data member then inside subclass, subclass data member hides superclass data member.
class Sample{
int a = 5;
}
class SubSample extends Sample{
int a = 6;
void display(){
System.out.println("\n a="+a);
}
}
class InheritanaceDemo14{
public static void main(String[] args){
SubSample s = new SubSample();
s.display();
System.out.println("\n s.a="+s.a);
}
}
output:
a = 6
s.a = 6
Explanation:
class Sample{
int a = 5;
}
class SubSample extends Sample{
int a = 6;
void display(){
System.out.println("\n a="+a);
}
}
class InheritanaceDemo14{
public static void main(String[] args){
SubSample s = new SubSample();
s.display();
System.out.println("\n s.a="+s.a);
}
}
output:
a = 6
s.a = 6
Explanation:
A super class object can refer its subclass object
class Sample{
}
class SubSample extends Sample{
}
class InheritanaceDemo8{
public static void main(String[] args){
Sample s1 = new Sample();
Sample s2 = new SubSample();
System.out.println("s1 = " + s1);
System.out.println("s2 = " + s2);
}
}
output:
s1 = Sample@010b30a7
s2 = SubSample@1a758cb
Explanation:
}
class SubSample extends Sample{
}
class InheritanaceDemo8{
public static void main(String[] args){
Sample s1 = new Sample();
Sample s2 = new SubSample();
System.out.println("s1 = " + s1);
System.out.println("s2 = " + s2);
}
}
output:
s1 = Sample@010b30a7
s2 = SubSample@1a758cb
Explanation:
Subscribe to:
Posts (Atom)





