Questões de Concurso
Para trt - 24ª região (ms)
Foram encontradas 1.424 questões
Resolva questões gratuitamente!
Junte-se a mais de 4 milhões de concurseiros!
Considere que uma equipe está trabalhando no desenvolvimento de um software com base em práticas e métricas ágeis e, em uma dada Sprint, a situação é apresentada pelo quadro abaixo.
Neste cenário é correto afirmar que
O Tribunal Regional do Trabalho da 24ª Região desenvolveu o mapa estratégico do PETI 2015-2020 mostrado na figura abaixo.
No mapa estratégico, de acordo com os fundamentos do Balanced Scorecard − BSC,
“It provides methods for classifying architecture and solution artifacts, both internal and external to the Architecture Repository, as they evolve from generic Foundation Architectures to Organization-Specific Architectures.
It enables the architect to articulate the broad perspective of what, why, and how the enterprise architecture has been designed with the factors and drivers considered. It is an important aid to communication and understanding, both within individual enterprises, and between customer enterprises and vendor organizations. Without an understanding of ‘where in the continuum you are’, people discussing architecture can often talk at cross-purposes because they are referencing different points in the continuum at the same time, without realizing it.
It enables the organization of reusable architecture artifacts and solution assets to maximize the enterprise architecture investment opportunities.
The simplest way of thinking of it is as a view of the repository of all the architecture assets. It can contain architecture descriptions, models, building blocks, patterns, viewpoints, and other artifacts - that exist both within the enterprise and in the IT industry at large, which the enterprise considers to have available for the development of architectures for the enterprise.”
(Source: http://pubs.opengroup.org/architecture/togaf9-doc/arch/chap39.html).
Considering The Open Group Architecture Framework − TOGAF, the text describes the
Uma sequência pode ser criada com a seguinte regra: escolhe-se um número natural maior que 100, para ser o primeiro termo dessa sequência. Se o termo da sequência é um número natural PAR, o termo seguinte deverá ser a metade desse número PAR; se o termo da sequência for um número natural ÍMPAR, deve-se somar 13 a esse número ÍMPAR e em seguida calcular a metade dessa soma para obter o termo seguinte. Segue um exemplo: se um termo da sequência é o número 137, que é ÍMPAR, o termo seguinte será 75, que é a metade da soma entre 137 e 13.
O 8° termo de uma sequência, criada com essa regra e com termo inicial igual a 4855, é
Consider the following statements about portlets:
I. Portlets can't contain anything from static HTML content to Java controls to complex web services and process-heavy applications.
II. Portlets are modular panes within a web browser that surface applications, information, and business processes.
III. Portlets can communicate with each other and take part in Java page flows that use events to determine a user’s path through an application.
IV. A single portlet can't have multiple instances − in other words, it can't appear on a variety of different pages within a single portal.
The correct statements are only
Considere a classe Java a seguir:
Ao executar essa classe
Considere o método a seguir, retirado de uma classe Java que utiliza JPA, implementada em condições ideais.
public List consultar(String n) {
x = Persistence.createEntityManagerFactory("conectarPU");
y = x.createEntityManager();
z = y.getTransaction();
z.begin ();
Query q = y.createQuery("SELECT f FROM Funcionario f WHERE f.nomefuncionario LIKE :nome");
q.set Parameter("nome", "%" + n + "%");
List lista = q.getResultList();
x.close();
return lista;
}
As variáveis x, y e z são, respectivamente, dos tipos
Considere o programa Java a seguir:
public class Teste {
public static void main(String[] args) {
int a, b, x, y;
a = 3;
b = -2;
x = -1;
y = 6;
x += b;
y /= a;
b - - ;
System.out.println(x);
System.out.println(y);
System.out.println(b);
}
}
Os valores exibidos serão, respectivamente,