logo

Crowdly

Browser

Додати до Chrome

Questions Bank (1356958 total)

Dada las siguientes interfaces correctamente declaradas:

public interface IReunion {

       Integer numParticipantes() throws Exception;

}

public interface ICelebracion thextends IReunion {

       String motivo();

}

¿qué error contiene la siguiente declaración?

import java.util.List;

public interface  IBanquete  extends  ICelebracion  {

       @Override List<String> motivo();

       Integer numParticipantes(String

paisOrigen)

;

}

0%
0%
0%
Переглянути це питання
A disadvantage of strictly sequential execution is the low workload for the processor and the short waiting queue.
0%
100%
Переглянути це питання
The 2-Phase Commit (2PC) protocol is not widely used in commercial DBMS for distributed recovery, as it is considered inefficient and unreliable in distributed environments
0%
0%
Переглянути це питання

Dadas las siguientes interfaces correctamente declaradas:

public interface IReunion {

       Integer

numParticipantes();

}

import java.time.LocalDate;

public interface IEvento {

              LocalDate fechaInicio();

}

¿qué error contiene la siguiente declaración?

public interface ICelebracion extends

IReunion, IEvento {

              Integer numParticipantes() throws Exception;

}

0%
0%
Переглянути це питання
If there isn't enough memory, the process can continue by using more blocks for the outer relation (R)
0%
0%
Переглянути це питання
"Unrepeatable reads" is a situation where the result of a transaction can be read only once due to other transactions.
0%
0%
Переглянути це питання

Dadas las siguientes interfaces correctamente declaradas:

public interface IReunion {

       Integer

numParticipantes();

}

public interface ICelebracion extends

IReunion {

      

String

motivo();

}

indica cómo se deben rellenar los espacios subrayados

(numerados entre corchetes) para que la siguiente declaración sea correcta y

corresponda a un diseño razonable :

public ____[1]_____  Celebracion ____[2]_____  ICelebracion {

       private String motivo;

       public Celebracion(String motivo) { this.motivo = motivo; }

       ____[3]_____ String motivo()   ____[4]_____

}

Переглянути це питання
Equivalent execution plans must comply with ACID properties (Atomicity, Consistency, Isolation, Durability) to ensure data consistency.
0%
0%
Переглянути це питання
SQL queries cannot perform mathematical calculations on data.
0%
0%
Переглянути це питання

Dada la siguiente interfaz correctamente declarada:

       public interface IEventoDeportivo {

              public abstract String getDeporte();

       }

¿Cuál de las siguientes declaraciones es correcta?

0%
0%
0%
Переглянути це питання