Disucussion board- 300 words only ***Urgent required****

Week 6 discussion deals with BYOD and Mobile Computing. While the two  topics are intertwined they also have their own set up issues.

  1. Differentiate between BYOD and Mobile Computing.
  2. If you had to describe either BYOD or Mobile Computing with one  word, what would that one word be?  Please explain why that one word  expresses your views.

With references and APA Citation. Need in three Hours.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

***Urgent*** Discussion Board Within 3Hrs.

 After watching the video, discuss at least two network design concepts you learned from or found interesting in the video.

Network Design – CompTIA Security+ SY0-301: 1.3     (https://www.youtube.com/watch?v=iVN18aSfQSk)

About two-three Paragraph, APA citation and references. About 400 words. 

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Week 7 DQs

Investigate the cloud-based storage services of a major provider, such as Microsoft, Google, or Amazon. What are the approximate costs of configuring each service to store 2 TB of data and respond to requests from eight other servers? Which one has higher storage access performance? Which one is easier to configure and administer? Which is best suited to file sharing for fewer than a dozen computers in a home or small business network? Which is best suited to handle storage duties for distributed high-performance computing clusters? 

Note: 250 words with intext citations and 2 references must.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Create a research paper based on the attached project

 Do research on one-or-two large software systems that were implemented successfully and on one-or-two large software systems that failed in their implementation. Write at least a 3-page Word document, double-spaced, detailing each system. Your paper should include a number of topic sections. Using the concept of A.D.D.I.E., create a section to discuss the A.-Analysis that went into the system, a section to discuss the D.-Design of the system, a section to discuss the D.-Development of the system, a section to discuss the I.- Implementation of the system (successful or failed) and a section to discuss the E.-Evaluation of the system (successful or failed). Provide the following: 1. An Introduction paragraph describing the assignment and a short description of the systems selected. 2. A section that describes the first Software System (with an appropriate section Heading) and a description of that Software System to include: a. What is its purpose? b. What operations it performs? c. What are its inputs (resources, interfaces, when used)? d. What are its outputs (interfaces, data)? e. The system’s complexity/cost/feasibility. f. Any constraints or risks found during the research. 3. Sections with details for each component of A.D.D.I.E. (with an appropriate section Heading) to include: a. Success or failures identified. b. Issues or findings identified. c. Recommendations or lessons learned. Your paper should then conclude with a Findings section the compares the two systems. Provide the following: 1. What made one system successful but make the other system fail. 2. What could have been done to make the failed system more successful. 3. What could have been done to make the successful system even more successful. You must include at least 3 scholarly references with citations.  

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Need about one and half page. Own launguage,

  

Based upon the recommendations you plan to make for your week six written assignment, use this spreadsheet                Download this spreadsheet               to create a financial case for your  recommendations. In your posting, describe your recommendations and  attach the return on investment spreadsheet with your costs and  benefits. The following resources may help you:

Case study is given in attached PDF.

about 500 words and given excel database sheet. You can write about recommendations, Use of IT to improve business, Financial improvements etc. 

Required citation and references.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Discussion 1

Week 1 Discussion 1 

“Detection and Prevention” Please respond to the following:

Examine two advantages and two disadvantages of both the Intrusion Detection Systems (IDS) and Intrusion Prevent Systems (IPS).  Explain which you would select if your organization could only have one or the other.  Provide rationale for your response. 

Week 1 Discussion 2 

“Firewalls” Please respond to the following:

  • Examine two advantages and two disadvantages for both hardware and software firewalls.  
  • Explain whether you recommend the hardware or software firewall.  Provide the rationale for your response. 
  • Explain whether a home office that has a firewall should be considered secure.  Examine why or why not and provide a rationale for your response.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

C++ homework about strings

1.The program must compile with clang++ 

2.This website has the solution and all the files to help you in making the program:

https://github.com/ChristopherJones72521/CS23001-KentState/tree/master/Projects/String

but the problem is what I’m asking for my assignment is only part one of the program which I have listed below and the website has additional parts and requirements, so if you can figure out which part to take from the website from each file and which part to leave that would be great, and you dont have to write new files from the scratch.  

I’ve uploaded a zip file with all the files our instructor gave us and feel free to make new files if needed but you sholud work as the file required.

Here’s what I need:

Objectives:
-Use a well developed ADT class which utilizes operator overloading.
-Use dynamically allocated arrays.

Problem:
The Apache web server produces information detailing web page accesses, this information is stored in a log file in the Apache Common log file format. The assignment is to develop a program to process this log file and keep track of the different types of log entries.

Requirements:

  • You CANNOT use the C++ standard string or any other libraries for this assignment, except where specified.
  • You must use your ADT string for the later parts of the assignment.
  • using namespace std; is stricly forbiden. As are any global using statements.
  • Name the folder for this project: string (please use all lower case letters).
  • Milestone 1 (25pts)
    • Implementation:
      • Create an ADT String using the class construct. It will be a NULL (zero) terminating charater array.
      • Note: C++ has a standard type called string so you should not use this name. Use String instead.
      • Please name all your files using only lower case letters.
      • Use the provided specification (svn/shared/project2/string-mile1.hpp) for naming your class and methods You should rename this to string.hpp. A test suite will be provided in Part 2 that uses this interface to test your string class.
      • You should use a fixed sized array of char for storage with a max capacity based on a constant const int STRING_SIZE = 256; This array will store the characters along with the NULL (0) terminator.
      • Implement the constructor functions (i.e., for char[] and char).
      • Overload + and += as concatenation (make sure they works for all variations string + string, string + char[], char[] + string, etc).
      • Overload all the relational operators (==, <, >, etc.).
      • Implement the methods:
        • operator[](int) – both accessor and modifier versions
        • length() – returns number of characters in string
        • capacity() – returns the max number of characters that can be stored in the string
        • substr(int start, int end) – returns the sub string from start to end position (inclusive)
        • findch(int pos, char ch) – returns location of ch at or after pos
        • findsstr(int pos, cosnt String& str) – returns the location of str at or after pos
        • Overload both I/O operators – Input should read in one word at a time. The input operator for char[] works that way and can be used.
    • Testing:
      • Develop a set of test cases, using asserts, for each of the operators and methods of the String class.
      • Write test cases first. Testing must be thorough. You will be relying on the string to be correct.
      • The command make tests will build and run the unit tests.
      • After each function passes a test, commit your work to svn with a message such as “Constructor tests passed”.
      • Your string class will be tested on a set of cases developed by the instructors. You will be graded on how well you pass these tests. These tests cover the constructors, comparison, operator[], substr, findch, and the concatenation operator.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Please click on the given link and check the possibility

Need someone who prepares the short GIFs like this…

https://www.youtube.com/watch?v=p4l1ALH0ZBo

It is a continuous work.. and the bid would be per GIF basis…

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

PPT

 

Build your first draft of your final presentation discussing the content of your Final Paper. Include:

  1. Introduce the organization
  2. Outline the the issues involved in the case
  3. Document the Strategic Communication Tactics used in the case.
  4. Offer perspective on the behaviors in the case and its effect on stakeholders and society in general.
  5. Provide a conclusion
  • Assignment Format: MS Powerpoint Slide Deck; APA format

 Length: 8 – 10 slides

 Citations Required: Minimum 5 Scholarly Reference

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

data warehous, bigdata, green computing

 

This week’s written activity is a three- part activity. You will respond to three separate prompts but prepare your paper as one research paper. Be sure to include at least one UC library source per prompt, in addition to your textbook (which means you’ll have at least 4 sources cited). 

Start your paper with an introductory paragraph.

Prompt 1 “Data Warehouse Architecture” (2-3 pages): Explain the major components of a data warehouse architecture, including the various forms of data transformations needed to prepare data for a data warehouse. Also, describe in your own words current key trends in data warehousing. 

Prompt 2 “Big Data” (2-3 pages): Describe your understanding of big data and give an example of how you’ve seen big data used either personally or professionally. In your view, what demands is big data placing on organizations and data management technology? 

Prompt 3 “Green Computing” (2-3 pages):  One of our topics in Chapter 13 surrounds IT Green Computing. The need for green computing is becoming more obvious considering the amount of power needed to drive our computers, servers, routers, switches, and data centers. Discuss ways in which organizations can make their data centers “green”. In your discussion, find an example of an organization that has already implemented IT green computing strategies successfully. Discuss that organization and share your link. You can find examples in the UC Library.

Conclude your paper with a detailed conclusion section. 

The paper needs to be approximately 7-10 pages long, including both a title page and a references page (for a total of 9-12 pages). Be sure to use proper APA formatting and citations to avoid plagiarism.

Your paper should meet the following requirements:

• Be approximately seven to ten pages in length, not including the required cover page and reference page.

• Follow APA7 guidelines. Your paper should include an introduction, a body with fully developed content, and a conclusion.

• Support your answers with the readings from the course, the course textbook, and at least three scholarly journal articles to support your positions, claims, and observations, in addition to your textbook. The UC Library is a great place to find supplemental resources.

• Be clearly and well-written, concise, and logical, using excellent grammar and style techniques. You are being graded in part on the quality of your writing.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now