Describes ONE platform or technology that implements a LPWAN

Assignment Help Other Subject
Reference no: EM131991712

ICT Services and Management Assignment -

Assignment 1 - 10 tasks and it should be 250 to 300 words each.

1. The text discusses how modern CPUs function. Recently a critical flaw in microprocessor design has been discovered that allows two extremely serious security exploits: Spectre and Meltdown. Find and summarise ONE resource that describes how either of these exploits work. The resource (and your summary) should focus on what is occurring in the CPU that allows these exploits to occur.

2. Prior to 1985, there were very few Operating Systems (OSes) that used Graphical User Interfaces (GUIs). Find and summarise ONE resource that describes ONE of these GUI operating systems. The OS must have been release prior to 1985 so cannot be Microsoft Windows.

3. Low-Powered Wide-Area Networks (LPWANs) are wireless communication networks that are characterised by linking devices over large distances. Devices (including simple sensors) typically can only communicate at very low bit rates, however, the communication and associated electronics consume very little power. As such, LPWAN devices can be battery powered and operate independently for many months or even years. Find and summarise ONE resource that describes ONE platform or technology that implements a LPWAN.

4. Voice over IP (VoIP) is a group of hardware and software technologies that allow users to communicate via voice and video over the Internet. VoIP uses a number of different software protocols, depending on the application. Find and summarise ONE resource that describes ONE of these VoIP protocols.

5. One of the many uses of cryptography has been the development of the blockchain. Blockchains are commonly used as the basis for maintaining the data integrity of crypto currencies, though have many, many more applications. Find and summarise ONE resource that describes how blockchains work. Note that the resource should focus on the blockchain mechanism, NOT crypto currencies.

6. One controversial practical application of network traffic management is in the contravention of the principle of "net neutrality". Find and summarise ONE resource that describes what net neutrality is and how its contravention could impact on individual and business users of the Internet.

7. Information Systems have led to greater and greater degrees of automation in the workplace. There is currently extensive speculation on which jobs will cease to be performed by humans in the near future. Find and summarise ONE resource that discusses jobs that are likely to not exist in the future due to ICT based automation. Note that the resource must clearly link the loss of the job(s) to advances in ICT.

8. With the advent of mass data collection and storage has come the use of these datasets for machine learning. Find and summarise ONE resource that describes what machine learning is and how it is being used.

9. Critical to application development are the languages used to implement the specifications. Find and summarise ONE resource that describes ONE programming language that has been developed since 2008. The resource (and your summary) should include information on the principle uses and features of the language.

10. While information systems and technology deliver many benefits to society, they can also result in negative effects and outcomes. One recent controversy, the propagation of fake news and its influence on elections, has been linked to a type of software called a "bot". Find and summarise ONE resource that describes what bots are and how they can be used for disseminating misinformation and affecting human behaviour.

Assignment 2 -

Introduction - In this assignment, you are to implement a console application that supports simple BMI (Body Mass Index) analysis functionality through a class called BMIAnalyser. A phased implementation approach is recommended; refer to Appendix 2 for further details.

The Application - The data to be analysed is to be loaded from 3 arrays containing person identifiers, heights (in metres) and weight (in kgs) using the loadFromTables() method provided in Appendix 1. Loading involves the creation of objects of type Record from each data triple (id[i], height[i], weight[i]). These are to be stored in an array of type Record called data. The size of this array is to be the same size as the data arrays. During loading, the BMI for each individual is calculated, using the following formula:

BMI = weight / (height*height)

where weight is in kilograms and height is in metres. The corresponding category is then determined as follows:

Category

BMI (kg/m2)

from

to

Very severely underweight

 

15

Severely underweight

15

16

Underweight

16

18.5

Normal (healthy weight)

18.5

25

Overweight

25

30

Obese Class I (Moderately obese)

30

35

Obese Class II (Severely obese)

35

40

Obese Class III (Very severely obese)

40

 

This allocation is to be provided as a separate (private) method called classify() that is not provided in Appendix 1. The code for loading is provided in Appendix 1 as the method loadFromTables(). In order to facilitate search, data is to be maintained in ascending order of person id. Sorting is to be done after loading, using a method called sortById(). This method must implement the insertion sort algorithm. Note that loadFromTables() and sortById() are to be invoked from the constructor for the BMIAnalyser class.

The application's View class is to execute (using a switch statement) the following command options:

1. Display the record for a specified person

2. Display records for all persons with BMI values within a specified range.

3. Display the minimum, maximum and average BMIs

4. Exit the application

Note that

1. Each command is designated a number

2. Command 1 requires a single argument - the subject id

3. Command 2 requires 2 arguments - the lower and upper bounds of a range of BMI values

4. I have added a "help" command (command 0)

5. The command options are displayed at the start of the application and whenever a "help" command is entered, rather than than after each command.

6. Records are displayed with no explanation of the fields

Feel free to adopt the above scheme or if you prefer, implement a more verbose interaction scheme.

Attachment:- Assignment File.rar

Reference no: EM131991712

Questions Cloud

Find the present value of an investment in plant : Find the present value of an investment in plant and equipment if it is expected to provide annual earnings of $63500 for 15 years
Brief review of the article : Provide a brief review of the article's content; and then discuss your opinion of the proposal - The article chosen should be at least 12 paragraphs long
How time inconsistency and myopia cause people : 1. Discuss how time inconsistency and myopia cause people to make a suboptimal long run decision.
What is the role of health care reform in shifting the focus : What is the role of health care reform in shifting the focus from a disease-oriented health care system toward one of wellness and prevention.
Describes ONE platform or technology that implements a LPWAN : ICT Services and Management Assignment. Find and summarise ONE resource that describes ONE platform or technology that implements a LPWAN
Which immunity would you advise your client to take : Your client, a codefendant, is given a choice by the prosecutor between transactional immunity and use and derivative use immunity.
Need to work toward more prosperous futures : "In order to counteract income inequality, it's essential to tackle poverty in an integrated way that has long-term impact.
Identify the importance of the iom future of nursing report : Identify the importance of the IOM "Future of Nursing" report related to nursing practice, nursing education and nursing workforce development.
How do literacy skills affect your current positio : With today's evolving world of technology, we sometimes forget that basic literacy skills are not what they should be across the nation.

Reviews

len1991712

5/22/2018 3:04:43 AM

Course: masters in information technology. Subject: ICT services and management. 10 tasks and it should be 250 to 300 words I need references for each task.

len1991712

5/22/2018 3:04:36 AM

For the commands that require arguments ( i.e. command 1 and command 2), note that a. For commands 1 and 2, basic error checking is expected. For command 1, an error message is to be displayed if an id does not exist. For command 2, an error message is to be displayed if a member of the range is < 0 or > 100 or if the second member of a range is less than the first member. b. For command 2, the range is exclusive of the values specified. Consequently, having both members of a range equal is to be flagged as an error. c. For command 1, binary search is to be used. d. For command 2, the results are to be stored in an ArrayList for display The application must conform to the class diagram of Figure 1, although additional private members and methods are permitted.

len1991712

5/22/2018 3:04:28 AM

You are to submit a zipped folder containing - The four .java files that comprise your application. Alternatively, if you have used NetBeans, this can be replaced with a zipped project folder. Details of how to do this are provided in the NetBeans FAQ on the unit website. Report.docx. This file contains a test report that includes student name, student ID number, unit name, unit code, a test plan and test results. The test plan is to contain a list of the input values that you have used to test the program, the expected output values and the actual output values generated by your program.

len1991712

5/22/2018 3:04:21 AM

The test results are screenshots to show that that the program generates the actual outputs shown in the test plan. Note that because BMI is calculated as a floating point value, we can’t (in general) test it for equality. What this means in terms of your test plan is that you do not need to test the category end points – all you need to do is to generate one set of inputs (and the corresponding output) per category.

Write a Review

Other Subject Questions & Answers

  Cross-cultural opportunities and conflicts in canada

Short Paper on Cross-cultural Opportunities and Conflicts in Canada.

  Sociology theory questions

Sociology are very fundamental in nature. Role strain and role constraint speak about the duties and responsibilities of the roles of people in society or in a group. A short theory about Darwin and Moths is also answered.

  A book review on unfaithful angels

This review will help the reader understand the social work profession through different concepts giving the glimpse of why the social work profession might have drifted away from its original purpose of serving the poor.

  Disorder paper: schizophrenia

Schizophrenia does not really have just one single cause. It is a possibility that this disorder could be inherited but not all doctors are sure.

  Individual assignment: two models handout and rubric

Individual Assignment : Two Models Handout and Rubric,    This paper will allow you to understand and evaluate two vastly different organizational models and to effectively communicate their differences.

  Developing strategic intent for toyota

The following report includes the description about the organization, its strategies, industry analysis in which it operates and its position in the industry.

  Gasoline powered passenger vehicles

In this study, we examine how gasoline price volatility and income of the consumers impacts consumer's demand for gasoline.

  An aspect of poverty in canada

Economics thesis undergrad 4th year paper to write. it should be about 22 pages in length, literature review, economic analysis and then data or cost benefit analysis.

  Ngn customer satisfaction qos indicator for 3g services

The paper aims to highlight the global trends in countries and regions where 3G has already been introduced and propose an implementation plan to the telecom operators of developing countries.

  Prepare a power point presentation

Prepare the power point presentation for the case: Santa Fe Independent School District

  Information literacy is important in this environment

Information literacy is critically important in this contemporary environment

  Associative property of multiplication

Write a definition for associative property of multiplication.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd