
1. Which of the following promotional elements has the potential to yield the greatest influence over a potential customer's decision to purchase a burrito from Chipotle?
Word-of-mouth
Advertising
Publicity
2. Which of the following promotional elements provides the most control for a marketing manager?
Advertising
Word-of-mouth
Publicity
3. In preparation for a new store opening within a neighborhood, if Chipotle were to offer free burritos to individuals who are influential within multiple large social groups or organizations within the related neighborhood with the objective of generating positive word-of-mouth, then this approach would be an example of a(an)
seeding strategy.
push strategy.
Internal marketing strategy.
4. Generally, the promotion mix strategy of a company should be designed so that its elements ____ each other.
complement
interfere with
confuse
don't influence
In: Other
Recall that you took samples of words from the
population of words in the Gettysburg Address, for which the
average length of a word is 4.295 letters.
1.Is the number 4.295 a parameter or a
statistic?
2.When you first selected your sample of 10 (circled)
words, what was the variable that you recorded about the words? Was
the variable categorical or quantitative?
3.You calculated the average (mean) number of letters per
word in your sample of ten circled words. Is this value a parameter
or a statistic?
4.Students in our class produced a graph on the board that
displayed the sample mean word lengths. What aspect of the graph
indicated that the sampling method was biased?
5.Would selecting words by closing your eyes and pointing
at the page 10 times produce an unbiased sampling method? Explain
briefly.
In: Statistics and Probability
1. Prepare a list of 10 interview questions to select a candidate for the position “marketing manager”. Please ensure that two behavioural, two situational, two job-knowledge, and two worker-requirements questions are included in this list of ten questions.
2. "A well-thought-out orientation program is essential for all new employees, whether they have experience or not." Explain why you agree or disagree with this statement. (word requirement: minimum 200 words)
3. Explain how you would conduct a job analysis. (word requirement: minimum 200 words)
4. Briefly describe each of the following possible types of interviews: unstructured panel interviews; structured sequential interviews; job-related structured interviews. (word requirement: minimum 200 words)
In: Operations Management
Python:
The goal is to reverse the order of month and date.
# For example,
# output: I was born on 24 June
print(reverse("I was born on June 24"))
# output: I was born on June two
print(reverse("I was born on June two"))
#output: I was born on 1 January, and today is 9 Feb.
print(reverse("I was born on January 1, and today is Feb 9."))
My code (so far, works for first two not the last):
def reverseOrder(string):
newString = []
count = 0
for word in string.split():
count = count+1
if word.isdigit():
count = count+1
newString.append(word)
newString[count-3], newString[count-2] = newString[count-2],
newString[count-3]
else:
newString.append(word)
return ' '.join(newString)
In: Computer Science
def main():
phrase = input('Enter a phrase: ') # take a phrase from user
acronym = '' # initialize empty acronym
for word in phrase.split(): # for each word in phrase
acronym += word[0].upper() # add uppercase version of first letter
to acronym
print('Acronym for ' + phrase + ' is ' + acronym) # print
results
main()
The program should then open the input file, treat whatever is on each line as a phrase and make its acronym using the function you wrote. It should print the acronyms, one per line to the output file. Assume that the input file will be already present in your default Python folder. The output file will be expected to get saved to the same folder. See below for an example input file input.txt and its corresponding output file output.txt that the program should generate.
Input: personal computer
Output:PC
In: Computer Science
In: Computer Science
Examine the relationship between the equity market and the bond market. To this end, we have estimated the following regression ??? = ?0 + ?1???? + ?? where ??? and ???? denote the daily returns at time ? of an equity index and a bond index, respectively, while ?? is a random error term. The estimated coefficients are ?̂ 0 = −0.004 and ?̂ 1 = −0.256, with their standard errors being ??(?̂ 0) = 0.007 and ??(?̂ 1) = 0.014. The sample size is ? = 1,000.
In: Statistics and Probability
Question 1:
Write a program to receive a string from the user and compares the first and second half of the word and prints “First and Second Half Same” or “First and Second Half Different”. If the length of the word is odd, ignore the middle letter.
For example:
Run 1:
Enter a word: abcdabc
First and Second Half Same
Run 2:
Enter a word: abcde
First and Second Half Different
Hint: use the Math.floor() and length() to get the halves of the string and use the equals() to perform the similarity check inside if-else statement.
**********************************************************************************
Question 2:
Write a program that reads three different integers from the users and prints “all the same” if they are all equal, “all different”, if three numbers are different and “neither” for all other cases.
For example:
Enter first number: 3
Enter first number: 2
Enter first number: 6
All Different.
**********************************************************************************
Question 3:
Write a program that reads three different floating point numbers from the users and prints the largest of those three:
For example:
First number: 2.36
Second number: 2.99
Third number: 2.78
Largest: 2.99
In: Computer Science
This problem is about the java programming and contain two parts
First part:
a word that reads the same forward and backward is called a
palindrome, e.g., "mom", "dad", "racecar", "madam", and "Radar"
(case-insensitive). Write a program called TestPalindrome, that
asks the user for a word and prints whether the word is a
palindrome or not.
Hint: for a string called inStr, you can use inStr. toLowerCase()
which returns a new string which is all in lower case letters. Use
two indexes forwardIndex and backwardIndex to scan the string
forward and backward at the same time.
Give the code of the first part.
The second part is :
copy-paste the TestPalindrome program,Then modify the program to
check a whole sentence (not just one word) to see whether it is a
palindrome or not. Punctuation, spaces, and capitalization must be
ignored.
Here are examples of palindromic sentences:
•Madam, I'm Adam
•A man, a plan, a canal - Panama!
Hint: to read a whole sentence, create a Scanner object called
input and then use input.nextLine(). For a character variable
called c, you can use Character.isLetter(c) to compute a boolean
result indicating whether the character is a letter or not.
The
In: Computer Science
Background: introduction to "Wrapper" classes, this is a tool or concept provided in the Java Programming Language that gives us a way to utilize native datatypes as Objects with attributes and methods. A Wrapper class in Java is the type of class which contains or the primitive data types. When a wrapper class is created a new field is created and in that field, we store the primitive data types. It also provides the mechanism to covert primitive into object and object into primitive.Working with collections, we use generally generic ArrayList<Integer> instead of this ArrayList<int>. An integer is wrapper class of int primitive type. We use a Java wrapper class because for generics we need objects, not the primitives."
Problem: Create a Word Counter application, submit WordCounter.java.
Word Counter takes input of a text file name (have a sample file in the same directory as your Word Counter application to we don't have to fully path the file). The output of our Word Counter application is to echo the file name and the number of words contained within the file.
Sample File: Hello.txt:
hello
hello
hello
hello
hello
hello
hello
hello
hello
hello
In: Computer Science