Đầu ra của chương trình sau là bao nhiêu?javaclass variable_scope{public static void main(String args[]){int x;x = 5;{int y = 6;System.out.print(x + " " + y);}System.out.println(x + " " + y);14/19Đầu ra của chương trình sau là bao nhiêu? class variable_scope { public static void main(String args[]) { int x; x = 5; { int y = 6; System.out.print(x + " " + y); } System.out.println(x + " " + y); } } Chọn một:5 6 5 65 6 5runtime errorcompilation errorGiải thíchChọn đáp án D