To add two functions the questions are asking you develop: divideMid and divideAt.

To add two functions the questions are asking you develop: divideMid and divideAt.
 

4.(Dividing a linked list into two sublists of almost equal sizes)
a. Add the operation divideMid to the class linkedListType as follows:
void divideMid(linkedListType &sublist);
//This operation divides the given list into two sublist
//of (almost) equal sizes.
//Postcondition: first points to the first node and last
// points to the last node of the first sublist.
// sublist.first points to the first node and
//sublist.last points to the last node of the second
//sublist.
Consider the following statements:
unorderedLinkedList myList;
unorderedLinkedList subList;
Suppose myList points to the list with elements 34 65 27 89 12 (in this order). The
statement:
myList.divideMid(subList);
divides myList into two sublists: myList points to the list with the elements 34 65 27,
and subList points to the sublist with the elements 89 12.
b. Write the definition of the function template to implement the operation divideMid. Also
write a program to test your function.
 

5.(splitting a linked list, at a given node, into two sublists)
a. Add the following operation to the class LinkedListType:
void divideAt (LinkedListClass& secondList, const Type& item);
//Divide the list at the node with the info item into two sublists.
//Postcondition: first and last point to the first and last nodes of the first sublist.
// secondList.first and secondList.last point to the first
// and last nodes of the second sublist.
 

Consider the following statements:
 

UnorderedLinkedList myList;
UnorderedLinkedList otherList;
 

Suppose myList points to the list with the elements 34, 65, 18, 39, 27, 89, and 12 (in this order). The statement
 

myList.DivideAt(otherList, 18);
Divides myList into two sublists: myList points to the list with elements 34 and 65, and otherList points to the sublist with elements 18, 39, 27, 89, and 12.
b. Write the defintion of the funcction template to implement the operation divideAt. Also write a program to test your function.

Research about “Data and Cyber Security in the Internet of Things (IOT)”

I want someone to write a research paper as dezcribed in the following:

1. Research paper title: Data and Cyber Security in the Internet of Things (IOT)

2. Number of Pages:  50 but can be less than that including the references.

3. References: 15-16 Articles or books (provide the links for the articles as well)

4. Should have an abstract

5. Should have table of content

6. Should have subtitles (doesn’t matter how many)

7.  The following should be included in the Introduction 

a. Research Question

b. Research Methodology

c. Importance

d. Objective/Goals

e. Hypothesis

8. NO PLAGIARISM!!!!!!

9. I can give 2 weeks or more for a well-written paper. Number of pages does matter, but the QUALITY matters. 

10. Does not have to be in very scientific language, it can be simple language with correct grammar and spelling. 

I also attached the description 

Week 7 DQ

Data is critical in making effective business decisions in today’s workplace. Provide an example of how data is used in your current work to make business decisions. If you are unaware of how data is used for this purpose, speak with your manager and ask how they use data to determine how their department or business is performing. Share the general concepts you learn in the discussion.   

Note: 150 words with references

documentation

In 2,000 or more words respond to the following: 

Construct an organizational security policy document. Consider all necessary controls and cybersecurity domains. You can look at existing policies on the Internet and base your response on some of these; however, paraphrase the material in your own words. Do not forget to cite your sources. There should be at least five sources for this part. Include a title page and a reference page. You can use any appropriate original materials that you have used for any discussions or activities earlier in this class. 

Three discussion posts

  

All three sections are difference assignments can be done in sinle word document

Section I 

400 to 600 words with two APA reference

Create a post discussing standards and procedures. Discuss the following:

  • Which standards may apply to your      project company?
    • Explain why these standards are       relevant to your company.
  • How are standards different from      procedures?
  • How are standards and procedures      important to the organization?
  • How are standards and procedures      eventually incorporated into policies?

Note that standards can be internal and external.

Section 2 

400 to 600 words with two APA Reference

You just became the lead security person at a small company. Assume normal setup, e-mail, company Web site, internal servers, and so forth. Although your title is not chief security officer (CSO), you report directly to the chief information officer (CIO). The person who was previously in your position moved out of state and does not respond to calls or e-mails. The CIO tells you, “You have 90 days to get that area together! I want to see your high-level approach by Monday morning.” You have three inexperienced but energetic people on your team, and it is Friday afternoon.

Discuss the following:

  • What are the 4 key actions you need      to take within the first 90 days (or sooner)?
  • Who will be involved?
  • Include an explanation of the      benefits of these actions  

Remember, this is high level, so write two or three paragraphs with the 4 action items highlighted. The majority (90%) of your report will outline what has to be done, and the remainder (10%) should include how this will be done.

Section 3

400 to 600 words with two APA Reference

Create a policy for borrowing a car. What are some of the rules you would give someone if they were to borrow your car? (If you do not have a car, for the sake of this assignment, imagine that you do.) For inspiration, think of some of the rules that apply when renting a car, and consider the following:

  • Would the borrower be responsible      for any parking tickets incurred?
  • How many miles can they use on your      car?
  • Is food allowed in the car?
  • What specifically would you expect      when they return the car?

Software Engineering and Data Analytics

 

Assignment Content

  1. About
    This assignment must be completed in a group of minimum 3 students and maximum 4 students.

    This assignment is a prelude to the third assignment. It aims at providing you with an authentic experience in carrying a simple data science project that covers all essential stages in a data science lifecycle. Since most professional science projects are performed by teams, you are therefore required to complete this assignment in a team.

  2. Tasks
    In short, you are required to complete the following tasks:

    1. Pitch a public, open dataset of your choice.
    2. Pitch 3 or 4 initial hypotheses to be pursued later in Assignment 3.
    3. Profile the data using descriptive and/or inferential statistics techniques (which also requires that you demonstrate proficient data wrangling skills).
    4. Present items 1, 2, and 3 above via a recorded presentation.
    5. Your tasks are open-ended tasks, similar to most real data science projects. This means no two teams are likely to go to the same direction and produce similar results. You will find that your group will become experts in interpreting your own data and answering your own problems. Comparing performance across teams may not be meaningful and your team will be assessed solely against the rubric.

      Your Python code base must be available on your Github repo. The extent of the group’s collaboration and individual contribution will be evaluated solely based on Github.

      General advice:

    • Select an open (publicly available) data – data that can be freely downloaded, preferably with an open license, allowing you to share the data freely. Choosing non-public data is not advisable as your instructor may be restricted from accessing the data.
    • Choose data in the domain for which team member(s) has some background.
    • Formulate open-ended hypotheses.
    • Carry out fresh data and/or analysis.
    • Where possible, choose a dataset and formulate problems pertaining to practical Australian contexts.
  3. Data
    Choose only 1 dataset.

    It is fine to choose a dataset that has been analysed by others outside of the university. This is the natural consequence of selecting open data. However, you should either show that the analysis and exploration you plan has not been done before, or show that there is no code already available to do the analysis you intend. Your instructor is likely to view highly any original investigation.

    Sources of open datasets include but are not limited to:

  4. Github Classroom

    Group work activities must be visible on Github Classroom.

    The instructor will send an invitation to all students to join Github Classroom after all groups are formed. To accept this invitation, every student must have a free Github account. If you do not already have it, please sign up. This is compulsory.

  5. Marking

    You should refer to the detailed marking rubric that appears on the side panel of this window.

  6. Submission item
    Please submit the following via Learnline by latest 11.59pm on the due date:

    • 1 URL to a recorded presentation per team published privately on YouTube. Do not submit multiple recordings and do not submit recording file unless requested specifically.
    • (optional) supplementary information, where applicable.
    • Latest Python code base on GitHub repo must be accessible to your instructor. Snapshot of the repo will be taken at the time of submission.

      The duration of the presentation is commensurate with the team size. Inline with the Unit Information, 2 to 3 minutes of presentation per team member is required. Not complying with this requirement may attract a mark penalty.

      Example:

    • For a team of 3: the minimum duration is 6 minutes (2 minutes x 3 members) and the maximum duration is 9 minutes (3 minutes x 3 members).
    • For a team of 4: the minimum duration is 8 minutes (2 minutes x 4 members) and the maximum duration is 12 minutes (3 minutes x 4 members).
  7. Academic integrity and assessment irregularities
    Academic integrity is a core value at CDU and must be upheld at all times when completing this assignment. You must not plagirise the work of others. Please be referred to the Students – Breach of Academic Integrity Procedures.

    Other assessment irregularities are governed by CDU’s Higher Education Assessment Procedures.

  8. Tips and example
    Broadly speaking, your instructor is looking for evidence of your demonstrative competency in the following key data science skills implemented in Python: (1) hypothesis formulation, (2) exploratory data analytics, (3) data wrangling skills, and (4) data visualisations.

    When pitching your dataset, consider addressing the following concerns:

    • source of data
    • accesssibility of data
    • validity of data
    • why the dataset matters (in practical or academic terms)
    • domain knowledge
    • relevance to you
    • etc.
    • In profiling the data, consider addressing the following concerns:
    • dimensionality
    • data types
    • centrality
    • spread
    • shape of data
    • distributions
    • etc.
    • The last task is to pitch 3 to 4 initial hypotheses. Consider addressing the following concerns:
    • what might the data tells us
    • what would you like to explore first based on your initial data profiling
    • what would you like to predict
    • what existing assumption you want to test previous finding
    • what new idea you want to test
    • etc.

Mobile User Interface Design

People are using their mobile phone browsers more and more every day to find information about businesses, make product decisions and purchases, and even determine the quality of a business based on what they can find online.  In no less than five written full pages of content (5), discuss in scholarly detail the points below. 

  • How to Choose a Mobile Web Development Option.
  • Research and discuss effective use of screen real estate.
  • Compare and contrast different mobile platforms (i.e. Android, iOS).
  • The tools of mobile interface design.
  • Discuss mobile information design.
  • Choosing mobile web options.

Your assignment must follow these formatting requirements:

  • Use at least five (5) quality resources in this assignment. 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 do not count toward page requirements of the assignments

Topics to cover:
1. Discussed wow to choose a mobile web development option

2. Researched and discussed effective use of screen real estate.

3. Compared and contrast different mobile platforms (i.e. Android, iOS).

4. Explained the tools of mobile interface design

5. Discussed mobile information design.

6. Discussed best practices choosing mobile web options.