What will be the output of following code ?<br/><br/>public static void main(String[] args) <br/>{ <br/> int x = 10; <br/> int y; <br/> if (x < 100) y = x / 0; <br/> if (x >= 100) y = x * 0; <br/> System.out.println("The value of y is: " + y); <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. What will be the output of following code ?

public static void main(String[] args)
{
int x = 10;
int y;
if (x < 100) y = x / 0;
if (x >= 100) y = x * 0;
System.out.println("The value of y is: " + y);
}
Ans. The code will not compile raising an error that the local variable y might not have been initialized. Unlike member variables, local variables are not automatically initialized to the default values for their declared type.

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

   Like         Discuss         Correct / Improve     java   code   default value


Related Questions

  Which keyword is used to provide explicit access of a code block to single thread ?

a. Transient
b. Final
c. Explicit
d. Synchronized
  How does volatile affect code optimization by compiler?
  Will this code give error if i try to add two heterogeneous elements in the arraylist. ? and Why ?
 What is the difference between the following two code lines ?

1. new OuterClass().new InnerClass();

2. new OuterClass.InnerClass();
  Which String class does not override the equals() and hashCode() methods, inheriting them directly from class Object?
 If arrays cannot be resized , Why is this code valid

String[] strArray = new String[2];
strArray = new String[5];
  Will the static block be executed in the following code ? Why ?
  If you are given a choice to implement the code to either Insert a Record or Update if already exist, Which approach will you follow ?
  Which of the following is not the advantage of Mocking frameworks ?
  How can we make sure that a code segment gets executed even in case of uncatched exceptions ?



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: