Questions
Best seller books the meaning for the number of weeks 15 best seller list 22 weeks...

Best seller books the meaning for the number of weeks 15 best seller list 22 weeks the standard deviation is 6.17 weeks the meaning for the number of weeks 15 New York times hard cover nonfiction book spent on the list is 28 weeks the standard deviation is 13.2 weeks at a= 0.10 can we conclude that there is a difference in the mean times for the number of weeks the books were on the best seller list? Note: don’t use the P value method, use the five steps of hypothesis testing method! Please and thank you!

stats

In: Statistics and Probability

Is List type is an interface in the Java collections framework? Classes Vector, ArrayList, and LinkedList...

  1. Is List type is an interface in the Java collections framework?
  2. Classes Vector, ArrayList, and LinkedList are the same data structure but implement data storage in different ways.
  3. Classes, that implement Map interface in Java collections framework are used for storing what type of data?
  4. Declare and instantiate a list of elements of type String. Name this list myArray.
  5. what type of data structure is Stack?
  6. LinkedList data structure in Java collections is implemented as doubly linked lists.
  7. In PriorityQueue data structure how are the elements placed at the front of the queue?
  8. What type of data structure is a set?

In: Computer Science

2. What would you do if: You had to dispose tissues and towels from dissection? You...

2. What would you do if:

You had to dispose tissues and towels from dissection?

You had to discard disposable microscope slide?

3. List 3 things that you would use to protect yourself while dissecting preserved biological specimen

4. In case of an accident in the lab (for example, broken glassware or finger cut), list the steps you would take to ensure your safety and safety of others around you.

6. List three things you must do before you leave the lab:

In: Anatomy and Physiology

Relative strengths of acids: Can an Organic Chemistry I and II MASTER explain to me some...

Relative strengths of acids:

Can an Organic Chemistry I and II MASTER explain to me some rules of thumb in regards to the relative strengths of acids.

1) List the functional groups (alcohols, carboxylic acids, phenols, anhydrides, amides, etc.) in order of DECREASING ACIDITY.

2) In regards to substituents on aromatic rings, which substituents would act as stronger bases, why, and in what relative position (ortho, meta, or para); and if the number of substituents affects basicity?

The list will be most helpful, so please list as many functional groups as possible. Thank you in advance.

In: Chemistry

Create a class named RemoveDuplicates and write code: a. for a method that returns a new...

Create a class named RemoveDuplicates and write code:

a. for a method that returns a new ArrayList, which contains the nonduplicate elements from the original list public static ArrayList removeDuplicates(ArrayList list)

b. for a sentinel-controlled loop to input a varying amount of integers into the original array (input ends when user enters 0)

c. to output the original array that displays all integers entered

d. to output the new array that displays the list with duplicates removed

Use this TEST INPUT: 3 6 1 1 1 8 4 4 0

In: Computer Science

Because of a rising national concern about the environment and land use, the board of directors...

Because of a rising national concern about the environment and land use, the board of directors of your company has asked your department to develop a policy statement outlining your corporation’s views on the conservation of natural resources. Locate information about how government environmental policy affects your business. Submit your list of at least five sites with your notes, describing the information contained at each site and giving reasons why you chose these sites. Include in your notes and APA-style references list OR an MLA-stye list of works cited.

In: Operations Management

##### answer in python #####picture of output and input Create customer information system as follows: Ask...

##### answer in python

#####picture of output and input

  1. Create customer information system as follows:

Ask the user to enter name, phonenumber, email for each customer. Build a dictionary of dictionaries to hold 10 customers with each customer having a unique customer id. (random number generated)

  1. Take the keys of the above mentioned dictionary which are customer ids and make a list. Ask the use to enter a customer id and do a binary search to find if the customer exist in the list.
  2. Sort the above mentioned list by insertion sort. (Write insertion sort code)

In: Computer Science

Choose a country or location. i) Prepare an exhaustive list of positive and negative impacts of...

Choose a country or location.

i) Prepare an exhaustive list of positive and negative impacts of globalisation on ageing population in a location of your choice. Note: Part i needs a list!

ii) In 150 words, briefly summarize some challenges of creating a 'healthy public policy', targeted to to address negative impacts of globalisation on the ageing population listed in Part i.

Note: You can choose one or more negative impacts listed in Part i and focus on them for Part ii.

Word limit = Part i is an exhaustive list

Part ii : 150 words

In: Economics

In python I want to create a singular function that takes two parameters 'head; and 'skip'....

In python I want to create a singular function that takes two parameters 'head; and 'skip'.

Head is a linked list. Skip is a non negative value. If skip is zero it should return head unchanged. The skip amount determines the amount to skip over. I want to change the linked list accordingly.

If you have a linked list 11 -> 12 -> 18 -> 20 -> 24 -> 32 -> 38 -> 44

and skip =2, then you should return the following:

18 -> 32

If skip = 1, then you should return the following:

12 -> 20 -> 32 -> 44

In: Computer Science

SQL ONLY- Given Tables- Employee (EmployeeID, FirstName, LastName, Address) Department (DeptNo, DepartmentName, City) DepartmentEmployee(DeptNo, EmployeeID, Position)...

SQL ONLY-

Given Tables-

Employee (EmployeeID, FirstName, LastName, Address)

Department (DeptNo, DepartmentName, City)

DepartmentEmployee(DeptNo, EmployeeID, Position)

Project (ProjectNo, ProjectName, DeptNo)

Project Team ( ProjectNo, EmployeeID, Role)

MAKE THE QUERY FOR-

1. List the name and position of all the employee who works in the (DeptNo = ‘22C’).

2. List the total number of employees in each department for those departments with more than 5 employees.

3. List the project number, project name and the number of employees who worked on each project role.

In: Computer Science