Edited, memorised or added to reading queue

on 16-Jun-2020 (Tue)

Do you want BuboFlash to help you learning these things? Click here to log in or create user.

Flashcard 5537721879820

Question

A partir de un informe de riesgos con recomendaciones ¿Cuál de las siguientes opciones no debe seguir el auditor de seguridad?

a) Establecer medidas y controles para disminuir las propiedades de que sucedan eventos o que disminuyan el daño

b) Eliminar los riesgos en la medida de lo posible

c) Volver a pedir un informe donde se incluyan las medidas a tomar por parte de la organización

d) Derivar el riesgo a una organización externa

Answer
c) Volver a pedir un informe donde se incluyan las medidas a tomar por parte de la organización

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 5537723714828

Question

¿Cuál de las siguientes no es propia de la Auditoría Informática, y si del Control Interno?

a) El análisis se lleva a cavado en un momento informático determinado

b) Se informa a la dirección general de la organización

c) Sólo puede intervenir personal interno

d) Tiene cobertura sobre todos los componentes de los sistemas de información de una organización.

Answer
c) Sólo puede intervenir personal interno

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 5537730792716

Question

¿Qué punto del informe de auditoría no se considera esencial?

a) Normativa aplicada

b) Identificación del informe y del auditor

c) Informes previos

d) Lista de distribución del informe definitivo

Answer
c) Informes previos

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 5537737084172

Question

La gestión de cambios con el modelo de ITIL V3 debe trabajar para asegurar que los cambios

a) Están justificados

b) Se llevan a cabo sin perjuicio de la calidad del servicio TI

c) Están convenientemente registrados, clasificados y documentados

d) Todas las otras opciones son correctas.

Answer
d) Todas las otras opciones son correctas.

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 5537794231564

Question
Chinese
Answer
[default - edit me]

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 5537795804428

Question
演唱会 yǎnchànghuì Noun concert
Answer
[default - edit me]

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







volatile if any of the following criteria are true:

  • The DepenDency introduces a requirement to set up and configure a runtime environment for the application. Databases are good examples. If you don’t hide a rela- tional database behind a Seam, you can never replace it by any other technol- ogy.
  • The DepenDency doesn’t yet exist, or is still in development.
  • The DepenDency isn’t installed on all machines in the development organization. This may be the case for expensive third-party libraries or D that can’t be installed on all operating systems. The most common symptom is disabled T .
  • The DepenDency contains nondeterministic behavior. This is particularly important in unit tests because all tests must be deterministic. Typical sources of nondeter- minism are random numbers and algorithms that depend on the current date or time.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




As developers, we gain control by removing a class’s control over its Deps . This is an application of the SRP

Classes shouldn’t have to deal with the creation of their Deps
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




The task of creating instances of Deps is referred to as Object Composition
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




When we delegate control over Dependency to a third party, we also provide the power to modify them before we pass them on to the classes consuming them.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




Dependencies must always be Abstractions
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




With Interseption(Decoration) and Aspect Oriented Programming, you can apply Cross-Cutting Concerns such as logging, auditing, access control, validation, and so forth in a well-structured manner that lets you maintain Separation of Concerns
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




DI must be pervasive. You can’t easily retrofit loose coupling onto an exist- ing code base.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




Dependency Injection is a set of software design principles and patterns that enables you to develop loosely coupled code. Loose coupling makes code more maintainable.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




When you have a loosely coupled infrastructure in place, it can be used by anyone and adapted to changing needs and unanticipated requirements without having to make large changes to the application’s code base and its infrastructure.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




DI enables late binding, which is the ability to replace classes or modules with different ones without the need for the original code to be recompiled.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




DI makes it easier for code to be extended and reused in ways not explicitly planned for, similar to the way you have flexibility when working with electrical plugs and sockets
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




DI simplifies parallel development on the same code base because the Separa- tion of Concerns allows each team member or even entire teams to work more easily on isolated parts.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




DI makes software more Testable because you can replace Deps with mocks when writing unit tests.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




When you practice DI, collaborating classes should rely on infrastructure to pro- vide the necessary services. You do this by letting your classes depend on inter- faces, instead of concrete implementations.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




Classes shouldn’t ask a third party for their D . This is an anti-pattern called S L . Instead, classes should specify their required D - statically using constructor parameters, a practice called C I
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




One of the most important software design principles that enables DI is the Liskov Subsctitution Principle . It allows replacing one implementation of an interface with another without breaking either the client or the implementation
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




To succeed, you need to apply DI pervasively. All classes should get their required Volatile Deps using Constructor Injection . It’s hard to retrofit loose coupling and DI onto an existing code base.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




The human kidney secretes two hormones
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

Hormones of the Kidney, Skin, and Heart
nd Heart Index to this page Kidney Erythropoietin (EPO) Calcitriol Calcitriol Action Deficiency disorders Renin Skin Heart Natriuretic Peptides Hormones of the Kidney, Skin, and Heart 1. Kidney <span>The human kidney secretes two hormones: Erythropoietin (EPO) Calcitriol (1,25[OH]2 Vitamin D3) as well as the enzyme renin. Erythropoietin (EPO) Erythropoietin is a glycoprotein . It acts on the bone marrow to increase the p