C++

 

– What is the output of the following program?

#include

using namespace std;
class abc {
  public:
     static int x;
     int i;

     abc() {
        i = ++x;
     }
  };
int abc::x;

main() {
  abc m, n, p;
  
  cout< }

Five Network Questions on Virtualization 030318

  

Five Network Questions on Virtualization 030318

1. Explain how a virtual machine works. Describe the architecture, the basic configuration, and the components. What are the basic hardware requirements for Windows Server 2012/R2 Hyper-V?

2. Describe the various improvements in Version 3 of Hyper-V found in Windows Server 2012/R2. List at least five feature enhancements. Explain how these improvements increase the functionality of Hyper-V.

3. In a table, compare Microsoft’s Hyper-V to VMware’s server product.
Vendor Product Features Licensing

4. Outline the differences between a Generation 1 and Generation 2 VM. What are some of the specifications for Generation 2? What is a limitation of Generation 2?

5. Explain the use of Hyper-V virtual networks. Describe the three types and their use.

 

IT214 Week 7

Weekly Assignment/Discussions via Unicheck:

 From the lecture notes, run two Python Fibonacci sequence programs; One as a Recursion and the other as an iteration. Make your maximum recursion and iterations 1000. Can you see a difference in the time they take to run? Add a timer in the programs if you like, but can you visually see the difference?

Discussion 8- Org behavior

Chapter 8.  Motivation: From Concepts to ApplicationsInitial Postings: Read and reflect on the assigned readings for the week. Then post what you thought was the most important concept(s), method(s), term(s), and/or any other thing that you felt was worthy of your understanding in each assigned textbook chapter.Your initial post should be based upon the assigned reading for the week, so the textbook should be a source listed in your reference section and cited within the body of the text. Other sources are not required but feel free to use them if they aid in your discussion.Also, provide a graduate-level response to each of the following questions:

  1. Lewis Vacation Rentals has been experiencing a recent decline in its bookings. In an effort to increase sales, the company is offering its employees a 1 percent share in the company profit over the next six months in addition to regular employee salaries. Will this plan increase motivation? Why or why not? 
[Your post must be substantive and demonstrate insight gained from the course material. Postings must be in the student’s own words – do not provide quotes!]  [Your initial post should be at least 450+ words and in APA format (including Times New Roman with font size 12 and double spaced). Post the actual body of your paper in the discussion thread then attach a Word version of the paper for APA review]

Text-

Title: Essentials of Organizational Behavior, Student Value Edition 

ISBN: ISBN-13: 9780135468890 

Authors: Stephen P. Robbins, Timothy A. Judge 

Publisher: Pearson 

Edition: 15TH

Research Paper – Information Governance

Important Note: Please write this topic on   Impact of Health Information Technology on Patient. Since this is my final topic.Attaching the introduction, Literature review, and annotated bibliography  which I submitted

Please read below requirement fully and write 6 or more pages.

You have recently been hired as a Chief Information Governance Officer (CIGO) at a large company (You may choose your industry).  This is a newly created position and department within the organization that was founded on the need to coordinate all areas of the business and to provide governance of the information.  You will need to hire for all positions within your new department.

The company has been in business for more than 50 years and in this time has collected vast amounts of data.  Much of this data has been stored in hard copy format in filing cabinets at an offsite location but in recent times, collected business data is in electronic format stored in file shares.  Customer data is being stored in a relational database, but the lack of administration has caused data integrity issues such as duplication.  There are currently no policies in place to address the handling of data, business or customer. The company also desires to leverage the marketing power of social media, but has no knowledge of the types of policies or legal issues they would need to consider. You will also need to propose relevant metrics that should be collected to ensure that the information governance program is effective.

The CEO and Board of Directors have tasked you to develop a proposal (paper) that will give them the knowledge needed to make informed decisions on an enterprise-wide Information Governance program, addressing (at a minimum) all of these issues, for the company.  

Requirements:

The paper should include at a minimum of the following sections:

a. Title page

b. Executive Summary (Abstract)

C. Program and technology recommendations, including:

1. Metrics

2. Data that matters to the executives in that industry, the roles for those executives, and some methods for getting this data into their hands.

3. Regulatory, security, and privacy compliance expectations for your company

4. Email and social media strategy

5. Cloud Computing strategy

d. Conclusion

Assignment 3

Subject: Physical Security

Question:  The subject is CPTED (Crime Prevention Through Environmental Design) Best Practices. 

 

For this assignment: The 4 Heading-1s are required. Each Heading-1 must have at least 3 Heading-2s. Each Heading must have at least 2 properly formatted paragraphs with 3 properly formatted sentences each. 

– References 

– APA 7 Format

– 400 words

–  No plagiarism 

——————————————————————————————————————————–

Here I am attaching the template please follow accordingly. once done with the above question, please include the remaining two assignments in the paper and make them look proper in template format.

Assignment 2 was done by you

assignment 3 was done by some else

Need Help With The SQL Server Database

  

1. Using the attached ERD file (animal hospital.pdf), the Normalization Table excel file (Normalization Table Animal Hospital.xlsx) create tables and insert the data form the normalization table. i.e.:

Ensure every table has a primary key, create a new database for this exercise, this way if you need to you can delete the database and start over. i.e.:

CREATE DATABASE animal_hospital;

GO

USE animal_hospital;

GO

DDLs/DMLs goes here

Screen shot goes here

2. Using the ERD add foreign keys to the tables that require them (should be five foreign keys). 

DDLs goes here

Screen shot goes here

3. Alter or update the tables in the animal_hospital database as follows:

a. Change the size of the street column in the customer table to char(250).

DDL goes here

Screen shot goes here

b. Add a constraint to the customer table so only the two digit abbreviation for the stat can be used. (only do New York, New Jersey, Connecticut)

DDL goes here

Screen shot goes here

i. Try inserting the following DML command into the customer table. What error did you get?
INSERT INTO dbo.Customer values( 204,’Ms.’,’Helen’,’Smith’, ‘750 King Street’,’Springfiele’,’MO’,’52145′);

Answer goes here

Screen shot goes here

4. Using the SELECT INTO Statement copy the pet name from dbo.pet, the type of pet from dbo.pet_type, and the whole name of its owner including salutation in one column. See example of solution for column names.

DML goes here

Screen shot goes here

  

5. Using the INSERT SELECT Statement create a table of 3 columns that will hold the copied data of the pet id from dbo.pet, the name of the pet from dbo.pet, and the type of animal 

DML goes here

Screen shot goes here