Foram encontradas 181 questões

Resolva questões gratuitamente!

Junte-se a mais de 4 milhões de concurseiros!

Q1151099 Inglês
The sentence “Do you really mean that?” taken from the comic strip, express:
Alternativas
Q1151098 Inglês
In the sentence “It wouldn’t be heaven”, Hagar states something that:
Alternativas
Q1151097 Inglês
The characters in the comic strip are talking about going to heaven. Mark what is TRUE about what Hagar, the character of the left, say to Eddie, the character of the right:
Alternativas
Q1165733 Inglês
In the area of telecommunication, the English words may have different meanings from those literal meanings they bear into the language. Taking that into account, it is correct to state that the term Gateway refers to:
Alternativas
Q1165732 Inglês
Structured cabling using a UTP twisted-pair cable (not shielded) consists of several strands twisted between pairs and between strands. About the braided effect, we can say that:
Alternativas
Q1165653 Inglês

Team Composition


      In a large organization, it is often the case that different roles emerge. In Tayloristic teams, these different roles are grouped together as a number of role-based teams each of which contains members of the same role. In contrast, agile teams use cross-functional teams. Such a team draws together individuals performing all defined roles. Rotations from one role to another are common. It is also possible to have highly specialized experts (for example, security analysts and usability engineers) shared among several teams in an organization.

      One advantage to role-based teams is that teams whose work products are independent of each other can work in parallel as long as there is not much knowledge flow among the different functional sub-team. However, in knowledgeintensive software development that demands information flow from different functional sub teams, role-based teams tend to lead to islands of knowledge and difficulty in its sharing among all the teams. As hand-offs between teams usually are based on document flow, the knowledge of one team that is required by the other team must be externalized and documented. Although reviews try to minimize the knowledge loss, externalization and documentation processes cannot guarantee that all knowledge is captured and even if most of it was rigorously captured, there is still no guarantee or way to check its correctness till the project sign-off.

      Cross-functional teams should be used to facilitate better knowledge transfer. This is especially the case for agile methods since they are recommended to be used where there is a lot of uncertainty and unknown knowledge about the domain and system requirements, and the technologies to be used are new and unexplored.

Adaptado de: CHAU THOMAS, MAURER FRANK e MELNIK GRIGORI. Knowledge Sharing: Agile Methods vs. Tayloristic Methods. (WETICE´03) Proceedings of the Twelft IEEE International Workshop on Enabling Technologies: Infrastructure for Collaborative Enterprises, 2003.

What is the grammatical form of the word “Although” used in the second paragraph of the text?
Alternativas
Q1165652 Inglês

Team Composition


      In a large organization, it is often the case that different roles emerge. In Tayloristic teams, these different roles are grouped together as a number of role-based teams each of which contains members of the same role. In contrast, agile teams use cross-functional teams. Such a team draws together individuals performing all defined roles. Rotations from one role to another are common. It is also possible to have highly specialized experts (for example, security analysts and usability engineers) shared among several teams in an organization.

      One advantage to role-based teams is that teams whose work products are independent of each other can work in parallel as long as there is not much knowledge flow among the different functional sub-team. However, in knowledgeintensive software development that demands information flow from different functional sub teams, role-based teams tend to lead to islands of knowledge and difficulty in its sharing among all the teams. As hand-offs between teams usually are based on document flow, the knowledge of one team that is required by the other team must be externalized and documented. Although reviews try to minimize the knowledge loss, externalization and documentation processes cannot guarantee that all knowledge is captured and even if most of it was rigorously captured, there is still no guarantee or way to check its correctness till the project sign-off.

      Cross-functional teams should be used to facilitate better knowledge transfer. This is especially the case for agile methods since they are recommended to be used where there is a lot of uncertainty and unknown knowledge about the domain and system requirements, and the technologies to be used are new and unexplored.

Adaptado de: CHAU THOMAS, MAURER FRANK e MELNIK GRIGORI. Knowledge Sharing: Agile Methods vs. Tayloristic Methods. (WETICE´03) Proceedings of the Twelft IEEE International Workshop on Enabling Technologies: Infrastructure for Collaborative Enterprises, 2003.

According to the text, what should be an agile time?
Alternativas
Q1165628 Inglês

Portfolio managers must construct investment portfolios that:


I. Maximize return for a given risk

II. Minimize risk for a given return

III. Avoid high correlation

IV. Are tailored to the individual company

Alternativas
Q1165598 Inglês
When an IT company wants to control their IT projects, two paradigms collide. Mark the alternative that best describes such paradigms:
Alternativas
Q1165578 Inglês
In information systems, it is necessary that the user has an access name to use the system. Thus, it is correct to state that login refers to:
Alternativas
Q1165577 Inglês
Knowledge of technical English is essential for the IT field. Thus, concerning technical English, it is correct to say that handshaking is:
Alternativas
Q1165467 Inglês
There is a type of network that has immeasurable geographical dimensions. This means that it can interconnect all continents, countries and large regions using more extensive links, such as satellites or cables (submarines or terrestrial). Based on this assertion, we can identify as being such network the
Alternativas
Q1165443 Inglês
By stating that the PMBOK is generally accepted, what generally accepted mean?
Alternativas
Q1165442 Inglês

Choose the alternative that presents the management skill associated with the following statements:


“Establishing direction—developing both a vision of the future and strategies for producing the changes needed to achieve that vision”

“Aligning people—communicating the vision by words and deeds to all those whose cooperation may be needed to achieve the vision.”

Alternativas
Q1165416 Inglês
In late January 2003, the SQL Slammer worm infected more than 250,000 hosts in less than two hours. SQL Slammer exploited a well-known flaw in the Microsoft SQL Server 2000, which was officially reported by Microsoft on July 2002. Choose the alternative that describes the vulnerability associated with this situation:
Alternativas
Q1165353 Inglês

Set the Table

When you begin writing tests, you will discover a common pattern:


1. Create some objects

2. Stimulate them

3. Check the results


While the stimulation and checking steps are unique test-to-test, the creation step is often familiar. I have a 2 and 3. If I add them, I expect 5. If I subtract them, I expect – 1, if I multiply them, I expect 6. The stimulation and expected results are unique, the 2 and the 3 don’t change.

If this pattern repeats at different scales (and it does), then we’re faced with the question of how often do we want to create new objects. Looking back at our initial set of constraints, two constraints come into conflict:


· Performance—we would like our tests to run as quickly as possible

· Isolation—we would the success or failure of one test to be irrelevant to other tests


For performance sake, assuming creating the objects (we’ll call them collectively the “fixture”) is expensive, we would like to create them once and then run lots of tests.

But sharing objects between tests creates the possibility of test coupling. Test coupling can have an obvious nasty effect, where breaking one test causes the next ten to fail even though the code is correct. Test coupling can have a subtle really nasty effect, where the order of tests matters. If I run A before B, they both work, but if I run B before A, then A fails. Worse, the code exercised by B is wrong, but because A ran first, the test passes.

Kent Beck – Test-Driven Development By Example. Addison-Wesley Professional; Edição: 1. Novembro, 2002. Page 82.

According to the text, as you begin to write tests you will discover a pattern. What pattern is it?
Alternativas
Q1165352 Inglês

Set the Table

When you begin writing tests, you will discover a common pattern:


1. Create some objects

2. Stimulate them

3. Check the results


While the stimulation and checking steps are unique test-to-test, the creation step is often familiar. I have a 2 and 3. If I add them, I expect 5. If I subtract them, I expect – 1, if I multiply them, I expect 6. The stimulation and expected results are unique, the 2 and the 3 don’t change.

If this pattern repeats at different scales (and it does), then we’re faced with the question of how often do we want to create new objects. Looking back at our initial set of constraints, two constraints come into conflict:


· Performance—we would like our tests to run as quickly as possible

· Isolation—we would the success or failure of one test to be irrelevant to other tests


For performance sake, assuming creating the objects (we’ll call them collectively the “fixture”) is expensive, we would like to create them once and then run lots of tests.

But sharing objects between tests creates the possibility of test coupling. Test coupling can have an obvious nasty effect, where breaking one test causes the next ten to fail even though the code is correct. Test coupling can have a subtle really nasty effect, where the order of tests matters. If I run A before B, they both work, but if I run B before A, then A fails. Worse, the code exercised by B is wrong, but because A ran first, the test passes.

Kent Beck – Test-Driven Development By Example. Addison-Wesley Professional; Edição: 1. Novembro, 2002. Page 82.

Based on the text it is correct to state about the coupling of tests that:
Alternativas
Q1165328 Inglês
The CPU can request data from an I/O controller, one byte at a time, but by doing so, it wastes a large chunk of the CPU. Another way of accomplishing the same work without this waste is:
Alternativas
Q1165327 Inglês
Clocks, also called timers, are essential for the operation of any multiprogrammed system. About clocks, we can say that:
Alternativas
Q1152744 Inglês
Regarding the network components there are also names that use English words. Thus, it is correct to say that hostname is:
Alternativas
Respostas
121: A
122: C
123: B
124: A
125: E
126: C
127: B
128: E
129: D
130: C
131: E
132: A
133: D
134: B
135: B
136: C
137: E
138: C
139: A
140: A