Multiple choice technology programming languages

You have the following code: public class Java { static double dSyntaxs; public static void main (String [] args) { Java IsItTrue = new Java(); IsItTrue.TrueSyntax(); } public void TrueSyntax() { System.out.println("Its: " + dSyntaxs); } } What would the output be?

    1. Its: 1
    1. Its: 0
    1. Its: true
  1. 4 Its: false

    1. Its: 0.0
Reveal answer Fill a bubble to check yourself
E Correct answer
Explanation

The variable dSyntaxs is a static member variable of type double. In Java, instance and static member variables of numeric types are automatically initialized to their default values, which is 0.0 for double.