1z0-809 試験問題 91
与えられた条件:

What is the result?

What is the result?
1z0-809 試験問題 92
与えられた条件:

ラムダ式を作成するために使用できるインターフェースはどれですか? (2 つ選択してください。)

ラムダ式を作成するために使用できるインターフェースはどれですか? (2 つ選択してください。)
1z0-809 試験問題 93
次のコードフラグメントがあるとします:
パブリッククラスFileThreadはRunnableを実装します{
文字列 fName;
パブリックFileThread(文字列fName) { this.fName = fName; }
パブリック void run () System.out.println(fName);}
パブリック静的void main(String[] args)はIOException、InterruptedExceptionをスローします{
ExecutorService executor = Executors.newCachedThreadPool();
Stream<Path> listOfFiles = Files.walk(Paths.get("Java プロジェクト"));
listOfFiles.forEach(行 -> {
executor.execute(新しいFileThread(line.getFileName().toString())); //
行n1
});
executor.shutdown();
executor.awaitTermination(5, TimeUnit.DAYS);//
行n2
}
}
Java プロジェクト ディレクトリが存在し、ファイルのリストが含まれています。
結果はどうなりましたか?
パブリッククラスFileThreadはRunnableを実装します{
文字列 fName;
パブリックFileThread(文字列fName) { this.fName = fName; }
パブリック void run () System.out.println(fName);}
パブリック静的void main(String[] args)はIOException、InterruptedExceptionをスローします{
ExecutorService executor = Executors.newCachedThreadPool();
Stream<Path> listOfFiles = Files.walk(Paths.get("Java プロジェクト"));
listOfFiles.forEach(行 -> {
executor.execute(新しいFileThread(line.getFileName().toString())); //
行n1
});
executor.shutdown();
executor.awaitTermination(5, TimeUnit.DAYS);//
行n2
}
}
Java プロジェクト ディレクトリが存在し、ファイルのリストが含まれています。
結果はどうなりましたか?
1z0-809 試験問題 94
Given the code fragments:

and

Which two modifications enable to sort the elements of the emps list? (Choose two.)

and

Which two modifications enable to sort the elements of the emps list? (Choose two.)
1z0-809 試験問題 95
与えられた条件:

プログラムはどのようなスレッドの問題が発生していますか?

プログラムはどのようなスレッドの問題が発生していますか?
