Showing posts with label Interview. Show all posts
Showing posts with label Interview. Show all posts

Tuesday, 23 September 2014

My Experience in IT

Friends, A lot of students complete their graduation, engineering but one thing that hammers them all the time is a software JOB. They try in college placements. Some don’t even have that opportunity. Some try after their college, for two years, three years and get disappointed. But friends, I just want to tell you all that never ever lose hope,...

Tuesday, 16 July 2013

Useful Interview questions

 JAVA INTERVIEW QUESTION 1. Does the order of public and static declaration matter in main() method? A. No. It doesn't matter but void should always come before main(). 2. Can a source file contain more than one class declaration? A. Yes a single source file can contain any number of Class declarations but only one of the class can be declared as public. 3. What is a package? A. Package is a collection of related classes and interfaces. package declaration should be first statement in a java class. 4. Which package is imported by...

Sunday, 7 July 2013

Java Interview questions Part2

1. What is the difference between a constructor and a method? A constructor is a member function of a class that is used to create objects of that class. It has the same name as the class itself, has no return type, and is invoked using the new operator. A method is an ordinary member function of a class. It has its own name, a return type (which...

Friday, 5 July 2013

JAVA INTERVIEW QUESTIONS

JAVA INTERVIEW QUESTIONS 1. What is the most important feature of Java? Java is a platform independent language. 2. What do you mean by platform independence? Platform independence means that we can write and compile the java code in one platform (eg Windows) and can execute the class in any other supported platform eg (Linux,Solaris,etc). 3....

Friday, 24 May 2013

Interview Questions

                                                        1.    What are different types of storage classes in c? A.    There are 4 storage classes in c ie          ...