Programming Homework Help

CSE 101 UC Build a Dictionary ADT by Implementing Functions Exercise

 

The following Dictionary ADT is to be completed in C language.

Please look at the attached pa6.pdf as it is the prompt. The Dictionary ADT follows a Binary Search Tree(BST) algorithm. As mentioned in pa6.pdf the main functions in Dictionary.c are lookup(k), insert(k,v) and delete(k) which will be implemented using the BST algorithms that are provided in the pseudocode.txt file.

There is also a gradingscript that our programs are supposed to pass which I will pass to you to be able to test the ADT.

Programming Homework Help

University of Maryland Baltimore Cloud Computing Adoption Essay

 

I’m working on a linux discussion question and need a sample draft to help me learn.

1.The CTO will be reviewing this document. You have shown how easy it is  to provision a Microsoft Windows desktop using AWS. The CTO chose  AWS because it offered a free account. She will now expect a  recommendation from you on what cloud service to use for the  organization PaaS (e.g. operating system) needs. There is no need for a  private cloud, so the public option will work just fine. Describe the  different between the Google Cloud Platform, Amazon AWS, and Microsoft  Azure. Make a recommendation to the CTO as to which service provider  you would recommend and why. Be explicit and detailed in your  recommendation. 

2.She will now expect a recommendation from you on what cloud service to use for the organization PaaS (e.g., operating system) needs.  There is no need for a private cloud, so the public option will work just fine.  Describe the different between the Google Cloud Platform, Amazon AWS, and Microsoft Azure.  Make a recommendation to the CTO as to which service provider you would recommend and why.  Be explicit and detailed in your recommendation.

Programming Homework Help

Biostatistics Application to Big Data Using R Project

 

1.It is thought that an enzyme level has a T-distribution with variance 1.2 and mean 0.
What’s the probability the enzyme level lies within one standard deviation of its mean?

2. Another enzyme level has a lognormal distribution with μ=1 and σ=1. About 5,000
hospitals measure this enzyme level for at least 10,000 patients (i.e., sample size).
Estimate the standard deviation of the mean and median enzyme level, respectively.

3. A blood test is done on two groups (A & B) of people. The results are shown in the
Table. Are the means of the two groups different?
A 51.8 52 50.6 53.4 53.8 50 50.2 51.2 50.8 51.4 49.2 50.6 52.4 54 51 53.2 50.4 51.8
B 46.6 40.8 57.6 48.2 52.6 47.6 50.2 48.6 43.8 56.6 48.8 46.8

4. Use Group A data in the Table above and find the standard deviation of its median (this
problem has nothing to do with the prior problem; you are just using Group A data)?

5. Two groups of people, C & D, have a dangerous disease. A new vaccine is given only to
C. In C, 140 persons recovered and 27 did not. In D, 438 recovered and 228 did not. Is
the vaccine effective?

6. 250 parents, each with 3 kids, are sampled and the number of daughters they have is
shown in the Table. Do you think the chances of the birth of a boy or girl is 50-50?
Possible count of daughters 0 girls 1 girl 2 girls 3 girls
Observed count 24 108 95 23

7. To test the hypothesis (H0) that a coin is fair, the following rule is adopted: if the number
of heads in 64 tosses of the coin lies between 28 and 36, the coin is fair; otherwise not.
Find the probability of rejecting H0 when it is actually correct. Draw the OC curve.

8. You are given XY19_midterm_2021.csv where Y has been “put together” using some of
the Xs. Use linear/ridge regression to model Y.

Programming Homework Help

CMSV Java Script & Geolocation Information Project

 

In your individual web site, enhance your existing page about browser security to show users their current location on a map. Note that you must specify a height and width using CSS for the element in which you display the map; these dimensions can be any size you choose. Also enhance the page to display the user’s latitude, longitude, and altitude, with a label for each value

Programming Homework Help

Cuyamaca College CPP to C to Assembly Maps Mars Code Project

 

I’m working on a c programming project and need a sample draft to help me learn.

char* text_array = new char[length + 1];

// copying the contents of the

// string to char array

strcpy(text_array, text.c_str());

for (int i = 0; i < length; i++)

Programming Homework Help

USF Programmable Logic Controller Linear Controls Essay

 

Hi there,

please write a brief introduction about Programmable Logic Controller (PLC) programming.

general information (introduction)

Background Information

Conclusion ( brief conclusion about PLC programming, I’m writing about a project in PLC.

Programming Homework Help

CSCI 4140 Dalhousie University Advanced Database Systems HTML Project

 

Client UI ( Requirements for A4 )
The client user is able to make a purchase order and to list the status for her/his company’s purchase orders. For the client
to make a purchase order:
The UI should enable a client user to:
 Log in and log out (simple credentials, consisting of username and password will suffice, wherein you may assume
that the client company name may serve as the username)
 Enter/insert a purchase order, including its lines.
 List the client’s purchase orders (without showing details of lines associated with a purchase order, but showing
the PO of information that applies to all lines (e.g., PO number and money owed by the company)).
 List details about a purchase order for which the client enters a PO number (status of the purchase order should be
shown also).
Further details on UI to fill-in and submit a PO include:
i. Input info about a purchase order (when available, this information should be prepared by the system automatically
using the client information stored in the DB (client agents need to be logged-in and hence the client company
information may be retrieved automatically the UI).
ii. Input information about purchase order lines, where the line numbers are filled in automatically by your software.
iii. For each line, after the part number is entered by the user, the system should automatically fill-in the purchase
price (retrieve currentPrice from the Parts table and store it in the field priceOrdered of the purchase order line).
iv. Once the agent is finished with inputting order lines, a message should be displayed that indicates whether the
purchase order was successfully placed (stored in the DB)

Programming Homework Help

ACC Operating System CPU Schedule Integer Array C Programming Exercise

 

Hello , i have an operating system cpu schedule question . We have an example start it must be same . Also assigning execution time has been given . I need sample code .Thanks for help

Programming Homework Help

Writing a Dice Game Usiing Blue J Exercise

 

Task #1 The Dice Game

  1. Write a DiceYI class with one instance variable, value.
    1. Constructor with a parameter for the initial face value. Validate that it allows only 1..6.
    2. Accessors getValue( ) which returns an integer.
    3. Mutators setValue( ) to set value. Validate it only sets 1..6
    4. Mutator roll( ) which randomize the instance variable to 1..6
    5. toString( ) method to return a string like “3” or “6”
    6. printMe( ) method for DEBUG. This should simply print the value in toString( ).
  2. Write a class (NOT A SUBCLASS) DicePairYI with a 2 element array of type DiceYI.
    1. Default constructor: Use Random class methods to initialize each DiceYI
    2. Constructor with a parameter for the initial face values. Validate that it allows only 1..6.
    3. Accessor getValue( i ) which returns the value of the first or second DiceYI.
    4. Accessor getTotal( ) which returns the sum the array DiceYI face values.
    5. Mutators setValue( i ) to set value. Let DiceYI validate it only sets 1..6
    6. Mutator roll( ) which randomizes each DiceYI in the array
    7. toString( ) method to return a string like “3, 4” or “6, 5”
    8. equals( ) method to compare a pair of dice with another pair of dice. Return true if they have the same face values. For example if one DicePairYI object has 4,6 and the other has 6,4 they are equal.
    9. printMe( ) method for DEBUG. This should simply print the value in toString( ).
  3. Write a client DiceGame1YOURNAME.
    1. Instantiate and initialize a pair of dice
    2. Instantiate score, a 20 element integer array of integers and initialize it to all 0.
    3. Write a play( ) method for a new game, it should reset the game and then continuously roll the dice until you win or lose or the array is full.
    4. Each roll is entered in the array until you win, lose, or the array is full.
    5. Write a printArray( ) method to print the score array on ONE line. Make it easy to read by adding a ” – ” after every 5 scores e.g.

4 8 9 8 5 – 7 0 0 0 0 – 0 0 0 0 0 – 0 0 0 0 0

The rules of the game: A player rolls the two dice and adds the number shown on them.

  1. Roll the two dice up to 20 times and save the total in the array.
  2. If the total is 7 or 11, you win. Put this in the array, report the results and exit the game.
  3. If the total is 2, 3, or 12, you lose. Put this in the array, report the results and exit the game.
  4. If the total is anything else, save the total as the “goal”. put it in the array, and you get to roll again.
  5. The new objective is to roll the same total as the “goal”.
    • You keep rolling until you either get “goal” or a 7. Show the array.
    • If you roll “goal”, you win. Put this in the array, report the results and exit the game.
    • If you roll a 7, you lose. Put this in the array, report the results and exit the game.
    • Sample Terminal:

You win: 10 10 0 0 0 – 0 0 0 0 0 – 0 0 0 0 0 – 0 0 0 0 0
You win: 7 0 0 0 0 – 0 0 0 0 0 – 0 0 0 0 0 – 0 0 0 0 0
You win: 8 11 8 0 0 – 0 0 0 0 0 – 0 0 0 0 0 – 0 0 0 0 0
You lose: 6 3 3 7 0 – 0 0 0 0 0 – 0 0 0 0 0 – 0 0 0 0 0
You lose: 4 5 5 12 9 – 6 6 7 0 0 – 0 0 0 0 0 – 0 0 0 0 0
You win: 8 8 0 0 0 – 0 0 0 0 0 – 0 0 0 0 0 – 0 0 0 0 0