Questions
In Diet and Wellness Ruben Ward Profile 2000 calorie menu fom my plate intake bs goals....

In Diet and Wellness Ruben Ward Profile 2000 calorie menu fom my plate intake bs goals. Daye of Birth May 7th 1998 19yrs old.

In: Biology

LIST AT LEAST 3 CONCRETE ADMIXTURES THAT HAVE BEEN DEVELOPED IN THIS CENTURY (2000-2020), AND EXPLAIN:...

LIST AT LEAST 3 CONCRETE ADMIXTURES THAT HAVE BEEN DEVELOPED IN THIS CENTURY (2000-2020), AND EXPLAIN:

                    a) Use or Application

                    b) Typical Dosage

                    c) Advantages

                    d) Disadvantages

In: Civil Engineering

Design for flexure a simple span beam 26’ long to carry PD = 1000# and PL...

Design for flexure a simple span beam 26’ long to carry PD = 1000# and PL = 2000# at the center of the span. f’c = 4,000psi and fy = 60,000psi. show all work

In: Civil Engineering

Determine the necessary sample size for the following examples: A) A senator wants an estimate of...

Determine the necessary sample size for the following examples:

A) A senator wants an estimate of the proportion of the population who support her education views. She wants the estimate to be within .013 of the true proportion. Assume a 95 percent level of confidence.

B) 45 percent of tourists going to Las Vegas go to a concert. The Las Vegas tourism board wants to update this percentage. For the new study, the estimate should be within 2% of the population proportion with a 98 percent confidence level.

In: Statistics and Probability

Chapter 9 in the textbook touches upon international trade agreements and two relevant issues, labor standards...

Chapter 9 in the textbook touches upon international trade agreements and two relevant issues, labor standards and the environment in international trade. Please read the chapter and select ONE issue that you feel most passionate about. In your discussion, please respond to the following:

Why do you choose this particular issue?
Please provide an update on your chosen topic. The textbook material is a little behind on timing, so any recent development in the status of the issue, outcome, etc. should be shared.

In: Economics

Question 1 (10 marks) Computer Whiz Pty Ltd (Computer) has four directors. Charlie is one of...

Question 1

Computer Whiz Pty Ltd (Computer) has four directors. Charlie is one of the directors. Computer’s constitution provides that all transactions over $5,000 need to be approved by a majority of directors.

Charlie enters into a contract for $7,000 with Simone to take photos to update the company website. Simone sends the bill to Computer who are refusing to pay on the basis they never authorised the contract.

Advise Simone as to which statutory assumptions in the Corporations Act 2001 (Cth) she can rely on?

In: Accounting

Big Red Computer Sales sold to Little Red Insurance Co. The following package. Initial software package...

Big Red Computer Sales sold to Little Red Insurance Co. The following package.

Initial software package for         100,000

Training                                     300,000

Updates                                       50,000

Terms of the sale include initial down payment of 200,000 on date of sale of 1/1/04 and balance due 1/1/05. Software package is to be delivered and installed when down payment is made. Training is to incur over first two years and update to occur at end of first year. Prepare journal entries.

In: Accounting

java code: adds a new regular task, delete a task , show all tasks, and show...

java code: adds a new regular task, delete a task , show all tasks, and show regular tasks, mark a task as important (possibly through ID), complete task, show all completed tasks, show important tasks.

I also need a UML diagram for the code


update: The "task" is like something in a to do list. example) task 1. name: get carrots important: no completed: yes. you can run my code as an example if needed

In: Computer Science

This assignment will test your knowledge and skills in C++. Create a class named employee and...

This assignment will test your knowledge and skills in C++.

  1. Create a class named employee and have the data members of:
    1. Name
    2. ID
    3. Salary
  2. Create a class named manager that inherits the employee class and adds the data members:
    1. Managed_Employees (Array of up to 3 employees)
    2. Department
  3. Create methods to update each data member in the employee class.
  4. Create a method to print out the managed employees sorted by their salary in the manager class. (You can use one of the sorting algorithms we learned)

In: Computer Science

Complete the C++ code #include <iostream> #include <stdlib.h> #include <time.h> using namespace std; struct Cell {...

Complete the C++ code

#include <iostream>
#include <stdlib.h>
#include <time.h> 

using namespace std;
struct Cell {
    int val;
    Cell *next;
};


int main()
{
    int MAX = 10;

    Cell *c = NULL;
    Cell *HEAD = NULL;
    
    srand (time(NULL));

    for (int i=0; i<MAX; i++) {
        // Use dynamic memory allocation to create a new Cell then initialize the 
        // cell value (val) to rand().  Set the next pointer to the HEAD and 
        // then update HEAD. 
 
    }

    print_cells(HEAD);
    
}

In: Computer Science