Questions
You are going to create a console based program to keep track of a small business...

You are going to create a console based program to keep track of a small business that sells Doodads.

First you will need to create a class Doodad that keeps track of two integers and two Strings.

Next, create a constructor for the Doodad.

Next, add getters and setters for each of the fields (two integers and two Strings).

You need to use Doodad.java (see the starter code)

Inside your main method ask the user to read in the two integers and two Strings. Create a Doodad object and add it to an array of 100 Doodad objects. Allow the user to keep entering in Doodad objects until the user wishes to quit.

Once the user is done entering Doodad objects, show the information about the Doodads they entered.

You will show the first number, followed by a space, followed by the first word.

In: Computer Science

Asks the user "How many parrots do you own?"         2: Reads in that many single...

Asks the user "How many parrots do you own?"

        2: Reads in that many single word names (one for each parrots) from the user and stores the names in an array.

        3: After the user has finished entering names, the program should display the list of all the parrots the user entered.

        4: then display the parrots  in alphabetical order for part 3. Note: string objects can be compared with the “<” operator, which will determine if a given string is alphabetically less than another string.

You may assume the user will own at most 100 parrots.

c++

"output"

Welcome! How many dogs do you own?

- 4

Ok, enter the names!

> james

> flyingmo

> homer

> kitty

these are the names you entered: flyingmo, homer, james, kitty

In: Computer Science

A survey was taken involving the Spring 2011 Math 1530 students at ETSU. One of the...

A survey was taken involving the Spring 2011 Math 1530 students at ETSU. One of the questions asked was "When a person has a disease that cannot be cured, do you think doctors should be allowed by law to end the patient’s life by some painless means if the patient and his/her family request it?”  

Here is a table of the responses

yes

no

don't know

total

female

236

148

95

479

male

222

82

55

359

total

458

230

150

838

Read the questions carefully. Word order makes a difference.

Question 9 (1 point)

If we pick one Spring 2011 Math 1530 student at random, what is the probability that we get a male student?

PERCENT ANSWER WITH TWO PLACES AFTER THE DECIMAL.

In: Math

You work for a large beverage distribution company and you are managing the "Milk or no...

You work for a large beverage distribution company and you are managing the "Milk or no Milk" project, which involves a redesign of the milk container for your company. You have several things to consider in order to complete the project successfully. Most generally, you will need to factor both the functional and nonfunctional requirements of the project. Complete a 750-1,000 word proposal that identifies the appropriate stakeholders, defines the requirements for the stakeholders, and states the rationale for the requirements. Also, identify the business requirements across the organization so that the data can be properly validated. Some of the functional requirements to consider are the business rules, industry rules, legal or regulatory requirements, and certification requirements. Some of the nonfunctional requirements to consider are performance (i.e., shelf life), reliability, environmental impact, and ease of use to open.

In: Computer Science

Target Marketing and Segmentation Analyze marketplace dynamics impacting sales and marketing efforts. marketing manager in your...

Target Marketing and Segmentation

Analyze marketplace dynamics impacting sales and marketing efforts.

marketing manager in your organization, you first need to educate the management team with regard to the importance of targeting and segmentation. Therefore, you have decided to prepare a 800-1000 word report to share with the decision-makers in your organization. In your report you will be addressing the following concerns:

What are the characteristics of markets and market segments?

What is the importance of market segmentation?

What are some of the criteria for successful marketing segmentation?

What are some of the common bases used to segment consumer markets?

PLEASE MAKE COPY PASTE AVAILABLE
What are some of the strategies for selecting target markets?

Your report will be shared with the rest of the organization in an attempt to educate your fellow managers on the importance of these marketing activities.

In: Operations Management

Demonstrate your understanding of the NINE forms of nonverbal communication by taking a photo to represent...

Demonstrate your understanding of the NINE forms of nonverbal communication by taking a photo to represent each. Do not use photos found online. Get creative and use your imagination; ask friends or family to help stage scenes, take candid shots, use Lego figures, etc. The possibilities are endless. Start looking at the world around you through the lens of these forms of nonverbal messages. Insert each photo into your word document and discuss in depth how each relates to the specific type of nonverbal communication.
1. KINESICS

2. HAPTICS

3. PHYSICAL APPEARANCE

4. ARTIFACTS

5. ENVIRONMENTAL FACTORS

6. PROXEMICS

7. CHRONEMICS

8. PARALANGUAGE

9. SILENCE

RESPONSE:
a. What did you learn about nonverbal communication as a result of this activity?

In: Psychology

Question:Consider the following statement “The Australian economy is "weak", with households weighed down by slow wages...

Question:Consider the following statement “The Australian economy is "weak", with households weighed down by slow wages growth and higher taxes, the OECD has declared in a report that backs lower interest rates, calls for more government spending and paves the way for unconventional monetary policies.” Use the dynamic AD-AS model to describe a longer run scenario where the government is trying to pursue higher economic growth using higher government spending, but were incorrect in their estimation of the major parameters governing long run full employment equilibrium. In your analysis discuss the implications of an incorrect scenario predicted by the government when effecting their stimulus policy on equilibrium output and (un)employment. Make sure to outline the assumptions you have made to reach your conclusion.

word limit:400-500)

In: Economics

Discuss and Elaborate the following questions with Diversity & Inclusion (Discuss and Elaborate more with Diversity...

Discuss and Elaborate the following questions with Diversity & Inclusion (Discuss and Elaborate more with Diversity & Inclusion, Organisational Behavior, Management and other related topics.) (Word limit of 600 words)

What is the optimal solution companies can use to approach Diversity & Inclusion?

Would measures (Example: A Quota or Targets) help to reduce bias or discrimination at work? Why or why not?

Use Google & International Business Machines (IBM), or other related organizations and company, as examples to discuss and illustrate the top two concerns of Diversity & Inclusion.

What have you learned from the Diversity & Inclusion? Discuss and Illustrate two learning points, give examples and elaborate when necessary.

*PLEASE TYPE YOUR ANSWER (NO SCREENSHOTS OR IMAGES) IN FULL SENTENCE/PARAGRAPH/REPORT FORMAT, NO POINT FORM. THANK YOU IN ADVANCE

In: Operations Management

####################################################################### ##################################### ###############python################# # RQ1 def merge(dict1, dict2): """Merges two Dictionaries. Returns a new dictionary that...

#######################################################################
#####################################
###############python#################

# RQ1
def merge(dict1, dict2):
    """Merges two Dictionaries. Returns a new dictionary that combines both. You may assume all keys are unique.

    >>> new =  merge({1: 'one', 3:'three', 5:'five'}, {2: 'two', 4: 'four'})
    >>> new == {1: 'one', 2: 'two', 3: 'three', 4: 'four', 5: 'five'}
    True
    """
    "*** YOUR CODE HERE ***"


# RQ2
def counter(message):
    """ Returns a dictionary where the keys are the words in the message, and each
    key is mapped (has associated value) equal 
    to the number of times the word appears in the message.
    >>> x = counter('to be or not to be')
    >>> x['to']
    2
    >>> x['be']
    2
    >>> x['not']
    1
    >>> y = counter('run forrest run')
    >>> y['run']
    2
    >>> y['forrest']
    1
    """
    "*** YOUR CODE HERE ***"

In: Computer Science

1. Your Cultural Diversity : Think about your views regarding diversity. As you enter the work...

1. Your Cultural Diversity : Think about your views regarding diversity. As you enter the work force, you will have the opportunity to interact with a wide variety of people. Reflect upon your own experiences with diverse people. Specifically examine experiences you have had with individuals of different: Culture, Ethnicity, Regional backgrounds, Religion, Gender, Sexual Orientation and Gender Identity, Disabilities, Age, Social class, Family structure. Write a 300-500 word essay regarding your reflections and experiences.

2. Include 4 picture books that display/promote diversity and can be used in a classroom.   Explain how, where and why you would recommend these particular books. Please include a picture and a short summary of each book.

In: Operations Management