andrewn7538 andrewn7538 16-05-2023 Computers and Technology contestada Analyze the following code. public class Test { int x; public Test(String t) { System.out.println("Test"); } public static void main(String[] args) { Test test = new Test(); System.out.println(test.x); } }