Please navigate to the bottom of the page for Table of Contents

Saturday, June 18, 2011

Basic JAVA interview questions

Having covered a lot of topics in .NET, let’s shift our attention to some JAVA questions. In this post, we will cover a few basic JAVA interview questions to get started. We will advance in complexity in later posts.

SO, first, let’s start with constructors.

Question: What is the difference between constructors and other regular methods?

Constructors must have the same name as the class name and cannot return a value. The constructors are called only once per creation of an object while regular methods can be called many times.

Question: What happens if you do not provide a constructor?

Java does not actually require an explicit constructor in the class description. If you do not include a constructor, the Java compiler will create a default constructor in the byte code with an empty argument. If a class includes one or more explicit constructors, the java compiler does not create the default constructor.

Question: Can you call one constructor from another?

Yes, the key is to use the this() construct.

public Shape(int id) {
this.id = id; // "this" means this object
}

public Shape(int id, String type) {
this(id); // calls constructor public Shape(int id)
this.type = type; // "this" means this object
}



Question: How can you invoke the base class constructor in the derived class?


You can use the super() syntax. Note that this has to be the first statement in the function.


public Circle(int id) {
super(id); //must be the very first statement in the constructor.
}



Question: How can you invoke base class methods in the derived class?


To call a regular method in the base class use “super.myMethod( )”. This can be called at any line.


public class Circle extends Shape 
{
public void setUp()
{
super.initialize();
// do circle stuff
}
}



public void reset() throws Throwable
{
try
{
// Do stuff here to rest your object
}
catch (Throwable t) {}
finally
{
super.reset(); //clean up your parent class. Unlike constructors super.regularMethod() can be called at any line.
}
}



Question: Explain static initializers with an example.


When a class is loaded, all blocks that are declared static and don’t have function name (i.e. static initializers) are executed even before the constructors are executed. As the name suggests they are typically used to initialize static fields.


public class StaticInitializer 
{
public static final int x = 5;
public static final int y;
//note that since y is final, it can be initialized only once.

//Static initializer block, which is executed only once when the class is loaded.
static
{
if(x == 5)
y = 10;
else
y = 5;
}

//constructor is called only after static initializer block
public StaticInitializer(){}
}


The code above sets the value of x to 5 and y to 10.

127 comments:

  1. Given stuff and logical thinking are very good!

    ReplyDelete
  2. When coming to the java point there will be definitely asking the Questions
    on the constructors!So i hope this is the good introduction for the java questions!

    ReplyDelete
  3. ya this is very very important to the interview, because constructors are the base for the objects creation....

    ReplyDelete
  4. This comment has been removed by a blog administrator.

    ReplyDelete
  5. Write a program where the user enters the number of asterisk for the first row printed. The user will then enter another number (that is less than the number entered first). This number will be the number that each row will be decreased by. For example: User will enter 8 first and 3 second (row 1 - 8 asterisks, row 2 - 5 asterisks, row 3 - 2 asterisks. What will be printed is:

    ********
    *****
    **
    You can't print less asterisks than the decrement value (in the example you can't go below 2 because 3 was the decrement number).

    ReplyDelete
    Replies
    1. This is quite simple:
      static void PrintStars(int startCount, int decrementValue)
      {
      // error checks
      if ((startCount > 0) && (startCount >= decrementValue))
      {
      while (startCount >= 0)
      {
      // print current star count
      Console.WriteLine(new String('*', startCount));

      // decrement for next round
      startCount -= decrementValue;
      }
      }
      else
      {
      Console.WriteLine("Please provide valid input values");
      }
      }

      Delete
    2. Sain Bainuu,


      Thank you! Thank you! Thank you! Your blog was a total game changer!


      Hello people, So I am having trouble uploading a file to my bucket. I have the proper credentials all set. The problem is when I try doing a
      putRequest('bucket', 'keyName', 'fileFullPath') it will only save the file name and not the bytes. So I try sending it as an input stream to a byte array. This way it says there is no such file at specified location? I am running linux so It says no specified file at /home/{user}/pictures/example.jpg This is the problem I believe because it is searching from /home and not /




      It was cool to see your article pop up in my google search for the process yesterday. Great Guide.
      Keep up the good work!


      Thanks a heaps,

      Delete
  6. Copper Wire Co. sells spools of copper wiring for $100 each. Write a program that display the status of an order. The program should have a function that asks for the following information:

    The number of spools ordered.
    The number of spools in stock.
    If there are special shipping and handling charges.

    (Shipping and handling is normally $10 per spool.) If there are special charges, it should ask for the special chargers per spool.

    Output: number of spools shipped, number of spools back ordered, subtotal of portion ready to ship, total shipping and handling charges on portion ready to ship, total of order ready to ship.

    Validate: do not accept numbers less than one for spools ordered. Do not accept a number less than 0 for spools in stock or shipping and handling charges.

    Once an order is printed, ask the user for the next order. Use a sentinel value to stop (q for quit or -1)

    ReplyDelete
  7. very nice. for java examples, visit http://java2novice.com site

    ReplyDelete
  8. I came across your guide and found exact Basic-java Interview Q/A’s which I was looking for. Thanks for such a useful information’s. But I had found one good website related to Java interview Q/A’s. More Info: java-interview-questions

    ReplyDelete
  9. Looking for best selenium training in Chennai, Credo Systemz is the no 1 selenium Training institute in Chennai offering professional selenium course by selenium experts.

    ReplyDelete
  10. I will do niche blog comment Just in 5$ .All comment relevant with your niche and UNIQUE .This off-page seo will increase your traffic and promote your business

    ReplyDelete
  11. Your good knowledge and kindness in playing with all the pieces were
    very useful. I don’t know what I would have done if I had not
    encountered such a step like this.


    java Training in Bangalore



    java training in chennai

    ReplyDelete
  12. Thanks for sharing such agreat article, really very helpful information. Keep sharing.

    Best Software company in New jersey, USA

    ReplyDelete


  13. wow...nice blog, very help full information. Thanks for sharing.

    ReplyDelete

  14. Grate blog to read its very nice explanation about Internet Of Things
    Internet Of Things

    ReplyDelete
  15. Very good informative article. Thanks for sharing such nice article, keep on up dating such good articles.
    Best Cloud Solutions | Austere Technologies

    ReplyDelete
  16. Really great blog, it's very helpful and has great knowledgeable information. Thanks for sharing, keep updating such a good informative blog.

    Quality Managment Services | Austere Technologies

    ReplyDelete
  17. Very good informative article. Thanks for sharing such nice article, keep on up dating such good articles
    Austere Technologies|Mobility

    ReplyDelete
  18. Great article, really very helpful content you made. Thank you, keep sharing.

    Best Software Testing Services | Austere Technology

    ReplyDelete
  19. I must be thankful for sharing your ideas.Thank you for the good writeup.its a brellint job
    java training in chennai
    java course in chennai

    ReplyDelete
  20. Thanks for sharing this informative article..!!
    Keep posting waiting for next post.

    iOS Training in Bangalore Java Training in Bangalore

    ReplyDelete
  21. Hi Thanks for the nice information its very useful to read your blog. We provide Software Development Services

    ReplyDelete
  22. The blog or and best that is extremely useful to keep I can share the ideas of the future as this is really what I was looking for, I am very comfortable and pleased to come here. Thank you very much.

    Digital Marketing Course in Chennai
    Digital Marketing Training in Chennai
    Online Digital Marketing Training
    SEO Training in Chennai

    ReplyDelete
  23. Wow...Excellent informative blog, really helpful. Thank you.

    Best CAM Training in hyd | ISFS

    ReplyDelete
  24. Very useful information Big Classes has been constantly pioneering and evolving in the Online Training Industry. With an experience of over a decade and half in the training industry, Big Classes is today a name to be reckoned with for any kind of IT trainings in online model. With an army of trainers and a wide array of courses, Big Classes guarantees high quality training at an extremely competitive price, ensuring 100% value for money.
    Online IT Training

    ReplyDelete
  25. I like your blog, I read this blog please update more content on hacking,
    Nice post,and good information Thanks for sharing further check it once at
    .NET Online Course

    ReplyDelete
  26. Wow...What an excellent informative blog, really helpful. Thank you. Best Oracle DBA Course Training| orskl
    Orskl

    ReplyDelete
  27. It was thinking about whether I could utilize this review on my other site, I will connect it back to your site though.Great Thanks. basic English vocabulary

    ReplyDelete
  28. Wow...What an excellent informative blog, really helpful. Thank you. Best Oracle DBA Course Training| orskl

    ReplyDelete
  29. Comfortabl y, the post is really the freshest on that deserving topic. I harmonise with your conclusions and definitely will thirstily look forward to your next updates.

    website builder for reseller

    ReplyDelete
  30. Thank you for the link building list.I am going jot down this because it will help me a lot.Great blog! Please keep on posting such blog.

    private label website builder

    ReplyDelete
  31. I admire this article for the well-researched content and excellent wording
    seo company in chennai

    ReplyDelete
  32. The information is meaningful and magnificent which is shared here about the article. I really thank you for such a innovative post. if you want to take training in java, then ratindia.com is best for you. Summer internship program in jaipur

    ReplyDelete
  33. Next time I read a blog, Hopefully it won't fail me as much as this one. I mean, I know it was my choice to read, but I truly thought you would have something interesting to say. All I hear is a bunch of complaining about something that you could possibly fix if you weren't too busy seeking attention.
    best service center in marathahalli

    Samsung Galaxy S9+ authorized service center near me

    oppo A77 service center near me

    oneplus 5T authorized service center in banglore

    realme 2 Pro authorized service center in banglore

    ReplyDelete
  34. This comment has been removed by the author.

    ReplyDelete
  35. It's a nice article, Which you have shared here about the java. Your article is very useful for those who are want to learn java programming course. I would like to thanks for sharing this post here. Best Core Java With Data Structures Course In Delhi

    ReplyDelete
  36. For Devops training in Bangalore visit:Devops training in Bangalore

    ReplyDelete
  37. Excellent web site you have got here.. It’s difficult to find good quality writing like yours these days.
    best service center bangalore
    I really appreciate individuals like you! Take care!!
    Vivo display replacement Marathahalli
    This is a topic that's near to my heart... Cheers! Exactly where are your contact details though?
    Motorola display replacement Marathahalli

    ReplyDelete
  38. I seriously love your site.. Great colors & theme. Did you develop this website yourself?
    Huawei display replacement Marathahalli
    Please reply back as I’m looking to create my own website and would like to learn where you got this from or what the theme is named. Kudos!
    Asus display replacement Marathahalli
    Everyone loves it whenever people get together and share ideas. Great website, stick with it!
    LG display replacement Marathahalli

    ReplyDelete
  39. Looking for CDR Report Writing who can provide the best quality CDR report writing help service to engineers, visit at essaycorp.com.au We will help you to get A+ Grades in CDR report.
    cdr report writing

    ReplyDelete
  40. Excellent blog thanks for sharing It’s time you upgraded your Salon to meet global standards. Do that with the best wholesale cosmetic market in Chennai - The Pixies Beauty Shop.
    Cosmetics Shop in Chennai

    ReplyDelete
  41. The article explains value of Java and it is role inside Information Technology sector. It highlights the key role that Java plays in creating Online Advanced JAVA Training

    ReplyDelete
  42. Very useful blog thanks for sharing IndPac India the German technology Packaging and sealing machines in India is the leading manufacturer and exporter of Packing Machines in India.

    ReplyDelete
  43. This comment has been removed by the author.

    ReplyDelete
  44. Very useful blog. excellent Information . Thank you . keep sharing
    Best BBA College in Hyderabad

    ReplyDelete
  45. This comment has been removed by the author.

    ReplyDelete
  46. Thanks a lot for sharing such a good source with all, i appreciate your efforts taken for the same. I found this worth sharing and must share this with all.



    Dot Net Training in Chennai | Dot Net Training in anna nagar | Dot Net Training in omr | Dot Net Training in porur | Dot Net Training in tambaram | Dot Net Training in velachery







    ReplyDelete
  47. ethical hacking is the upcoming, valuable and job oriented solution that IT companies and other industrial sectors are adapting today. machine learning courses in hyderabad

    ReplyDelete
  48. The blog or and best that is extremely useful to keep I can share the ideas of the future as this is really what I was looking for, I am very comfortable and pleased to come here. Thank you very much. i appreciate your efforts taken for the same. I found this worth sharing and must share this with all.

    digital marketing company in bhubaneswar
    website design and development

    ReplyDelete
  49. Thumbs up guys your doing a really good job. It is the intent to provide valuable information and best practices, including an understanding of the regulatory process.
    Cyber Security Course in Bangalore

    ReplyDelete
  50. I am so happy to found your blog post because it's really very informative. Please keep writing this kind of blogs and I regularly visit this blog. Have a look at my services.
    Cyber Security Training Course in Chennai | Certification | Cyber Security Online Training Course | Ethical Hacking Training Course in Chennai | Certification | Ethical Hacking Online Training Course | CCNA Training Course in Chennai | Certification | CCNA Online Training Course | RPA Robotic Process Automation Training Course in Chennai | Certification | RPA Training Course Chennai | SEO Training in Chennai | Certification | SEO Online Training Course

    ReplyDelete
  51. Nice article i was really impressed by seeing this article, it was very interesting and it is very useful for me.It was very interesting and meaningful.I gained many unknown information, the way you have clearly explained is really fantastic.keep posting such useful information.
    Full Stack Training in Chennai | Certification | Online Training Course
    Full Stack Training in Bangalore | Certification | Online Training Course

    Full Stack Training in Hyderabad | Certification | Online Training Course
    Full Stack Developer Training in Chennai | Mean Stack Developer Training in Chennai
    Full Stack Training

    Full Stack Online Training




    ReplyDelete
  52. Thank you for taking the time to provide us with your valuable information. We strive to provide our candidates with excellent care and we take your comments to heart.As always, we appreciate your confidence and trust in us.This is an awesome post.Really very informative and creative contents. These concept is a good way to enhance the knowledge.I like it and help me to development very well.Thank you for this brief explanation and very nice information.Well, got a good knowledge.
    DevOps Training in Chennai

    DevOps Online Training in Chennai

    DevOps Training in Bangalore

    DevOps Training in Hyderabad

    DevOps Training in Coimbatore

    DevOps Training

    DevOps Online Training

    ReplyDelete
  53. Thanks for sharing an informative blog keep rocking bring more details.I like the helpful info you provide in your articles. I’ll bookmark your weblog and check again here regularly. I am quite sure I will learn much new stuff right here! Good luck for the next!
    Artificial Intelligence Training in Chennai

    Ai Training in Chennai

    Artificial Intelligence training in Bangalore

    Ai Training in Bangalore

    Artificial Intelligence Training in Hyderabad | Certification | ai training in hyderabad

    Artificial Intelligence Online Training

    Ai Online Training

    Blue Prism Training in Chennai

    ReplyDelete
  54. 1. PHP VS Java: Performance & Speed. In a nutshell: While comparing the Java vs PHP performance, Java is clearly a winner as it is faster and efficient than PHP to write enterprise applications. Like developers have to build mobile enterprise applications to streamline complex business processes and operation
    Java Training in Chennai

    Java Training in Bangalore

    Java Training in Hyderabad

    Java Training in Coimbatore

    Java Training

    ReplyDelete
  55. This is a fabulous post I seen because of offer it. It is really what I expected to see trust in future you will continue in sharing such a mind boggling post
    Digital Marketing Training Institutes in Hyderabadad

    ReplyDelete
  56. This comment has been removed by the author.

    ReplyDelete
  57. I find your opinion quite interesting, but the other day I stumbled upon a completely different advice from another blogger, I need to think that one through, thanks for posting.
    data analytics courses in malaysia

    ReplyDelete
  58. I like this post,And I figure that they making some incredible memories to scrutinize this post,they may take a good site to make an information,thanks for sharing it to me
    certification of data science

    ReplyDelete
  59. Actually I read it yesterday I looked at most of your posts but I had some ideas about it . This article is probably where I got the most useful information for my research and today I wanted to read it again because it is so well written.
    Data Science Course in Bangalore

    ReplyDelete
  60. You totally coordinate our desire and the assortment of our data.
    data science course delhi

    ReplyDelete
  61. Thanks for sharing this post.
    This article really useful for me and I learn a lot of things from this blog.
    I am working as a freelance full stack developer

    ReplyDelete
  62. Great blog post,
    Digital Marketing is right now the most stable job you could have. There are many openings for Digital Marketers around the globe. Hence we suggest you to attend our Digital Marketing Course in Hyderabad to acquire skills that a Digital Marketer needs.

    ReplyDelete
  63. Thank you so much for sharing all this wonderful information !!!! It is so appreciated!! You have good humor in your blogs. So much helpful and easy to read!
    Java Training in Pune

    ReplyDelete
  64. Thanks for Sharing a Very Informative Post & I read Your Article & I must say that is very helpful post for us.
    Data Science Course in Pune
    Python Classes in Pune
    Best AWS Training in Pune

    ReplyDelete
  65. Thank you quite much for discussing this type of helpful informative article. Will certainly stored and reevaluate your Website.

    AWS Training in Hyderabad

    ReplyDelete
  66. I recently came across your article and have been reading along. I want to express my admiration of your writing skill and ability to make readers read from the beginning to the end.
    Java Classes in Pune

    ReplyDelete
  67. Nice and very informative blog, glad to learn something through you.
    ai course in aurangabad

    ReplyDelete
  68. I'm extremely inspired along with your writing skills as neatly as with the format in your blog. Is that a paid subject or did you customize it yourself? Anyway stay up the excellent quality writing, it's rare to look at a great blog like this one today.. Bathroom Mirror

    ReplyDelete
  69. Excellent goods from you, man. I have understood your stuff previous to and you are simply extremely fantastic. I actually like what you’ve obtained right here, really like what you are saying and the way in which by which you are saying it. You are making it enjoyable and you still care to stay sensible. I can’t wait to read much more from you. This is really a wonderful site. Masters in Mechanical Engineering in Germany

    ReplyDelete
  70. Nice blog. it is very nice java question of interview. keep it up, Thanks for sharing these information with all of us. whatsapp mod

    ReplyDelete
  71. Great blog. keep sharing more.

    Full-stack developers have the qualifications and experience to add market-exciting features to your product. The experts can handle the entire stack from the ground up. If you want to see a return on your investment, you must rely on such knowledge. Not everyone is equipped to handle your web project from start to finish. Learn over 30 Full Stack tools and technologies and put them to use on numerous projects. Complete a Full stack training in Pune to master these abilities and land a job.
    (https://www.iteducationcentre.com/full-stack-training-institute-in-pune.php)

    ReplyDelete
  72. Java is a programming language that can create programmes for a variety of platforms. Sun Microsystems created Java, a high-level programming language. There are several programmes and websites that will not function unless Java is installed. It is a popular choice among developers and hubs since it is dependable, quick, and secure. Java can be found anywhere.

    Expertise in both front end and back end JavaScript-based technologies. more It-education-learning Java Classes In Pune

    ReplyDelete
  73. Wow it is one of the best things i came across on the internet.
    Java Classes in Pune

    ReplyDelete
  74. I like your blog. Your interview question really helpful for me. I gain more knowledge about java from your blog. If candidate want to know more about then you search 8 Most Common Guesstimate Interview Questions & Answers [For Freshers] for more questions.

    ReplyDelete
  75. This comment has been removed by the author.

    ReplyDelete
  76. Thanks for the blog, these questions really help in interview. To Learn a Java course, join an institute for Java course, which provides Java training in Kanpur, Gorakhpur, Delhi, Noida, and many more cities in India.

    ReplyDelete
  77. Great blog post! I found your insights on the topic to be really helpful and informative. Your writing style is engaging and easy to follow, making it a pleasure to read. Thanks for sharing valuable resources Besides this if you want to learn about Python Training Course in Mohali, Allahabad, Gurgaon, and all cities in India.

    ReplyDelete