+1(316)4441378

+44-141-628-6690

Archive for the ‘Undergraduate’ Category

MIPS practice (3 questions on PART ONE ONLY)

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.

Microbiology questions

I need the following 3 questions answered. I will upload class notes and pages from the textbook for reference.
1. What is a character-based tree and how is it more complicated than a distance-based tree?

2.  A new genetic analysis of the fungi indicates that there were four different independent losses of the flagellum among the chytrids. Why is this important for our understanding of the taxonomy of the fungi?

3.  Explain how viral classification is by necessity different from the classification of all other organisms?

US English

Needs to be at least 1 paragraph (5-6 sentences for each answer)

Horse Class Homework

Create a base Class Called Horses with the following properties
Name, Breed, Gender, Weight, Hands

Create a method in the horse class called CalculateValue
Value = Weight * 1.5

Create a derived class called RaceHourse. Add the following Properties
Mile_Time
Winnings

Create a function in the RaceHourse class called CalculateValue
Value = Weight*2 + Winnings

Create a derived class called WorkHourse. Add the following Property
Pull_Amount

In the Main form add the following instance of a Horse and display the information in the appropriate textboxes when Display Horse Information button is clicked
Name: Daisy, Breed: Pony, Gender: Female, Weight: 2000, Hands: 15

In the Main form add the following instance of a Race Horse and display the information in the appropriate textboxes when Display Race HorseInformation button is clicked
Name: Speedy, Breed: Thoroughbred, Gender: Male, Weight: 2100 Hands: 16, Mile Time: 2.75
Winni

Java Databases

Make a Java GUI program for a local doctorss office. There should be 4 tables, patients, employees, location, and appointments. The employees should hold name, address, phone, and whether or not they are a nurse, doctor or admin. This table may also
require additional information as you see fit. The location should be 5 different office locations. Each employee should be linked to a location. Appointments will hold the information about which location the appointment was at, at what time, the patient, and who the patient saw. You will need to create the database, populate it with data, create the main page and the insert, update and select pages required from the statement above. This entire program should be created in a GUI.

Java Homework

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.

tableau


    Students should publish a Tableau Dashboard
    The end-product must be a Story
    There is no maximum limit on the number of pages or combination of dashboards pages used for the story if it is relevant to the story
Submission:
    All URLs need to be submitted in the LMS-Olympus
    Along with the URLs you need to present an executive summary in the form of a presentation and use it to showcase key findings
To learn how to publish your tableau file, click here.
Please use the following  dataset- Car_Claims_Insurance
Note: Please include the URL in the document itself and upload it.
    Any assignment found copied/ plagiarized with another person will not be graded and marked as zero.
    Please ensure timely submission as post deadline assignment will not be accepted.
    Upon clicking the URL, one needs to ensure the f

Wep Application Feature Testing

The project (already given) is a Ruby/HTML web application that can be deployed on Rails server and/or Heroku platform.

What follows is the description of the already coded web project.
Project description
Given a set of images, the camera characteristics (HFOV, VFOV), the user input of the altitude and camera angle (e.g, 400 AGL, 30 deg), produce a visualization of what has been sensed.
a) Place an icon for each image on a map representing the location
b) Visualization of just locations and general direction the drone was looking. The icon should indicate the heading of the image, e.g., that the image was taken as location L facing NNW. The icon might be a circle with an arrow in the NNW direction.
c) Visualization of coverage. The icon should have a polygon projecting the area on the map covered by that image. Note, many of the images will have a partial overlap as when flying for missing persons, we definitely want to be on the safe side and have an overlap. <

Typing Speed program

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++.

C++ class STL Queue

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

1 program

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.