Questions
A new restaurant keeps track of the number of nightly customers at monthly intervals over the...

  1. A new restaurant keeps track of the number of nightly customers at monthly intervals over the course of a year. The restaurant has done very little advertising; most of its publicity is by word of mouth but its number of customers is increasing. The restaurant does not have a seasonal difference in number of customers (for example, no summer crowds).
  1. Using the data below, fit each an exponential regression model to the data using Excel.

Month

Nightly

customers

0

35

1

41

2

46

3

54

4

66

5

84

6

103

7

117

8

141

9

180

10

222

11

275

  1. Write down your regression equation.

  1. Enter the regression equation into your calculator and use the table feature to estimate when the restaurant will have 400 people.

  1. What does the model predict about the number of customers in 18 months?

  1. What does the model predict as time goes on? For example how many customers will be at the restaurant in 300 months (25 years), is this reasonable?

  1. What is the growth rate of your regression equation? Find and interpret it.

In: Math

I am supposed to provide verbiage (shown below) and a chart to support the verbiage. I...

I am supposed to provide verbiage (shown below) and a chart to support the verbiage. I need your help in making a chart that I can paste into my word document from the current ratios from PepsiCo and Coca-Cola provided below. I know very little about excel or charts and hope you can assist me in learning this process. It will definitely be worth a 5-star rating for you. Thank you for your time and support.

The current ratio is enumerated from the balance sheet and is a comparison of the current assets to current liabilities which is calculated by dividing the two numbers (Law, 2016). PepsiCo’s total current assets for 2017 were $31,027,000 and the total current liabilities for the same period was $20,502,000. When these two numbers are divided, the current ratio is 1.51: 1 (PepsiCo, 2019). Coca-Cola’s total current assets for the same time frame were $36,545,000 and their total current liabilities in 2017 equaled $27,194,000. The partition of the statistics is equivalent to the current ratio of 1.34: 1 (Coca-Cola, 2018).

In: Accounting

Palindrome Javascript - NUMBERS I am trying to write this javascript function to check if a...

Palindrome Javascript - NUMBERS

I am trying to write this javascript function to check if a number is Palindrome..

Palindrome means - a word, phrase, or sequence that reads the same backward as forward, e.g., 12321

This is the code i have, but it doesnt work.

PLEASE MAKE SURE IT WORK BEFORE POST ANSWER, I GOT @ CODE THAT DID WORK BEFORE

HTML

JavaScript Palindrome Exercise

rel="stylesheet"

type="text/css"

href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/css/bootstrap.min.css"

/>

Palindrome

Enter a positive number:

Is this a palindrome?

No

.JS

// Enter your code here

let convertButton = document.getElementsByClassName("btn")[0];

let userInput = document.getElementById("number").value;

let results = document.getElementById("result").value;

convertButton.addEventListener("click", function (event) {

event.preventDefault();

console.log(userInput);

if (validatePalidrome(userInput))

document.getElementById("result").innerHTML = "true";

else document.getElementById("result").innerHTML = "false";

});

function validatePalidrome(numbers) {

let userStringArray = userInput.split("");

let reverseUserInput = userStringArray.reverse();

let joinReverseString = reverseUserInput.join("");

if (userInput.localeCompare(joinReverseString) === 0) {

return true;

}

return false;

}

In: Computer Science

Write a python program to finish a big-data processing task --- finding out most frequently used...

Write a python program to finish a big-data processing task --- finding out most frequently used words on Wikipedia pages.

The execution of the program generates a list of distinct words used in the wikipedia pages and the number of occurrences of each word on these web pages. The words are sorted by the number of occurrences in ascending order. The following is a sample of output generated for 4 Wikipedia pages.

126 that
128 by
133 as
149 or
160 for
164 is
189 on
191 from
345 to
375 advertising
443 a
473 and
480 in
677 of
1080 the

Since there are a huge number of pages in Wikipedia, it is not realistic to analyze all of them in short time on one machine. In the project, you need to analyze all the pages for the Wikipedia entries with two capital letters. For example, the Wikipedia page for entry "AC" is https://en.wikipedia.org/wiki/AC . Use urllib or urllib2 library to download a page.


A HTML page has HTML tags, which should be removed before the analysis. Use BeautifulSoup library to convert a text from HTML format to text format.

In: Computer Science

Write a class called VLPUtility with the following static methods: Java Language 1. concatStrings that will...

Write a class called VLPUtility with the following static methods: Java Language

1. concatStrings that will accept a variable length parameter list of Strings and concatenate them into one string with a space in between and return it.

2. Overload this method with two parameters, one is a boolean named upper and one is a variable length parameter list of Strings. If upper is true, return a combined string with spaces in upper case; otherwise, return the combined string as is.

3. makeWord: accepts a variable length parameter list of char values and make a word from these character values, return the result as a String.

4. Overload this method so that it accepts a variable length parameter list of char values, a boolean variable named reverse, and an int variable named repeat.

a. If the boolean variable is true, the combined char values will be reversed.

b. Based on the value of the int variable, the combined char values will be repeated.

c. The result will be returned. For example, if ‘a’, ‘l’, ‘l’, ‘o’, ‘w’ are passed, it will be combined into “allow”. If the boolean variable is true, it will be reversed to “wolla”; if the int variable value is 2, it will be either “allowallow” or “wollawolla”

In: Computer Science

please use C++ Create a class named Byte that encapsulates an array of 8 Bit objects....

please use C++

Create a class named Byte that encapsulates an array of 8 Bit objects. The Byte class will provide the following member functions:

Byte - word: Bit[8] static Bit array defaults to all Bits false

+ BITS_PER_BYTE: Integer16 Size of a byte constant in Bits; 8

+ Byte() default constructor

+ Byte(Byte) copy constructor

+ set(Integer): void sets Bit to true

+ clear(): void sets to 0

+ load(Byte): void sets Byte to the passed Byte

+ read(): Integer16 returns Byte as Integer

+ place(Integer): Bit Return Bit& at passed Base2 place

+ NOT(): Byte returns this Byte with its bits not'ed

+ AND(Byte): Byte returns this Byte and'ed with passed Byte

+ OR(Byte): Byte returns this Byte or'ed with passed Byte

+ NAND(Byte): Byte returns this Byte nand'ed with passed Byte

+ NOR(Byte): Byte returns this Byte nor'ed with passed Byte

+ XOR(Byte): Byte returns this Byte xor'ed with passed Byte

+ XNOR(Byte): Byte returns this Byte xnor'ed with passed Byte

In: Computer Science

QUESTION 5 Never read an empirical paper without a calculator. Check the numbers and the percentages....

QUESTION 5

Never read an empirical paper without a calculator. Check the numbers and the percentages. Do the number of subjects in the tables of results add up to the numbers the researchers said they enrolled at the beginning of the study? All of this will help you understand what the authors did in conducting their study. Two other important tools to have at hand when critically reading a research paper are the highlighter tool in your word processor or spreadsheet for marking important sections of the paper and a sticky note or comment tool in your software for writing notes and questions on the paper itself.

True

False

QUESTION 7

A review of any body of literature actually consists of four fundamental tasks, after the subject of the review has been decided these include writing a synthesis that includes only the content and never a critical analysis of these materials.

True

False

QUESTION 10

A more sophisticated strategy for indexing the contents of an expanding Documents folder is the Matrix Indexing System. The simpler approach is this tracking system. Whichever system you use, the benefits accrue only if you keep the list up to date.

True

False

In: Psychology

Read the attached HBR Case Study: "Keeping to the Fairway" Should Pace Sterling proceed with this...

Read the attached HBR Case Study: "Keeping to the Fairway" Should Pace Sterling proceed with this sponsorship?

Companies regularly face decisions centered on how best to market their brand. Choices involving spokespeople or organizations with which they partner are critical. This week's assignment is to prepare a case analysis which responds to the information listed below. Your analysis should be in a MS Word document in paragraph form, minimum 2 pages, double-spaced, Arial, 12 pt font: Should Pace Sterling proceed with this sponsorship? Defend your position Pro or Con. When drafting your answer, take the following into consideration: In your introductory paragraph(s) be sure to provide some brief information about the case Do you feel that this sponsorship made any sense in the first place? Why or why not? Is the sponsorship for Pace Sterling worth any negative publicity that might accompany their relationship? If a company associates itself with a sexist organization, what is that saying about their own values? Is that important particularly in today’s #Me Too movement

In: Operations Management

Please solve this question in C++ language using recursion. Q (1) Write functions for each of...

Please solve this question in C++ language using recursion.

Q (1) Write functions for each of the following problems. Each problem should be solved by writing a recursive function. Your final program should not have any loops in it.

  1. Write a function that uses recursion to raise a number to a power. The function should take two arguments, the number to be raised to the power (floating point) and the power (a non-negative int).                                                                                       (10 Points)
  1. Write a boolean function named isMember that takes two arguments: an array of type char and a value. It should return true if the value is found in the array, or false if the value is not found in the array.                                                             (10 Points)
  2. A palindrome is any word, phrase, or sentence that reads the same forwards or backwards. Here are some palindromes:                                                      

Level

Civic

Pot top

A man a plan a canal Panama

Write a boolean function that determines if a string argument is a palindrome. The function should return true if the argument reads the same forwards and backwards. Your function should ignore spaces and be case-insensitive. Assume the input is just letters and spaces.                                                                                         (20 Points)

In: Computer Science

Create the following positions based upon a job analysis: Mailroom clerk: Entry level for a long-term...

Create the following positions based upon a job analysis: Mailroom clerk: Entry level for a long-term existing company in San Diego, CA Manager in the marketing department: Mid-level position in a start-up company in Scottsdale, AZ Prepare standard job descriptions of 350 words for each of the positions with the following sections: Job summary Job requirements (minimum education, experience and certifications, and/or training required) Job functions (detailed description of the job duties); Make sure each duty begins with a present action verb. Other information (KSAs, physical requirements, working conditions, reporting relationships, location, travel requirements and working hours) Prepare a 350-word paper after the job descriptions are created that includes the following: Explain the pay scale appropriate for the each job (local vs. regional vs. national) and why the pay scale is appropriate to ensure market competitiveness. Discuss direct and indirect compensation plans that match that of the company's life cycle for each job. Format your paper consistent with APA guidelines.

In: Operations Management