Questions
Complete the following assignment in C programming language. Get the user’s first name and store it...

Complete the following assignment in C programming language.

  1. Get the user’s first name and store it to a char array
    • Declare a character array to hold at least 20 characters.
    • Ask for the user’s first name and store the name into your char array.
    • Hint: Use %s for scanf. %s will only scan one word and cannot scan a name with spaces.
  2. Get 3 exam scores from the user:
    • Declare an array of 3 integers
    • Assume the scores are out of 100, and use a for loop to get user’s input
    • Your prompts should print out which exam score you are asking for:
      1. Example: “What is the score of Exam #1?” … “What is the score of Exam #3?”
    • Warning: Be careful of your array indexes!
  3. Find out the average exam score:
    • Use a for loop to calculate the sum of all exams.
    • Divide the sum by 3 to get the average and store the is data in a variable.
  4. Print out the summary for the use similar to:
    • “Hello NAME, based on your exam score of 80, 90, and 100, your average is 90.0 with a letter of an ‘A.’”

In: Computer Science

Topic 1 TRUE OR FALSE Q's 1.            Computer software is the collection of programs that provide...

Topic 1

TRUE OR FALSE Q's

1.            Computer software is the collection of programs that provide the instructions that a computer carries out.

2.            An abstraction is a mental model that removes or hides complex details.

3.            The abacus was the world's first electronic digital computer.

4.            Ada Augusta, Countess of Lovelace, is credited with being the first programmer.

5.            A vacuum tube was a device used in the third generation of computers.

6.            The fourth generation of computer hardware was characterized by large-scale integration.

7.            The personal computer was introduced in the fourth generation of computer hardware.

8.            The Internet is descended from a U.S. government-sponsored network called the ARPANET.

9.            Assembly-language is first generation software.

10.          Earliest machine programs were hard wired.

11.          Algorithmic thinking is a necessary skill in Computer Science.

12.          Computational Science is one of the Systems areas.

13.          Spreadsheets and word processors are known as software applications.

14.          Applications programmers use the tools built by systems programmers.

15.          An algorithm is a set of steps that defines how a task is performed.

In: Computer Science

First, launch NetBeans and close any previous projects that may be open (at the top menu...

First, launch NetBeans and close any previous projects that may be open (at the top menu go to File ==> Close All Projects). Then create a new Java application called "PasswordChecker" (without the quotation marks) that gets a String of a single word from the user at the command line and checks whether the String, called inputPassword, conforms to the following password policy. The password must: Be exactly three characters in length Include at least one uppercase character Include at least one digit If the password conforms to the policy, output "The provided password is valid." Otherwise, output "The provided password is invalid because it must be three characters in length and include at least one digit and at least one uppercase character. Please try again." Some other points to remember... Do not use a loop in this program.

The Character class offers various methods to assist us in finding a digit or cased letter. Remember to press "." to locate these methods and to leverage the online resources shown in our course thus far." For this PA, do not use pattern matching (aka "regular expressions").

In: Computer Science

Select the best response to the following question. As the head marketing executive of a major...

Select the best response to the following question.

As the head marketing executive of a major beverage manufacturer, you often use this technique to probe the views of industry experts to forecast developments in the dynamic beverage market.

Group polarization

Delphi technique

Brainstorming

Match each situation with the group decision-making concept that best describes it.

Situation Group Decision-Making Concept
At the meeting to decide how to handle an employee who made inappropriate statements to a coworker, the decision changed from a warning to a 3-day suspension after the group members discussed how important civility is to the company culture and to employee trust.   
If you want to encourage group members to be innovative and creative in generating a list of decision alternatives then it is best to use this approach.   
This is the best decision-making technique for teams that do not meet face-to-face.   

Use your knowledge of group decision-making to select the word or phrase that best completes the following sentence.

When     occurs, the group unknowingly makes unanimity rather than reaching the best decision its goal.

In: Operations Management

Consider the following information about Earl Grey, Inc. Total assets $250 million Total debt $110 million...

Consider the following information about Earl Grey, Inc.

  • Total assets $250 million
  • Total debt $110 million
  • Preferred stock $ 35 million
  • Common stockholders' equity $105 million
  • Net profits after taxes $25.5 million
  • Number of preferred stock outstanding 1.5 million shares
  • Number of common stock outstanding 9 million shares
  • Preferred dividends paid $2.5 per share
  • Common dividends paid $0.70 per share
  • Market price of the preferred stock $32.55 per share
  • Market price of the common stock $26.00 per share

Use the information above to find the following.

  1. The company's book value
  2. Its book value per share
  3. The stock's earnings per share (EPS)
  4. The dividend payout ratio
  5. The dividend yield on the common stock
  6. The dividend yield on the preferred stock

Directions:

  1. You will report the ratios and your analysis in a Word document.
  2. Your analysis should include a discussion of the strengths or weaknesses revealed in each ratio.
  3. All six ratios should be discussed.

In: Accounting

Your supervisor has asked to be informed of your activities and accomplishments and any problems you...

Your supervisor has asked to be informed of your activities and accomplishments and any problems you are encountering.

Your Task

For a job or volunteer position that you currently hold, or a previous one, describe your regular activities, discuss irregular events that management should be aware of, and highlight any special needs or problems you are having. Address the report to your supervisor, and include the company or organization's name and location.

Language Requirements

  • 200-300 words
  • General language: no slang or formal
  • Positive, respectful, and professional language
  • Proofread and correct all grammar and spelling errors before submitting (use Grammarly and your own eyes)

Format Requirements

  • Memo format informal report, in block style
  • From, To, Date, and Subject fields
  • Different sections with titled headings (example: Introduction, Activities, Events, Problems)
  • One or more number lists or bullet lists (this list is an example)
  • MS Word or Mac Pages file format
  • Submitted via Schoology assignment link by 8:00pm (3 hours before 11:00pm deadline)

In: Computer Science

Write a function that takes a string as an argument checks whether it is a palindrome....

Write a function that takes a string as an argument checks whether it is a palindrome. A palindrome is a word that is the same spelt forwards or backwards. Use similar naming style e.g. name_pal. E.g. If we call the function as abc_pal(‘jason’) we should get FALSE and if we call it a abc_pal(‘pop’) we should get TRUE.

Hint: define your function as abc_pal(str). This indicates that string will be passed. Next create two empty lists L1=[] and L2=[] . Also create counter and set it to zero (e.g. i = 0). Now use a while loop e.g. while i < len(str) and use the append method to fill both empty lists i.e. List1.append(str[i]] and for list2 you need to reverse the order of filling i.e. L2 will be filled from the last letter to the first letter of the argument string. Lastly check if L1 is equal to L2 if the string is an anagram, simply use return L1==L2 this will return TRUE or FALSE as the case may be.

NB: Please use spider in anaconda(python) and include a picture of the code

In: Computer Science

1.Read the Lab6-Background.pdf first.2.Start the “Stack Queue” applet.3.The purpose of this exercise is to see how...

1.Read the Lab6-Background.pdf first.2.Start the “Stack Queue” applet.3.The purpose of this exercise is to see how you could reverse a list of names. Push the three names “Alice,” “Bob,” and “Charles” onto the stack. When you pop the stack 3 times, what do you see in the text field next to “Pop”?4.Write an algorithm in pseudo-codethat would describe how to use a stack to reversea sequence (list)of letters and print them. For instance, if the original sequence is COMPUTERthe output will be RETUPMOC. Review pages 249-250 of the textbook(Chapter8)to see the related sample pseudo-codes.5.A palindrome word is one that has the same sequence of letters if you read it from right to left or left to right(e.g., radar or madam). Describe (in terms of a pseudo-code) how you could use a stack in conjunction with the original listto determine if a sequence is a palindrome.Hint:Given that the letters have been already assigned to both stackand the queueand these two data structures are ready to be processed (compared).

In: Computer Science

CASE STUDY Conference Marketing in a Competitive Marketplace One of the main differences between corporate events...

CASE STUDY Conference Marketing in a Competitive Marketplace

One of the main differences between corporate events and association events is the guaranteed attendee base. Typically, in corporate events, there is a set group of people who must attend (such as a sales meeting or corporate training). Association meetings are not required and, therefore, the organization advertises to the relevant professional com-munity at large to secure attendees. Therefore, marketing is extremely important for these types of events. The Engineering Association of America is a nonprofits association of members who are professional engineers. This association is the longest running association focused in engineering, but has recently faced sharp competition over the past decade from conferences focusing on specific segments of engineering (mechanical, electrical, etc.) and niche conferences (Women in Engineering, etc). Due to this competition, conference attendance has decreased by over

35 percent in the past five years. You have just been hired as the new Director of Marketing.

Questions:

1. What is the first thing you would do now that you are hired?

2. What new conference experiences could you integrate onsite to generate excitement and positive word of mouth?

Guideline of case study:

  1. Each answer should not be more than 400 words.
  2. Case study answer based on your thinking, logic, reason, practical experience as well as online research. You may include examples. Do not write anything vague, which is not relevant to your topic

    CASE STUDY Conference Marketing in a Competitive Marketplace

    One of the main differences between corporate events and association events is the guaranteed attendee base. Typically, in corporate events, there is a set group of people who must attend (such as a sales meeting or corporate training). Association meetings are not required and, therefore, the organization advertises to the relevant professional com-munity at large to secure attendees. Therefore, marketing is extremely important for these types of events. The Engineering Association of America is a nonprofits association of members who are professional engineers. This association is the longest running association focused in engineering, but has recently faced sharp competition over the past decade from conferences focusing on specific segments of engineering (mechanical, electrical, etc.) and niche conferences (Women in Engineering, etc). Due to this competition, conference attendance has decreased by over

    35 percent in the past five years. You have just been hired as the new Director of Marketing.

    Questions:

    1. What is the first thing you would do now that you are hired?

    2. What new conference experiences could you integrate onsite to generate excitement and positive word of mouth?

    Guideline of case study:

  3. Each answer should not be more than 400 words.
  4. Case study answer based on your thinking, logic, reason, practical experience as well as online research. You may include examples. Do not write anything vague, which is not relevant to your topic

    CASE STUDY Conference Marketing in a Competitive Marketplace

    One of the main differences between corporate events and association events is the guaranteed attendee base. Typically, in corporate events, there is a set group of people who must attend (such as a sales meeting or corporate training). Association meetings are not required and, therefore, the organization advertises to the relevant professional com-munity at large to secure attendees. Therefore, marketing is extremely important for these types of events. The Engineering Association of America is a nonprofits association of members who are professional engineers. This association is the longest running association focused in engineering, but has recently faced sharp competition over the past decade from conferences focusing on specific segments of engineering (mechanical, electrical, etc.) and niche conferences (Women in Engineering, etc). Due to this competition, conference attendance has decreased by over

    35 percent in the past five years. You have just been hired as the new Director of Marketing.

    Questions:

    1. What is the first thing you would do now that you are hired?

    2. What new conference experiences could you integrate onsite to generate excitement and positive word of mouth?

    Guideline of case study:

  5. Each answer should not be more than 400 words.
  6. Case study answer based on your thinking, logic, reason, practical experience as well as online research. You may include examples. Do not write anything vague, which is not relevant to your topic

    CASE STUDY Conference Marketing in a Competitive Marketplace

    One of the main differences between corporate events and association events is the guaranteed attendee base. Typically, in corporate events, there is a set group of people who must attend (such as a sales meeting or corporate training). Association meetings are not required and, therefore, the organization advertises to the relevant professional com-munity at large to secure attendees. Therefore, marketing is extremely important for these types of events. The Engineering Association of America is a nonprofits association of members who are professional engineers. This association is the longest running association focused in engineering, but has recently faced sharp competition over the past decade from conferences focusing on specific segments of engineering (mechanical, electrical, etc.) and niche conferences (Women in Engineering, etc). Due to this competition, conference attendance has decreased by over

    35 percent in the past five years. You have just been hired as the new Director of Marketing.

    Questions:

    1. What is the first thing you would do now that you are hired?

    2. What new conference experiences could you integrate onsite to generate excitement and positive word of mouth?

    Guideline of case study:

  7. Each answer should not be more than 400 words.
  8. Case study answer based on your thinking, logic, reason, practical experience as well as online research. You may include examples. Do not write anything vague, which is not relevant to your topic

    CASE STUDY Conference Marketing in a Competitive Marketplace

    One of the main differences between corporate events and association events is the guaranteed attendee base. Typically, in corporate events, there is a set group of people who must attend (such as a sales meeting or corporate training). Association meetings are not required and, therefore, the organization advertises to the relevant professional com-munity at large to secure attendees. Therefore, marketing is extremely important for these types of events. The Engineering Association of America is a nonprofits association of members who are professional engineers. This association is the longest running association focused in engineering, but has recently faced sharp competition over the past decade from conferences focusing on specific segments of engineering (mechanical, electrical, etc.) and niche conferences (Women in Engineering, etc). Due to this competition, conference attendance has decreased by over

    35 percent in the past five years. You have just been hired as the new Director of Marketing.

    Questions:

    1. What is the first thing you would do now that you are hired?

    2. What new conference experiences could you integrate onsite to generate excitement and positive word of mouth?

    Guideline of case study:

  9. Each answer should not be more than 400 words.
  10. Case study answer based on your thinking, logic, reason, practical experience as well as online research. You may include examples. Do not write anything vague, which is not relevant to your topic

    CASE STUDY Conference Marketing in a Competitive Marketplace

    One of the main differences between corporate events and association events is the guaranteed attendee base. Typically, in corporate events, there is a set group of people who must attend (such as a sales meeting or corporate training). Association meetings are not required and, therefore, the organization advertises to the relevant professional com-munity at large to secure attendees. Therefore, marketing is extremely important for these types of events. The Engineering Association of America is a nonprofits association of members who are professional engineers. This association is the longest running association focused in engineering, but has recently faced sharp competition over the past decade from conferences focusing on specific segments of engineering (mechanical, electrical, etc.) and niche conferences (Women in Engineering, etc). Due to this competition, conference attendance has decreased by over

    35 percent in the past five years. You have just been hired as the new Director of Marketing.

    Questions:

    1. What is the first thing you would do now that you are hired?

    2. What new conference experiences could you integrate onsite to generate excitement and positive word of mouth?

    Guideline of case study:

  11. Each answer should not be more than 400 words.
  12. Case study answer based on your thinking, logic, reason, practical experience as well as online research. You may include examples. Do not write anything vague, which is not relevant to your topic

    CASE STUDY Conference Marketing in a Competitive Marketplace

    One of the main differences between corporate events and association events is the guaranteed attendee base. Typically, in corporate events, there is a set group of people who must attend (such as a sales meeting or corporate training). Association meetings are not required and, therefore, the organization advertises to the relevant professional com-munity at large to secure attendees. Therefore, marketing is extremely important for these types of events. The Engineering Association of America is a nonprofits association of members who are professional engineers. This association is the longest running association focused in engineering, but has recently faced sharp competition over the past decade from conferences focusing on specific segments of engineering (mechanical, electrical, etc.) and niche conferences (Women in Engineering, etc). Due to this competition, conference attendance has decreased by over

    35 percent in the past five years. You have just been hired as the new Director of Marketing.

    Questions:

    1. What is the first thing you would do now that you are hired?

    2. What new conference experiences could you integrate onsite to generate excitement and positive word of mouth?

    Guideline of case study:

  13. Each answer should not be more than 400 words.
  14. Case study answer based on your thinking, logic, reason, practical experience as well as online research. You may include examples. Do not write anything vague, which is not relevant to your topic

In: Economics

Case study: Microsoft – increasing or diminishing returns? In some industries, securing the adoption of an...

Case study: Microsoft – increasing or diminishing returns?
In some industries, securing the adoption of an industry standard that is favourable to one’s own product is an enormous advantage. It can involve marketing efforts that grow more productive the larger the product’s market share. Microsoft’s Windows is an excellent example. The more customers adopt Windows, the more applications are introduced by independent software developers, and the more applications that are introduced the greater the chance for further adoptions. With other products the market can quickly exhibit diminishing returns to promotional expenditure, as it becomes saturated. However, with the adoption of new industry standards, or a new technology, increasing returns can persist. Microsoft is therefore willing to spend huge amounts on promotion and marketing to gain this advantage and dominate the industry. Many would claim that this is a restrictive practice, and that this has justified the recent anti-trust suit against the company.
Microsoft introduced Office 2000, a program that includes Word, Excel, PowerPoint and Access, to general retail customers in December 1999. It represented a considerable advance over the previous package, Office 97, by allowing much more interaction with the Internet. It also allows easier collaborative work for firms using an intranet. Thus many larger firms have been willing to buy upgrades and pay the price of around $230.
However, there is limited scope for users to take advantage of these improvements. Office 97 was already so full of features that most customers could not begin to exhaust its possibilities. It has been estimated that with Word 97 even adventurous users were unlikely to use more than a quarter of all its capabilities. In this respect Microsoft is a victim of the law of diminishing returns. Smaller businesses and home users may not be too impressed with the further capabilities of Office 2000. Given the enormous costs of developing upgrades to the package, the question is where does Microsoft go from here. It is speculated that the next version, Office 2003, may incorporate a speech-recognition program, making keyboard and mouse redundant. At the moment such programs require a considerable investment in time and effort from the user to train the computer to interpret their commands accurately, as well as the considerable investment by the software producer in developing the package.

Questions
a. Is it possible for a firm to experience both increasing and diminishing returns at the same time?
b. What other firms, in other industries, might be in similar situations to Microsoft, and in what respects?
c. What is the nature of the fixed factor that is causing the law of diminishing returns in Microsoft’s case?
d. Are there any ways in which Microsoft can reduce the undesirable effects of the law of diminishing returns?

In: Economics