4.- I was very sick for a while so I don't really know what I am doing * This homework
...
eation of several BST functions * We have to use Valgrind * We have to create a memory struct that provides a compare function for insertion * The above needs to contain two fields of unsigned int, representing memory address and size int memory_addr_cmp(const void* x, const void* y){ //TODO return 0; } By the instructions: "This function takes two arguments, const void* x and const void* y, you will need to cast both of them to type "memory*", and make comparisons. If x is less than y, return -1. If x is greater than y, return 1. If they are equal, return 0;" Also per the instructions, concerning the BST functions "Note, in particular, that there are two separate structus - the node struct that describes information for a single node in the tree, and a bst struct, that holds the root pointer and a function pointer to the comparison function being used for this tree. When you first create the tree, you pass in the comparison function, and this will be used for all functions that need it thereafter. Therefore, after that, you don't need to specify the comparison function to bst-level functions. The stored function pointer is then passed to the node-level functions." So then we have to create allocation and initialization functions for both the BST and one for the node. * nod_insert, BST_insert then inorder_traversal
View More
6.I have attached my homework... my answers are in red and the questions are highlighted in yellow. Scatter Plot,
...
catter Plot, simple regression line re: the amount of tar having an effect on the amount of nicotine in cigarettes. Mainly.... the data set shows tar levels ranging from 1mg - 17mg, with an additional data point of 29..8mg - it remains on the regression line. My questions come from the 'appropriateness' questions..
My thoughts:
x=0, y intercept is 0.131mg - 0 mg is below the data set so inappropriate? OR Appropriate because still plausible that a cigarette with NO tar could still have 0.131 mg of nicotine.
Then...for the appropriateness of 25mg... if using the top level of the data set of 29.8mg then yes, it is appropriate as still within the parameters of the data set OR no, because 29.8mg is considered an outlier?
.... I have read the book, read our notes, etc (online class) and watched videos but nothing REALLY explains what is 'appropriate or not' and the example homework from our online book, they answers were always it wasn't appropriate.
View More
10.my homework is as follows, I have some given information and then i need to create a income statement, balance
...
t, balance sheet, and statement of retained earnings. Once that is done, I have to calculate a bunch of ratios like current ratio, quick ratio, debt ratio, debt to net worth ratio, times interest earned, average inventory turnover ratio, average age of inventory, receivables turnover ratio, average collection period ratio and so on.
View More
14.I need a tutor to help me with ACCOUNTING homework in the attached
IMG 8462 in reference with this Activity
...
Activity A2-4 is on page 78 of your textbook. It asks you to go to finance.yahoo.com and enter the ticker symbol for Apple Corporation stock (AAPL). A page will open up which contains information on Apple, including interactive charts which allow you to see the movements in Apple's stock price over a selected period of time. Also included are Apple's most recent financial statements. Find the most recent financial statement information (not the 2008 information that is contained in the solution posted on the Blackboard site). Activity A2-4 then asks 10 questions about information that is contained in the financial statements. For example, question #7 asks what the annual dividend is on Apple stock. Take turns finding the answers to these questions until all 10 questions have been answered. Then think about whether you would invest money in Apple stock right now. Do you think it is over or under-priced? Why?
and the other ones : IMG 8140 to 8143
Thank you
View More
17.Hi, I have one question on my math homework that I can't seem to figure out. Please help me! Here
...
is Imagine that in the voting for a certain award, 7 points are awarded for first place, 4 points for second, 3 points for third, 2 points for fourth, and 1 point for fifth. Suppose there were five candidates (A, B, C, D, and E) and 47 voters. When the points were tallied, A had 155 points, B had 173 points, C had 170 points, and D had 154 points. Find how many points E had and give the ranking of the candidates. (Hint: Each of the 47 ballots hands out a fixed number of points. Figure out how many, and take it from there.)
View More