Security Management Models

 

Describe the InfoSec management models, selection of InfoSec management models, the fundamental elements of key InfoSec management practices, emerging trends in the certification and accreditation of U.S. federal information technology (IT) systems, key components and implementation strategies of a security performance measurement programs.

Security Management Models

InfoSec models are standards that are used for reference or comparison and often serve as the stepping-off point for emulation and adoption. As the Chief Information Officer, you have been tasked to provide a report to senior management concerning the Access Control Models and how the implementation of this model secures the organizations information system from external and insider threats.

Prepare a 350- to 1,050-word paper that fully discusses the topic questions

Format your paper consistent with APA guidelines. Format your paper consistent with APA guidelines.

GO19_AC_IntegratedB – Taos Welcome 1.0

  

#GO19_AC_IntegratedB – Taos Welcome 1.0

#GO19 AC IntegratedB – Taos Welcome 1.0

#GO19ACIntegratedBTaosWelcome 1.0

  

Project Description:

In this Project, you will link and update Excel data in a Word document. You will use Word’s mail merge feature and data stored in an Access database to create individualized memos.

  

#Open   the Word file Student_i01B_Welcome_Memo.docx downloaded with this project.   Display the rulers and formatting marks.

#Leave your Word document open, and then   from the files downloaded with this Project, open the Excel file i01B_Taos_Inventory.xlsx.
 

  #Select the range A3:B22. On the Home tab, in the Clipboard group, click Copy.

#From the taskbar, display your Word   document. Below the paragraph that begins I   am pleased to welcome you, click in the blank paragraph.
 

  #On the Home tab, in the Clipboard group, click the Paste button arrow, and   then click Paste Special. In the Paste Special dialog box, click the Paste   button, and then under As, click Microsoft Excel Worksheet Object. Click OK.

#Click in the table to select this object   (sizing handles display), and then on the Home tab, in the Paragraph group,   click Center.

#Point to the table, and then double-click   to edit the Excel Object.
 

  #Click cell B9, type 389.99 and   then press ENTER. Click cell B15, type 379.99 and   then press ENTER. Click anywhere outside the Excel Object editable window to   close the Excel Object edit view.
 

  #Save the Word document to save these changes and leave the document displayed   on your screen.

#With your Word document still displayed,   open the Access database downloaded with this Project Student_1B_All_Associates.accdb and if necessary, click Enable   Content.
 

  #In the Navigation Pane, click the Store Location table one time to select it.   On the External Data tab, in the Export group, click More, and then click   Word.
 

  #In the Export – RTF File dialog box, click Browse,   navigate to the location where you are storing your files for this Project,   and then as the file name, using your own name, type Lastname_Firstname_1B_Store_Locations and then click Save.
 

  #In the Export – RTF File dialog box, click OK. Be sure   the Save export steps check box is not selected, and then click Close.

#From the taskbar, display your Word   document, and then press CTRL+END to move to the end of the document.
 

  #On the Insert tab, in the Text group, click the Object button arrow, and then   click Text from File. In the Insert File dialog box, navigate to your storage   location, and then click your Word file Lastname_Firstname_1B_Store_Locations.   Click Insert.

#In the inserted table, click in the   first cell, Store ID, to make the   cell the active cell. On the ribbon, under Table Tools, on the Design tab, in   the Table Styles group, click More. In the Table Styles gallery, scroll down,   and then under List Tables, in the third row, click the third (orange) style—click   List Table 3 – Accent 2.

#With the first cell, Store ID, selected, on the Table Tools   Layout tab, in the Rows & Columns group, click Delete. On the displayed   list, click Delete Columns to delete the Store ID column.

#On the Table Tools Layout tab, in   the Cell Size group, click AutoFit, and then click AutoFit Contents.

#In the Table group, click   Properties, and then on the Table tab, under Alignment, click Center. Click   OK. Save your Word document.

#From the taskbar, display your   Access database. In the Navigation Pane, double-click the Sales Associates   Form.
 

  #In the navigation area at the bottom edge of the form, click the New (blank)   record button. In the ID field, type 10-60531   and then press TAB. Type your own first name, press TAB, type your own last   name, and then press TAB. Type Sales Associate   press TAB, type NM52.
 

  #Press TAB to accept your record.
 

  #In the Navigation Pane, double-click the report Store Associates by Location.   Scroll through the report and be sure that your name displays under NM for   the Taos location. Close Access.

#With your Word document Student_i01B_Welcome_Memo.docx   displayed, click anywhere in the document, and then press CTRL+HOME to move   to the top of the document. On the Mailings tab, in the Start Mail Merge   group, click Select Recipients, and then click Use an Existing List.
 

  #In the Select Data Source dialog box, navigate to the location where you are   storing your files for this Project, select your i01B_All_Associates.accdb Access database, and then click Open to   display the Select Table dialog box.

#In the Select Table dialog box, be   sure that the Sales Associates table is selected, and then click OK.

#In the Start Mail Merge group,   click Edit Recipient List. In the Mail Merge Recipients dialog box, in the   lower right under Refine recipient list, click Filter.
 

#  In the Filter and Sort dialog box, with the Filter Records tab selected,   click the Field arrow, and then click Store ID. Under Comparison, be sure   that Equal to is selected. In the Compare to box, type NM52.
 

  #At the bottom of the Filter and Sort dialog box, click OK to display the   three Taos records—including your record. In the Mail   Merge Recipients dialog box, click OK.

Chapter 20 Program – Inheritance and Polymorphism

 

Write a program that will create a CruiseShip class and CargoShip class both derived from an abstract Ship class.

You will need seven files for this program:

  • ship.h
  • ship.cpp
  • cruiseship.h
  • cruiseship.cpp
  • cargoship.h
  • cargoship.cpp
  • main.cpp – main() function and other functions as described

These files have been provided for you.

Part 1 ship.h and ship.cpp (10 Points)

ship.h

Place the following in your Ship class

  • private (Do not make this protected. Values should be passed from the child class to the parent class using constructor initializer list in the child constructor)
    • member variable called name that is a string
    • member variable called yearBuilt that is a string
  • public
    • Constructor. Two parameter constructor. First parameter is a string for name. Second parameter is a string for yearBuilt. DO NOT CODE A DEFAULT CONSTRUCTOR
    • Two getters
      • getName() should return the name
      • getYearBuilt() should return the year built
    • A virtual function of type void called print(). No parameters. Note: This is a virtual function NOT a pure virtual function
    • A pure virtual function of type void called makeItGo(). No parameters. Note: This is a pure virtual function

Note: This class will not have any setters

ship.cpp

Implementation Notes

  • The constructor should take two string parameters. The first parameter should be assigned to name. The second parameter should be assigned to yearBuilt
  • getName() should return name
  • getYearBuilt() should return yearBuilt
  • print() should cout the name of the ship on one line and the year built on another line. The second line should end with an end line. See the example
Name: The Name of This Ship
Year Built: 2020

Note: Do not implement makeItGo(). It is a pure virtual function and should not be implemented in the abstract class. It will be implemented in the derivied class.

Part 2 cruiseship.h and cruiseship.cpp (15 Points)

cruiseship.h

The CruiseShip class should publicly inherit from the Ship class. Place the following in your CruiseShip class

  • private
    • member variable called maxPassengers this is an int
  • public
    • Constructor. Three parameter constructor. First parameter is a string for name. Second parameter is a string for yearBuilt. Third parameter is an int for maxPassengers. DO NOT CODE A DEFAULT CONSTRUCTOR
    • One getter
      • getMaxPassengers() should return the maxPassengers
    • Override function of type void called print(). No parameters.
    • Override pure virtual function of type void called makeItGo(). No parameters. This function should not be a pure virtual function in this class

Note: This class will not have any setters

cruiseship.cpp

Implementation Notes

  • The constructor should take two string parameters and one int parameter. The constructor should call the parent constructor using an initializer list passing it the parameters for name and yearBuilt. The int parameter should be assigned to maxPassengers.
  • getMaxPassengers() should return maxPassengers
  • print() should call the print function from the parent and then should cout the maxPassengers on another line. The third line should end with an end line. See the example
Name: The Name of This Ship
Year Built: 2020
Maximum passengers: 250
  • You will need to implement the function makeItGo(). It should cout the text “The cruise ship goes woo woo!”. There should be no end line the after the text. See the example
The cruise ship goes woo woo!

Part 3 cargoship.h and cargoship.cpp (15 Points)

cargoship.h

The CargoShip class should publicly inherit from the Ship class. Place the following in your CargoShip class

  • private
    • member variable called tonnage this is an int
  • public
    • Constructor. Three parameter constructor. First parameter is a string for name. Second parameter is a string for yearBuilt. Third parameter is an int for tonnage. DO NOT CODE A DEFAULT CONSTRUCTOR
    • One getter
      • getTonnage() should return the tonnage
    • Override function of type void called print(). No parameters.
    • Override pure virtual function of type void called makeItGo(). No parameters. This function should not be a pure virtual function in this class

Note: This class will not have any setters

cargoship.cpp

Implementation Notes

  • The constructor should take two string parameters and one int parameter. The constructor should call the parent constructor using an initializer list passing it the parameters for name and yearBuilt. The int parameter should be assigned to tonnage.
  • getTonnage() should return tonnage
  • print() should call the print function from the parent and then should cout the tonnage on another line. The third line should end with an end line. See the example
Name: The Name of This Ship
Year Built: 2020
Cargo capacity: 27 tons
  • You will need to implement the function makeItGo(). It should cout the text “The cargo ship goes toot toot!”. There should be no end line the after the text. See the example
The cargo ship goes toot toot!

Part 4 main.cpp (5 Points)

The function main() is complete and should not be modified.
You will need to complete the function void loadShips(vector& vShip, string fileName)
On line 68, you will need to create a CruiseShip and add to vector vShip.
On line 72, you will need to create a CargoShip and add to vector vShip.
Note: Keep in mind that vShip is a vector of pointers to Ship. Both CruiseShip and CargoShip will need to be pointers in order to add them to vShip

SIEMENS SIMATIC

I need to write a term paper on the topic Siemens Simatic- PCS7/WINCC (SCADA) 

There are all the requirements for the term paper alongside the template for the term paper.
Please help and thank you 

H12

    Download and read the document and answer all questions in the document. Please see attached document H12 & APA Criteria doc.        

Assignment – 500 words

Assignment Topic:

Research frequency-division multiplexing. Identify three everyday examples of FDM use. For each of these examples show how FDM is used and it works. Summarize your findings in a brief paper.

-Please include a separate cover page.

Your assignment is to be 500 words or two pages double spaced, in Word format. Do not use extraneous text that does not address the questions. Please use a grammar checker.  

Please include in-text citations in APA style. 

You must include at least two (2) references. Include a separate reference page. References are to be in APA style.

Submission does NOT need an introduction or a table of contents.

Instructions (from the syllabus):

Cases provide a vehicle for you to demonstrate your understanding and ability to apply course concepts. You must use at least two (2) appropriate sources (other than your course textbook) that are properly cited in APA style; do not solely use the case itself to support your position. You are strongly encouraged to use the following outline so that your analysis is organized appropriately:

  • Identify both the key issues and the underlying issues. In identifying the issues, you should be able to connect them to the principles which apply to this situation.
  • Discuss the facts which affect these issues. The case may have too much information. In your discussion, you should filter the information and discuss those facts which are pertinent to the issues identified above.
  • Discuss your proposed solution/recommendation to the problem and include how you would implement it. What actions would you propose to correct the situation, based on the knowledge you have gained in this course? Be sure to support your recommendation by citing references in the text and in the supplementary readings. You should also draw on other references such as business periodicals and journals. Remember that an ANALYSIS is more than simply a SUMMARY of the Writing Assignment.
  • Discuss follow-up and contingency plans (if necessary). How will the organization know that your proposed solution is working? What should they do if it does not work?
  • Word count is 500 words, not including references and figures. References should be in the APA style.

Assignment 3 (Building APPS) – Business proposal with 3 – 5 peer-review references

 Using the industry where you currently work or have worked before, write a 4 to 5 page business proposal recommending your choice between Android or iOS. From a user and developer’s perspective, which would you recommend to your company and why?Your assignment must follow these formatting requirements:

  • Please provide 3 – 5 peer-review references to substantiate your viewpoint. Note: Wikipedia and similar Websites do not qualify as quality resources.
  • Be typed, double spaced, using Times New Roman font (size 12), with one-inch margins on all sides; citations and references must follow APA or school-specific format.
  • Include a cover page containing the title of the assignment, the student’s name, the professor’s name, the course title, and the date. The cover page and the reference page are not included in the required assignment.

The program should request

  

The program should request as input the following information:

– the name of the organization visited

– the date you arrived at the organization

– the date you left the organization

– the location of the visit

– the expenses for meals and entertainment

– airplane fare

– lodging expenses

– taxi fares

All the inputs except the arrival date and the departure date should be entered into the

program via text boxes. The arrival date and the departure date are entered via masked

text boxes

When “submit” button is clicked, all the information should be displayed in a list box as

 
 

shown in the screen shot below.

 
 

Only 50% of the expenses for meals and entertainment are deductible. Therefore, your

 
 

program will also calculate and display

 
 

– the total except meals and entertainment

 
 

– 50% of meals and entertainment

 
 

– total deductible expenses

Do you agree to suggested price? i can have it ready in 24 hrs if you do agree to new suggested price