Cloud Computing Continuity

“Recovery and Continuity in the Cloud” Please respond to the following:

Imagine that you are the CIO of a multinational firm. Propose three ways that cloud computing may be used in addressing recovery and continuity on a global scale.

Imagine that you are CIO of a midsized organization and you need to highlight five reasons that a cloud migration will be secure for your organization. Determine how using the guidance afforded by Cloud Security Alliance can mitigate risks in your organization’s migration to the cloud.

Software Architecture Patterns Adopted By XYZ Bank Project Proposal

 Software Architecture Patterns Adopted By XYZ Bank Project Proposal

IP 3 Assignment Specifications

  1. Identify at least 4 design principles reflected in the targeted software.
  2. Identify at least 4 architectural styles reflected in the targeted software.
  3. Identify at least 2 key scenarios or use cases, and present them in UML use case diagrams.
  4. Guided by the architecture styles and key scenarios that you have chosen, present a logical view of the architecture of the targeted software such that it will be divided into several components; each component is called a package. Use a UML package diagram to show all the packages and the dependency between the packages.
  5. Pick up at least 2 packages, and apply the UML component diagram to show another level of design details in each of the packages.

Put all of the results of the above tasks into a document with the following template:

Template for the Design Document

  • Cover Page
    • Course number
    • Student’s name
    • Date
  • Content Pages (5–7 pages)
    1. Introduction
    2. Design Principles
      1. Design principle 1 (Reason, justification, and example)
      2. Design principle 2 (Reason, justification, and example)
      3. Design principle 3 (Reason, justification, and example)
      4. Design principle 4 (Reason, justification, and example)
    3. Architectural Styles
      1. Architectural style 1 (Reason, justification, and example)
      2. Architectural style 2 (Reason, justification, and example)
      3. Architectural style 3 (Reason, justification, and example)
      4. Architectural style 4 (Reason, justification, and example)
    4. Key Scenarios
      1. Key scenario 1 (Reason, justification, and use case diagram)
      2. Key scenario 2 (Reason, justification, and use case diagram)
    5. Logical View of Architecture
      1. List of packages (and components)
      2. The UML package diagram
      3. Brief discussion
    6. Component-Level Design
      1. Component-level design for package 1
        1. List of components of package 1
        2. The UML component diagram for package 1
      2. Component-level design for package 2
        1. List of components of package 2
        2. The UML component diagram for package 2
    7. Conclusion
    8. References

—————————————————————————————————

IP 4 Assignment Specifications 5-7 pages (not including title or reference pages)

For each UML component diagram, please do the following:

  1. Define 1 object class for each component in the UML component diagram, and draw the corresponding class diagrams for all object classes.
  2. Select 2 or more object classes to form an Is-A relationship, and draw the corresponding updated class diagram for the involved object classes.
  3. Select 2 or more object classes to form the Has-A relationship, and draw the corresponding updated class diagram for the involved object classes.
  4. Select 3 or more object classes, such that their interactions are required to complete a functionality, and draw a UML sequence diagram to show the details of the sequence of their interactions.
  5. Select any 2 object classes, and pick up 1 method from each object class to draw a UML activity diagram.
  6. Select any 2 object classes to draw a UML state machine diagram for each object class.
  7. After you have completed all of the above, please discuss if you have made any changes to the original component level design after you have conducted OOD to the components and why you have to make such changes.

Please put all of the results of the above tasks into a document with the following template:

Template for the Design Document

  • Cover Page
    • Course number
    • Student’s name
    • Date
  • Content Pages (5–7 pages)
    1. Introduction (Copy over the requirements)
    2. OOD for UML Component Diagram 1
      1. UML component diagram 1 (copied over from Unit 3 IP)
      2. List of components and object classes (1 object class per component)
      3. Is-A relationship class diagram (at least 2 object classes, notes)
      4. Has-A relationship class diagram (at least 2 object classes, notes)
      5. UML sequence diagram (at least 3 object classes, notes)
      6. Object class name 11, method name 11, UML activity diagram 11 (notes)
      7. Object class name 12, method name 12, UML activity diagram 12 (notes)
      8. Object class name 13, UML state machine diagram 13 (notes)
      9. Object class name 14, UML state machine diagram 14 (notes)
      10. Discuss if you have made any changes to the original component-level design after you have conducted OOD to the components and why you have to make such changes.
    3. OOD for UML component diagram 2
      1. UML component diagram 2 (copied over from Unit 3 IP)
      2. List of components and object classes (1 object class per component)
      3. Is-A relationship class diagram (at least 2 object classes, notes)
      4. Has-A Relationship Class Diagram (at least 2 Object Classes, Notes)
      5. UML Sequence Diagram (at least 3 Object Classes, Notes)
      6. Object class name 21, method name 1, UML activity diagram 21 (notes)
      7. Object class name 22, method name 2, UML activity diagram 22 (notes)
      8. Object class name 23, UML state machine diagram 23 (notes)
      9. Object class name 24, UML state machine diagram 24 (notes)
      10. Discuss if you have made any changes to the original component-level design after you have conducted OOD to the components and why you have to make such changes.
    4. Conclusion
    5. References

————————————————————————

IP5 Assignment Specifications

Designing the graphical user interface (GUI) is one of the critical tasks for the development of any mobile app. We already know that the model–view–controller (MVC) architectural pattern or paradigm is commonly used as the default guideline for the design of the GUI of any type of software. In practice, for any given application, the MVC pattern is also often associated with several design patterns. We have also learned that a mobile app has many special design considerations in addition to the considerations of a Web app or other conventional client–server based software. This implies that when we design a GUI for a mobile app, we will need to use several design patterns to enhance the basic MVC architectural pattern or paradigm so that the enhanced MVC architectural pattern or paradigm can be more suited to serve the needs of the GUI of a mobile app. Study the following assignment references and then conduct the design and development tasks.

Development Tasks

  1. Define the most important design concept of the model–view–controller (MVC) architectural paradigm used for the design and development of the graphical user interface (GUI), and discuss the pros and cons of the MVC paradigm.
  2. Select 2 or more design patterns that are suited to enhance the MVC paradigm specifically for the GUI of a mobile app, and discuss the rationale for your chosen design patterns and the benefits of adopting these design patterns for a mobile app.
  3. Please use proper Unified Modeling Language (UML) diagrams to draw these design patterns.
  4. Please use a simple mobile app development tool kit to create a prototype for a simple GUI that supports the mobile app with the following functions:
    • Presents a simple text-based search engine interface for a product catalog database
    • Accepts text search key words to search the catalog database
    • Displays the matched product information or informs the user that there is no matching product
  5. After you have completed all of the above steps, please discuss whether you have made any changes to the original design patterns during the implementation. Why did you have to make such changes?

Please put all of the results of the above tasks into a document with the following template:

Template for the Design Document

  • Cover Page
    • Course number
    • Student’s name
    • Date
  • Content Pages (5–7 pages)

undefined

    1. Introduction (Copy over the requirements)
    2. The most important design concept of the model–view–controller (MVC) paradigm for a graphical user interface (GUI)
      • Definition of MVC
      • The most important design concept of MVC
      • Discuss the pros and cons of MVC
    3. Design patterns to enhance the MVC paradigm for the GUI of a mobile app
      • Some of the special considerations of a mobile app
      • Design pattern 1 (rationale and proper UML diagram)
      • Design pattern 2 (rationale and proper UML diagram)
    4. Prototype of the GUI of a simple mobile app
      • Functional requirements of the GUI of a simple mobile app
      • MVC paradigm with the design patterns
      • Code of prototype
      • Prototype results screenshots
      • Discuss whether you have made any changes to the original design patterns during the implementation, and explain why you had to make such changes (if any)
    5. Conclusion
    6. References

Descriptive and inferential statistics

 Descriptive and inferential statistics

Remember this is a practical connection paper Inferential Statistics in Decision-making.

This course focuses on the descriptive and inferential statistics commonly used in organizational administration. Course activities include the application of statistical methods to research design, as well as an investigation of how these methods can contribute to school improvement. Specific concepts include measures of central tendency and variability, probability theory, estimation and significance, and correlation and regression.**

***** Remember I work as a software developer based on that I need a connection paper*******

Practical Connection Assignment

it is a priority that students are provided with strong educational programs and courses that allow them to be servant-leaders in their disciplines and communities, linking research with practice and knowledge with ethical decision-making. This assignment is a written assignment where you will demonstrate how this course research has connected and put into practice within your own career.

Assignment:
Provide a reflection of at least 600 words (or 2 pages double spaced) of how the knowledge, skills, or theories of this course have been applied, or could be applied, in a practical manner to your current work environment. If you are not currently working, share times when you have or could observe these theories and knowledge could be applied to an employment opportunity in your field of study.

Requirements:
Provide a 600 word (or 2 pages double spaced) minimum reflection.
Use of proper APA formatting and citations. If supporting evidence from outside resources is used those must be properly cited.
Share a personal connection that identifies specific knowledge and theories from this course.
Demonstrate a connection to your current work environment. If you are not employed, demonstrate a connection to your desired work environment.
You should NOT, provide an overview of the assignments assigned in the course. The assignment asks that you reflect how the knowledge and skills obtained through meeting course objectives were applied or could be applied in the workplace.

 

UC Common ANN Architectures and Types of Problems Can They Be Used For Questions

UC Common ANN Architectures and Types of Problems Can They Be Used For Questions

Discussion Questions

1. What is an artificial neural network and for what types of problems can it be used?

undefined2. Compare artificial and biological neural networks. What aspects of biological networks are not mimicked by artificial ones? What aspects are similar?

undefined3. What are the most common ANN architectures? For what types of problems can they be used?

undefined4. ANN can be used for both supervised and unsupervised learning. Explain how they learn in a supervised mode and in an unsupervised mode.

Exercise # 6

Go to Google Scholar (scholar.google.com). Conduct a search to find two papers written in the last five years that compare and contrast multiple machine-learning methods for a given problem domain. Observe commonalities and differences among their findings and prepare a report to summarize your understanding.

Internet Exercise # 7

Go to neuroshell.com. Select any of the examples. Comment on the feasibility of achieving the results claimed by the developers of this neural network model.

 

Illegal Search and Seizure in 2017 Response

Illegal Search and Seizure in 2017 Response

Using the Web or other resources, find a case where an illegal search was claimed.

Write a brief essay describing that case and how it relates to this week’s topic.

Read and respond to at least two other students Discussions.

Post your initial response by the end of day on Thursday and reply to at least two other students by the end of day on Sunday.

Post between 200 and 300 words.

Information Security Standard Organization

 Information Security Standard Organization

Pick one of the many information security standards organizations and describe what they do and what type of standards they are responsible for. Cite your 2 sources. Post between 300 – 350 words(APA format).

Security Framework Information

Security Framework Information

I don’t know how to handle this Computer Science question and need guidance.

 

What statistics will you use to analyze your research questions? State your research question and associated statistics. Are you having any challenges with analyzing your data?

 

Agile Project Computer Science Question

  1. Agile Project Initiation

    Note: This is the first of three assignments which, as a whole, cover all aspects of the project life cycle relevant to your selected project.You have been assigned as the project manager for an e-commerce website and accompanying mobile application for your firm (a home improvement store chain) that will service the needs of your customers and prospects. The key features of your website and mobile app include product description, product pricing and discount rate, home improvement tutorial videos, order and pickup scheduling, store location, and store hours. You are expected to add additional features as you progress through your project.Note: You are prohibited from using similar projects that can be found on the Internet, including projects found in places like Course Hero. All project submissions will be submitted to Safe Assign for review.Write a 5–6 page paper in which you define the scope of your project. In your paper, you must:

    • Provide a brief summary of your project.
    • Describe at least three project goals and three project objectives.
    • Describe at least three key milestones and/or deliverables for your project.
    • Describe a high-level timeline that includes key tasks and deadlines. You must complete the work within six months and the schedule will include at least 60 activities.
    • Estimate the project’s overall cost and any key staffing and non-staffing resources needed.
    • Use at least three quality resources in this assignment. Note: Wikipedia and similar websites do not qualify as quality resources.

    Your assignment must follow these formatting requirements:

    • This course requires the use of Strayer Writing Standards. For assistance and information, please refer to the Strayer Writing Standards link in the left-hand menu of your course. Check with your professor for any additional instructions.

    The specific course learning outcome associated with this assignment is:

    • Propose goals, objectives, and resource requirements for an Agile project.
  2. By submitting this paper, you agree: (1) that you are submitting your paper to be used and stored as part of the SafeAssign™ services in accordance with the Blackboard Privacy Policy; (2) that your institution may use your paper in accordance with your institution’s policies; and (3) that your use of SafeAssign will be without recourse against Blackboard Inc. and its affiliates.

Kiosk Study Computer Science

Kiosk Study Computer Science

OVERVIEW

Convince your local public library to offer self-serve kiosks so patrons can check their materials in and out.

INSTRUCTIONS

The required Kiosk Study Assignment Template [DOCX] must be used for this assignment and is not optional. It has been designed so that papers are logically organized and includes prompts for all required information for the assignment.

Using the template, complete the following:

  • Write a proposal of not more than 650 words that evaluates the operational, technical, and economic feasibility of these kiosks.
  • Draw use-case diagrams that illustrate how a patron would interact with the kiosk. These diagrams should illustrate all of the interactions in enough detail to derive functional requirements for the kiosk.
    • Assume that all materials and library cards carry a unique bar code.
    • The patron should have the option to receive a receipt for items checked in or out.
  • Write sample instructions on how to use the kiosk. The library intends to post these instructions on a sign next to the kiosk, so they must be short (not more than 350 words), clear, complete, and well organized.

Your document must follow these formatting requirements:

  • This course requires the use of Strayer Writing Standards. For assistance and information, please refer to the Strayer Writing Standards link in the left-hand menu of your course. Check with your professor for any additional instructions.
  • All charts and diagrams must be the student’s original work. They must be pasted into the document as neat, legible images.

The specific course learning outcome associated with this assignment is:

  • Outline a plan for the operational, technical, and economic feasibility of an information technology-based solution.

Gantt Chart and Work Breakdown Structure

 Gantt Chart and Work Breakdown Structure

OVERVIEW

You could consider each week of a course as a small project. It requires you to study some learning resources, participate in a discussion, and possibly complete a paper or a test.

INSTRUCTIONS

The required Planning Your Week Assignment Template [DOCX] must be used for this assignment and is not optional. It has been designed so that papers are logically organized and includes prompts for all required information for the assignment.

Using the template, complete the following:

  • Create a Work Breakdown Structure (WBS) that represents your projects for this week.
    • Document the tasks you were asked to perform in this week of the course (you can use the list above as a starting point).
    • Decompose each main task into subtasks that can be completed in two hours or less.
  • Do the same for at least two other projects you planned for this week.
    • They could be things like grocery shopping, laundry, or another course.
    • Do not include events with scheduled times, like work or medical appointments.
  • Using Microsoft Project or an equivalent, represent this WBS as a Gantt chart.
  • Note: Do not use Excel or other software that cannot represent task dependencies.

Your document must follow these formatting requirements:

  • This course requires the use of Strayer Writing Standards. For assistance and information, please refer to the Strayer Writing Standards link in the left-hand menu of your course. Check with your professor for any additional instructions.
  • All charts and diagrams must be the student’s original work. They must be pasted into the document as neat, legible images.

The specific course learning outcome associated with this assignment is:

  • Use CASE tools to initiate, specify, and prioritize information systems projects.