5 Projects related to Big Data
security
Write an of at least 500 words discussing the Safe Harbor provisions under HIPAA.
Digital Forensics 9 – Assignment
Use the web or other resources to research at least two criminal or civil cases in which recovered files played a significant role in how the case was resolved.
Graphical Methods (Create a mathematical graph)
- Choose any Excel dataset from Content > Course Resources. (Attached to this) From that dataset, select any qualitative variable and create an appropriate graph that describes that variable. Use Excel to do this. Be sure to fully label the graph.
- From the same dataset, select any quantitative variable and create an appropriate graph that describes that variable. Use Excel to do this. Be sure to fully label the graph.
- Next, open a Word document. Paste both of your graphs into the Word document. Include under each graph, the name of the dataset you chose, the name of the variable you are graphing, and why the graph you chose is appropriate.
GO16_AC_CH08_GRADER_8G_AS – Inventory Management
GO16_AC_CH08_GRADER_8G_AS – Inventory Management
Send me message if you need this Solution at your Own file
Start Access. Download, save, and open the database named go_a08_grader_a3.accdb.
Open the Intro Screen form in Design view. Change the Pop Up and Modal properties to Yes. Save and Close the form
Create a macro to open the Intro Screen form with the comment Opens the Intro Screen form immediately following the action. In the Show/Hide group, be sure the Show All Actions button is active. Save the macro as autoexec.
Add the action OpenForm to open the Inventory Data form with the comment Opens the Inventory Data form immediately following the action.
Add the action DisplayHourglassPointer with the Comment Displays the busy icon immediately following the action.
Add the Echo action. In the Echo Action Block, change the Echo On box to No. Click in the Status Bar Text box, and then type Macro is running. Add the comment Hides the flickering screen as the macro runs immediately following the action.
Move the first OpenForm action and comment below the Echo macro comment. Save and close the macro.
Open the Inventory Data form in Design view. In the Detail Section, add a Button control at the 2-inch mark on the horizontal ruler and three dots below the Detail section bar with the caption &Inventory List. Embed a macro to Open the Inventory by Vendor report in Print Preview. Save and Close the macro. Save and close the form.
Open the Employees table in Datasheet view. Add a data macro Before Change. Add the If Block with the condition [# Hours]>=32.
In the If Block, add the SetField action to set Status to “Full time”.
In the If Block, add an Else block, and then add the SetField action to set Status to “Part time”. Close the Macro Designer, saving changes. Save the table.
In Record 4, update the # Hours to 18, in Record 5 update the # Hours to 33. Click in the first field in the first record, and notice the updates to the Status field. Close the table.
Save the database. Close the database, and then exit Access. Submit the database as directed.
Digital forensics
Describe the plain view doctrine, and why it has such a significant impact on digital forensics?
What are three approaches to determining whether the doctrine applies to a specific case.
350 words.
Graduate Professional Experience
Journal Entry # 1
- State ONE Objective or Task or Goal you have been charged with thus far
- Use the SMART acronym to identify the aspects of the goal
- For each parameter of the SMART acronym
- State what the letter of the acronym stands for
- State one SMART objective
- Provide one answer/plan for the objective(1 point)
- I want you to provide a real life work situation – not a generic description. Your example should reveal to me the types of duties &responsibilities you are engaged in
- OBJECTIVE:As you know – the policies of any institution is crucial to employee performance.The focus of Week # 2 can be considered equivalent to the HR necessities of the workplace. The assignment is focused on the syllabus, course requirements, tentative schedule and course expectations
- 4.Submit your assignment as a Power Point Presentation
- Maximum 7 slides including the title slide
- o Slides beyond the maximum permitted will not be read or graded
- Use one slide to address each parameter
- Use a bullet format
- Be sure all the content is easy to read
- Be mindful of bold backgrounds; difficult to read fonts and font size
- Be sure to use correct spelling and grammar
- Academic integrity is always in effect and your submission should be your own work specific to your internship experience
- 5. Title Slide – Label accordingly
- 23/Spring – Course Number-Section Number
- Week # – Name of Activity
- Name
- Due Date:
- 6. Grading Rubric – 5 points per slide
o Identification of the parts of the acronym 1 point
o State the SMART objective 2 points
o Provide an answer/plan for the objective 1point
o Adherence to format, correct spelling & grammar 1point
IG Wk10
2 full pages – 550 words
We learn from our readings that the use of mobile devices in our society today has indeed become ubiquitous. In addition, CTIA asserted that over 326 million mobile devices were in use within The United States as of December 2012 – an estimated growth of more than 100 percent penetration rate with users carrying more than one device with notable continues growth. From this research, it’s evident that mobile computing has vastly accelerated in popularity over the last decade due to several factors noted by the authors in our chapter reading. In consideration with this revelation, identify and name these factors, and provide a brief discussion about them.
CPT assignment
Instruction for the CPT Paper – Working as Java Developer- Current Course: BUS ETHICS & SOCIAL RESPONSIBILITY
The CPT paper is a minimum of 750 words in length, written in APA format including references and citations. Select a concept or theory covered in one of your current courses. Apply this concept/theory in your current work environment. Evaluate this concept/theory based on the application to your current work environment. Does your experience in your current work environment support this concept/theory or refute this concept/theory? Your reference list should include at least two (2) scholarly journals (use library database such as EBSCO). Be sure to include proper citation and/or quotation according to the APA format.
You are asked to develop a replicator (client) that distributes a large job over a number of computers (a server group) on a single switched LAN (our Linux lab).
Description:
You are asked to develop a replicator (client) that distributes a large job over a number of computers (a server group) on a single switched LAN (our Linux lab). In this assignment, a large (simulation) job can be divided into a number of small jobs, each of which can be assigned to one machine from the server group for execution. The execution results of the small jobs can be merged once all of them successfully terminate.
System Architecture:
client server1 server2 server3 …
| | | |
| | | |
LAN |
---|
The client and servers are running Network File System (NFS) so that user files are visible at $HOME directory. You may want to set up the following environment:
$HOME/replicate.hosts: a list of (server) hostnames which participate in the simulation. There is no reason why your implementation cannot support up to 10 servers.
$HOME/replicate_out: the directory that stores the small job execution result.
The simulation program ” hyper_link ” (binary) is provided. In this assignment, you don’t need to know or care what “hyper_link” does, and actually it is a computing intensive (CPU demanding) simulator. The command line arguments of “hyper_link” are job# 1000000 999 1 2 2 100, where the job number determines the number of small jobs in your simulation. To allow the client to run a large job, the job# should be given in a tuple: start, end, and step. For example, the command (from the client) “hyper_link 1 100 1 1000000 999 1 2 2 100” yields 100 small jobs with the job# starting from 1 to 100. Each small job produces a screen output (see example below) at the end (if finished successfully). Your code needs to redirect the output to a file and save it in $HOME/replicate_out. For example (on the server side),
./hyper_link 1 1000000 999 1 2 2 100
will produce a screen output looks like (it takes approximately 2 minutes on spirit):
1:1000000:999:2:0.5:1.125193e+00:2.454346e-04:6.251640e-01:2.205078e-04:0.000000e+00:0.000000e+00
You can only use C programming lanuage to complete this project. Your implementation should not rely on any extra library (to compile your code). Your code must compile by using gcc install on the Linux workstations