Will the following program display ""Buggy Bread"" ?<br /> <br /> class Test{<br />    static void display(){<br />       System.out.println(""Buggy Bread"");<br />    }<br /> }<br /> <br /> class Demo{<br />    public static void main(String... args){<br />       Test t = null;<br />       t.display();<br />    }<br /> }
Javasearch.buggybread.com

Search Interview Questions


 More than 3000 questions in repository.
 There are more than 900 unanswered questions.
Click here and help us by providing the answer.
 Have a video suggestion.
Click Correct / Improve and please let us know.
Label / Company      Label / Company / Text

   



Interview Questions and Answers

 Q1. Will the following program display ""Buggy Bread"" ?

class Test{
   static void display(){
      System.out.println(""Buggy Bread"");
   }
}

class Demo{
   public static void main(String... args){
      Test t = null;
      t.display();
   }
}
Core Java
Ans.  Yes. static method is not accessed by the instance of class. Either you call it by the class name or the reference.

 Help us improve. Please let us know the company, where you were asked this question :   

   Like         Discuss         Correct / Improve     java   static   static method   code


Related Questions

  How can we run a java program without making any object?
  What are the advantages and disadvantages of static variables and static methods ?
  Can we access instance variables within static methods ?
  How can we create objects if we make the constructor private ?
  Similarity and Difference between static block and static method ?
 In which cases , moving methods to utility class could be useful ?
  Can we override static methods ? Why ?
  Can we use static method definitions in Interfaces ?
  Why can't we use this in static context ?
  Interface can only have ...



Help us and Others Improve. Please let us know the questions asked in any of your previous interview.

Any input from you will be highly appreciated and It will unlock the application for 10 more requests.

Company Name:
Questions Asked: