logo

Crowdly

Browser

Add to Chrome

Questions Bank (1399326 total)

   

Яка логічна

помилка наявна у визначенні: «Механік – це людина»?

View this question

Скільки є основних законів логіки ?

View this question

Як називається логічна помилка, допущена навмисно?

View this question

Як називається логічна

помилка, допущена ненавмисно, через незнання?

0%
0%
0%
0%
View this question

Seleccione la respuesta correcta acerca de recoger resultados cuando una etapa se completa.

0%
0%
0%
0%
View this question

Seleccione la respuesta correcta: Para asegurar que una nueva tarea se empezará a ejecutar cuando 12 tareas previas hayan terminado...

0%
0%
0%
0%
View this question

El siguiente código es erróneo ya que (seleccione la opción correcta):

CompletableFuture<?> prevCS = new CompletableFuture<>();

prevCS.supplyAsync(() -> {

    List<Integer> list = List.of(1,2,3,4,5);

    for(Integer element:list){ System.out.println(Math.pow(element,2));}

});

0%
0%
0%
View this question

Teniendo el siguiente código incluido en una función main, al ejecutarlo resultará (seleccione la respuesta correcta):

CompletableFuture<List<Integer>> prevCS = new CompletableFuture<>();

        prevCS.supplyAsync(() -> {

                    List<Integer> list = List.of(1,2,3,4,5);

                    List<Integer> squared = new ArrayList<>();

                    for(Integer element:list){ squared.add((int) Math.pow(element,2));}

                    return squared;

        })

                .thenAccept(()->{

                    System.out.println(squared);

                });

0%
0%
0%
View this question

Seleccione la afirmación incorrecta sobre CompletableFuture:

0%
0%
0%
View this question

Обов’язковою рисою логічно правильного мислення є його - ?

0%
0%
0%
0%
View this question