Monday, January 25, 2010

JOB sites. upload ur CV's now


www.naukri.com
www.monster.com
www.timesjobs.com
www.efreshers.com
www.fundoodatajobs.com
www.brigade.com
www.yellowjobs.com
www.knockajob.com
www.careerenclave.com
www.aim3of+waresolutions
www.kenexa.com
www.freshersworld.com
www.ieg.gov.in/cpm2008
www.ibm.in/university/greatmind/tgmc html.in
www.careers.tcs.com
freashers.engg.jos@gmail.com
info@dsig.net
jobs@vajjatehnologies.com
www.jobstreet.com
tsantosh@coretree.com
harsha@smartjobs2u.com
ramgmt.hyd@gmail.com  contact: 040-40209974(NISHA)
response@deccanmail.com
www.employementnews.gov.in   (government jobs)


Interview sites

www.suresh kumar.net
www.kool kampus.com
www.wipro.com
www.freshersworld.com
www.kyapoocha.com
www.geekinterviews.com
www.cprogramming.com


            JAVA SITES
www.javaworld.com
www.javalaunch.com

Wednesday, October 21, 2009

Honest HR Question - Answers

Job Interview - Honest HR Question-Answers

If we were to Honestly reply to all the HR Questions they would go something like this

1. Why did you apply for this job?
I have applied for many jobs along with this and you called me now.

2. Why do you want to work for this company?
I have to work for some company who ever gives me a job, I don't have any specific company in mind.

3. Why should I hire you?
You have to hire some one, you may give me a try.

4.What would you do if we hire you?
Well, it depends on my mindset but I will try to work on whatever is allotted to me.

5.What is your biggest strength?
Basically, daring to join any company who pays me well, without thinking of the fate of company.
6.What is your biggest weakness?
Girls

7.What was your worst mistake, and how did you learn from it?
Joining my earlier company and learn that I need to jump to get more money, so I am here today!

8. What accomplishments in your last position are you most proud of?
Had I accomplished any in my last position, why do I need to change my job? I could demand more and stay there.

9.Describe a challenge you faced and how you overcame it?
Biggest challenge is answering the question "why are you looking for a change" and I started blabbering irrelevantly to overcome that.

10.Why did you leave/ are you leaving your last job?
For the same reason why you left your earlier job... More money

11.What do you want from this job?
If no work is given but keep giving good hikes

12.What are your career goals and how do you plan to achieve them?
Make more money and for that keep jumping companies for every 2 yrs

13.Did you hear of our company and what do you know of us?
Yeah, I know that you will ask this, I've gone through your website

14.What is the salary expected and how do u justify that?
Well, no one will change job for the same salary, hence, give me 20% extra than what I am getting and that is unpublished industry standard (I know you will bargain on what ever I ask, hence, I have already hiked my current salary by 30%).

Monday, August 24, 2009

Why multiple inheritance is not allowed in Java !!!!!!!

Why multiple inheritance is not allowed in Java???????????????


For long time I had a question “why Sun introduced Interface concept instead of C++ style of multiple inheritance?”. I did googling but many articles and forums talks about difference between abstract class and Interface not why Interface concept required in Java. After extensive search and analysis I came to know the reason behind the Interface concept in Java.

In C++ multiple inheritance is possible, virtual keyword is been used to define virtual function. Whereas in Java multiple inheritance is not possible however using Interface concept the same class can represent different structure.

Lets take an example in C++ where two parent class contains same virtual function.

Example:

class BaseCol
{
public:
virtual void a() { cout << “BaseCol::a” << endl; } virtual void b() { cout << “BaseCol::b” << endl; } }; class ChildCol1 : public BaseCol { public: virtual void a() { cout << “ChildCol1::a” << endl; } virtual void b() { cout << “ChildCol1::b” << endl; } }; class ChildCol2 : public BaseCol { public: virtual void a() { cout << “ChildCol2::a” << endl; } virtual void b() { cout << “ChildCol2::b” << endl; } }; class Row : public ChildCol1, public ChildCol2 { public: // i want to overide the b function of ChildCol1 only !! void b() { cout << “Row1::b” << endl; } }; While executing the above code at runtime ambiguity error will occur since the implementation has conflicting methods. This problem is called “Diamond inheritance problem“. To avoid this complexity Java provides single inheritance with interface concept. Since interface cannot have method implementation, the problem is therefore avoided since there is always only one implementation to a specific method and hence no ambiguity will arise. Every concept/ design is to solve specific problems not to create magics. source:click here

Saturday, July 12, 2008



Your Ad Here

Saturday, July 5, 2008





Wednesday, September 12, 2007

do u know "BUSH HID THE FACTS"


Bush may have hid the facts. But whether or not he did, Bill Gates' opinion was apparently hard-coded into notepad when he developed Windows XP.

The following two screenshots are from my own computer showing what happens when you perform the steps that follow those screenshots.










The steps to perform this feat are simple:
1. Create a new text file (right click on the desktop, go to New -> Text Document)
2. Open the file (with notepad, but that's so obvious I shouldn't have mentioned it)
3. Type the text "%name% hid the facts" (in this case, type in "Bush hid the facts")
4. Save the file
5. Close Notepad
6. Open the file again (with notepad like before)
7. Enjoy knowing that your computer has been programmed to keep you from thinking that "Bush hid the facts", but that by doing this Gates has insured that we all suspect Bush hid the facts.


The reason is that Notepad has to edit files in a variety of encodings, and when its back against the wall, sometimes it's forced to guess.
Here's the file "Hello" in various encodings:
48 65 6C 6C 6F
This is the traditional ANSI encoding.
48 00 65 00 6C 00 6C 00 6F 00
This is the Unicode (little-endian) encoding with no BOM.
FF FE 48 00 65 00 6C 00 6C 00 6F 00
This is the Unicode (little-endian) encoding with BOM. The BOM (FF FE) serves two purposes: First, it tags the file as a Unicode document, and second, the order in which the two bytes appear indicate that the file is little-endian.
00 48 00 65 00 6C 00 6C 00 6F
This is the Unicode (big-endian) encoding with no BOM. Notepad does not support this encoding.
FE FF 00 48 00 65 00 6C 00 6C 00 6F
This is the Unicode (big-endian) encoding with BOM. Notice that this BOM is in the opposite order from the little-endian BOM.
EF BB BF 48 65 6C 6C 6F
This is UTF-8 encoding. The first three bytes are the UTF-8 encoding of the BOM.
2B 2F 76 38 2D 48 65 6C 6C 6F
This is UTF-7 encoding. The first five bytes are the UTF-7 encoding of the BOM. Notepad doesn't support this encoding.
Notice that the UTF7 BOM encoding is just the ASCII string "+/v8-", which is difficult to distinguish from just a regular file that happens to begin with those five characters (as odd as they may be).
The encodings that do not have special prefixes and which are still supported by Notepad are the traditional ANSI encoding (i.e., "plain ASCII") and the Unicode (little-endian) encoding with no BOM. When faced with a file that lacks a special prefix, Notepad is forced to guess which of those two encodings the file actually uses. The function that does this work is IsTextUnicode, which studies a chunk of bytes and does some statistical analysis to come up with a guess.
And as the documentation notes, "Absolute certainty is not guaranteed." Short strings are most likely to be misdetected.


hey guys do u know that U...

cannot create folders with name
CON, PRN, AUX, NUL, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, LPT1, LPT2, LPT3,
LPT4, LPT5, LPT6, LPT7, LPT8, and LPT9.
in your computer

do u know the reason y u cannot do it???????????

it is because all the above are key words or names of standard devices like
CONsole ,PRiNter......

DO U want to crack it????

just create a new folder Press alt+255

and type the name CON u'll get it