Clinical Informatics Board Review (Mankowitz) Flashcards
Equation for RRR
ARR / Risk in Control Group
What is process mining?
Method of workflow analysis involving review of event log of an information system to see how various tasks are carried out.
What is a value stream map and when is it used?
- AKA end-to-end system map
- Shows all inputs, throughputs and outputs of a process
- Helps identify waste
Difference between bit vs byte vs hexadecimal vs kilobyte vs megabyte
- Bit = binary digit
- Byte = 8 bits
- Hexadecimal = base 16
8 bits can be represented as 2-digit hex number - Kilobyte = 1024 bytes
- Megabyte = 1024 kilobytes
Difference between FORTRAN and BASIC
FORTRAN
- Compiled language that needs to be passed through complier to convert source code to machine code.
- ENTIRE PROGRAM needs to be complete before comiler can begin.
BASIC
- Interpreted language that is passed through an interpreter
- Each line of program can be translated
What does a control structure refer to in programming?
Linguistic mechanisms that programmers use to tell a computer what to do (e.g. if/then/else block)
What does a loop refer to in programming?
Executes code over and over until a certain condition is met (e.g. for/next loop, while loop)
Iteration = each time the loop is run
4 parts of the cycle in Spiral Model of software depvelopment
- Analysis
- Evaluation
- Development
- Planning
What is rapid application development (RAD)
- Like spiral, attempts to reduce project risk by breaking project into smaller chunks
- Adheres to strict timelines (timeboxes). If there are delays, requirements are reduced to fit the timebox.
Difference between slicing and dicing
Slicing = looking at subsection of data when ONE of the dimensions is held constant
Dicing = looking at subsection of data when >1 dimensions are held constant
What is an OLAP cube
Online analytic processing (OLAP) cube is used to gather business intelligence
2 types of firewalls
- Packet filter - inspects packet to ensure it is coming from an acceptable source but does not inspect the contents of the packet
- Stateful inspection - inspects source + content of the packet. Bidirectional so helps prevent users from disseminating PHI
What is Network Address Translation
Process by which computers in a private network are able to share a public-facing address without divulging their local address. Usually done by router, but many firewalls also incorporate this functionality.
What is tinyint in SQL?
Whole number between -127 and +129
2^8 (256) possibilities –> can be stored in 8 bites (one byte)
What is unsigned int in SQL?
Whole numbers between 0 and 4,294,967,295 –> 2^32 different possibilities –> requires 4 bytes