Create a network with a starting IP address of 192.168.18.0. All parts must be labeled and and layout must look like attached picture.
Attached also was a demonstration and example of the layout of the network with all parts labeled and IP address ranges displayed.
The program should include pure functional (i.e. non-I/O) code that performs the following
items of functionality:
i. return a list of the names of all the places
ii. return the average rainfall (as a float) for a place given its name
iii. return all place names and their 7-day rainfall figures as a single string which, when
output using putStr, will display the data formatted neatly into eight columns
iv. return a list of the names of places that were totally dry (i.e. had zero rainfall) a given
number of days ago (1 meaning yesterday, 7 meaning a week ago)
v. update the data given a list of most recent rainfall figures (one value for each place),
removing the oldest rainfall figure for each place
vi. replace a given existing place with a new place (the new place will have a name, a
location and a list of 7 rainfall figures)
vii. given a location return the closest place that was totally dry yesterday (assume the
world is flat use the standard P
For either Q2 or Q3, we'd like both the correct sequence of MIPS instructions as well as a detailed explanation of what's going on. Think of this as though you are trying to explain this to yourself at the start of the semester, i.e., you are coming up with your own worked examples. You might not have to comment every single line of code, but you should provide enough to explain to someone else.
Complete the following Java problems. Write the solutions at the bottom of each problem, take as much space as you need. If that does not suit you, you can make a different document for the solutions.
If this goes well I may have another order for you to do!
Thanks.
Create a C++ program that logs the person's typing speed from user input and shows it to them. The program must include all of the following methods:
OOP format
inheritance(derived classes)
file handling classes( open(), read(), write() from #include <fstream> )
user interaction(cout/cin),
arrays and data objects (Linked Lists, Binary Trees(struct Node*).
Make the program as simple as possible (while using the above mentioned methods) and place as many explanatory comments with the code as possible.
I have uploaded an example that uses C for reference, however your code must be original and in C++.
Design a class, ShoppingBasket. Each ShoppingBasket contains a count of the number of items in each of three categories, produce, meats, others. You will populate the counts of items in each category with the rand() function. Produce with a range of 1 -10, meats with a range of 0 - 3 and other with a range of 1 - 30.
You will then use the Queue or Dequeue templates from the STL to generate a queue of 10 ShoppingBasket. You then write a routine to "process" the queue. Each item in the produce category will take 4 seconds to process. Each item in the meat category will take 3 seconds to process. Each item in the other category will take one second to process. I suggest you include a method in ShoppingBasket to report out the total processing seconds for an instance of a ShoppingBasket based on the number of items in each category in that instance. Your "processing" routine will keep track of the total processing time for the e
Question Set 1 (10 part class modification):
1. Simple Linked List Class
Using an appropriate definition of ListNode, design a simple linked list class with only
two member functions and a default constructor:
void add(double x);
boolean isMember(double x);
Linkedlist ( ) ;
The add function adds a new node containing x to the front (head ) of the list, while the
isMember function tests to see if the list contains a node with the value x. Test your
linked list class by adding various numbers to the list and then testing for membership.
Do not create your own linked list template. Instead, use the List from the STL to perform the actions described in the text requirements. Use an InventoryItem class as the objects to populate your list.
2. List Copy Constructor
Modify your list class of Programming Challenge 1 to add a copy constructor. Test
your class by making a copy of a list and then testing membership on the copy.
Question Set 1 (10 part class modification):
1. Simple Linked List Class
Using an appropriate definition of ListNode, design a simple linked list class with only
two member functions and a default constructor:
void add(double x);
boolean isMember(double x);
Linkedlist ( ) ;
The add function adds a new node containing x to the front (head ) of the list, while the
isMember function tests to see if the list contains a node with the value x. Test your
linked list class by adding various numbers to the list and then testing for membership.
Do not create your own linked list template. Instead, use the List from the STL to perform the actions described in the text requirements. Use an InventoryItem class as the objects to populate your list.
2. List Copy Constructor
Modify your list class of Programming Challenge 1 to add a copy constructor. Test
your class by making a copy of a list and then testing membership on the copy.
Please note that there was an error with the original code template that was corrected at 7:50 on 4/22/2020. The arrays in the conditional statements for the fw and sp methods are supposed to all be the same.
This code works but there are some problems that need to be corrected. Your task is to complete it to course style and documentation standards CS 200 Style Guide. This project will be human graded with the Grading Rubric below.
During the process of writing code, the programmer is deeply immersed in the problem, the algorithms and code to solve it and has that context when naming methods, variables and writing comments. Looking at someone else's code, or even your own code 6 months later can be challenging since the names and comments weren't necessarily written to guide someone new to the problem and code. This assignment's code works, but some methods have poorly chosen names, formatting, and comments. The objective is to format it, reduce redundant code, improve the n
I need the entire assignment completed please.
I will provide the instructions as well as a zip file for the starter code, and a zip file for the datasets. I wasn't able to add the zip file for the datasets, so all the loose files are for the datasets.
Please follow the instructions carefully and fill out the starter code accordingly.
Most questions have two parts - first deriving it, and then filling out the starter code.
There is a kaggle competition component. You do not have to submit to it, but I would appreciate it if you could set up the datasets.