In: Biology
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 = 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 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
In: Economics
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 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 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
In: Computer Science
This assignment will test your knowledge and skills in C++.
In: Computer Science
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