logo

Crowdly

Browser

Add to Chrome

Questions Bank (1356963 total)

@JoinColumn annotation is used to specify the name of the column in the database for a JPA entity.
0%
100%
View this question
A 'foreign key' can be used to cross-reference tables outside the same database
0%
0%
View this question
Який порядок введення воєнного стану в Україні?
0%
0%
0%
0%
View this question
In the context of the First Normal Form (NF), every column in a table contains values of the same data type or the same domain.
100%
0%
View this question
The Entity Manager provides methods for interacting with the database, managing entity instances, and performing CRUD operations on entities within a Java application
100%
0%
View this question

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%
View this question
A disadvantage of strictly sequential execution is the low workload for the processor and the short waiting queue.
0%
100%
View this question
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%
View this question

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%
View this question
If there isn't enough memory, the process can continue by using more blocks for the outer relation (R)
0%
0%
View this question