Identify the 2-4 pieces of information you would most need to evaluate the advisability of pursuing the new product launch you suggest, and what action steps would you take to get that information?

Assignment Question

Use the white board notes as the framework showing the work to answer the questions below.

Class Preparation Questions: Does it make sense for Bugaboo to become a “mobility” company in the near or distant future? Suggest a possible new product for Bugaboo that fit its desired positioning. An effective way to start is with a one sentence positioning statement based on the information in the case. This should help guide your new product ideas. Identify the 2-4 pieces of information you would most need to evaluate the advisability of pursuing the new product launch you suggest, and what action steps would you take to get that information?

If you were building a community for executives leading the marketing function in Fortune 500 companies, who would be the first three executives you’d invite to join the group and why?

Assignment Question

Directions: Answer all of the questions in detail with correct grammar, punctuation, and spelling.

Here are the prompts

1.) If you were building a community for executives leading the marketing function in Fortune 500 companies, who would be the first three executives you’d invite to join the group and why?
2.) What do you think is currently on Ed Bastian’s mind? What is he worried about?
3.) If Ed Bastian were to lead a Harvard Business School lecture, what subject do you think he’d teach?
4.) Read this article by Adam Grant. Link to article: https://www.mckinsey.com/capabilities/people-and-organizational-performance/our-insights/givers-take-all-the-hidden-dimension-of-corporate-culture . What points do you think are especially relevant? How do you create balance between serving the customer and company and asking for help?
5.) Attached is a welcome card typical of one we’d give to our members on the first day of a Summit. (File is attached to this order called welcome card). Your job is to ensure all the information is accurate. Respond with any mistakes you find.

Do you know that most business owners are excellent visionaries but are overwhelmed and struggle to transform ideas into tangible results?

Assignment Question

For this week’s discussion:
1. Start with a brief overview of your business: company name and what you are selling (a maximum of 3 sentences).
2. A brief description of your business (company name, what you do, and what you sell). This description should not be longer than 3 sentences.
3. Written elevator pitch in quotation marks.
4. Attach a video recording of yourself saying the pitch. This video should not exceed 30 seconds. (I will do my own video, of what you complete on this assignment.
5. Enclose the script for your elevator speech within quotation marks. Important: Your pitch must include the 3 required components provided in the article posted in the discussion: Opening (do you know) , what you do (What we do.), and the benefits to the consumer (so that.. ). “Do you know (state something interesting, a problem, a statistic ) …What we do (state what you do and how you stand out)……so that, (state the benefits to the consumer when using the services or products you are selling)…” and do not exceed 3 sentences.

Examples of elevator pitches using this formula: Example from the article:

1. Business: Financial planner who works mostly with middle-aged women who are separated, divorced, or widowed, and possibly re-entering the workplace; Pitch: “Do you know how when women get divorced or re-enter the workforce after many years of depending on a spouse, they’re overwhelmed by all the financial decisions they have to make? What we do is help women gain control of their finances and achieve their personal financial and investment goals so that they can stay in the house they’ve lived in most of their lives, have enough income to enjoy a comfortable lifestyle, and be free of money worries.”

Other examples:

2. Business: Consulting for entrepreneurs Pitch: “Do you know that most business owners are excellent visionaries but are overwhelmed and struggle to transform ideas into tangible results? What we do at B. Clover Consulting Group is create actionable processes that provide guidance and customized support in implementing these ideas so that entrepreneurs can launch their project ventures for optimal results”. Check out this video explaining week 9 discussion- the Elevator PitchLinks to an external site.

Demonstrate industry standard best practices in all the code that you create to ensure clarity, consistency, and efficiency among all software developers working on the program.

Assignment Question

Overview Nearly every Java application involves multiple classes. As you have learned, designing a program around classes and objects is a key feature of object-oriented programming and provides many benefits, such as more readable and maintainable code. However, it is not enough to just have multiple classes. You also need to make sure that these classes can work together within a program. This involves making sure that any relationships, such as inheritance, are properly implemented in the code. It also involves having a main() method, usually located in a special class called the “Driver” class, that runs the program. In this assignment, you will gain experience putting together a multiple-class program by creating a class that inherits from another (existing) class, and modifying or implementing methods in the Driver class. This milestone will also give you the opportunity to begin coding a part of the solution for Project Two. This will allow you to get feedback on your work before you complete the full project in Module Seven. Prompt To gain a clear understanding of the client’s requirements, review the Grazioso Salvare Specification Document PDF. As you read, pay close attention to the attributes and methods that you will need to implement into the program. Open the Virtual Lab by clicking on the link in the Virtual Lab Access module. Then open the Eclipse IDE. Follow the Uploading Files to Eclipse Tutorial PDF to upload the Grazioso ZIP folder into Eclipse. The Grazioso.zip folder contains three starter code files: Driver.java, RescueAnimal.java, and Dog.java. Once you have uploaded the files, compile the code. Although the program is not complete, it should compile without error. Read through the code for each class that you have been given. This will help you understand what code has been created and what code must be modified or created to meet the requirements. You have been asked to demonstrate industry standard best practices in all the code that you create to ensure clarity, consistency, and efficiency among all software developers working on the program. In your code for each class, be sure to include the following: In-line comments that denote your changes and briefly describe the functionality of each method or element of the class Appropriate variable and method naming conventions In a new Java file, create the Monkey class, using the specification document as a guide. The Monkey class must do the following: Inherit from the RescueAnimal class. Implement all attributes to meet the specifications. Include a constructor. You may use a default constructor. To score “exemplary” on this criterion, you must include the more detailed constructor that takes all values for the attributes and sets them. Refer to the constructor in the Dog class for an example. Include accessors and mutators for all implemented attributes. In the Driver.java class, modify the main method. In main(), you must create a menu loop that does the following: Displays the menu by calling the displayMenu method. This method is in the Driver.java class. Prompts the user for input Takes the appropriate action based on the value that the user entered IMPORTANT: You do not need to complete all of the methods included in the menu for this milestone. Simple placeholder print statements for these methods have been included in the starter code so that you can test your menu functionality. Next, you will need to create a monkey ArrayList in the Driver.java class. Refer to the dog ArrayList, which is included right before main(), as an example. Creating this ArrayList is necessary for the intakeNewMonkey() method, which you will implement in the next step. Though it is not required, it may be helpful to pre-populate your ArrayList with a few test monkey objects in the initializeMonkeyList() method. Finally, you will implement the intakeNewMonkey() method in the Driver.java class. Your completed method should do the following: Prompt the user for input. Set data for all attributes based on user input. Add the newly instantiated monkey to an ArrayList. Tips: Remember to refer to the accessors and mutators in your Monkey and RescueAnimal classes as you create this method. Additionally, you should use the nextLine method of the scanner to receive the user’s input. Refer back to Section 1.15 in zyBooks for a refresher on how to use this method. What to Submit Use the Downloading Files from Eclipse Tutorial PDF to help you download your completed class files. Be sure to submit your milestone even if you were not able to complete every part, or if your program has compiling errors. Your submission for this milestone should be the Grazioso.zip folder containing all four of the following files: RescueAnimal.java Class File: You were not required to make changes to this file, but you must include it as part of your submission. Dog.java Class File: You were not required to make changes to this file, but you must include it as part of your submission. Monkey.java Class File. You created this class from scratch, implementing attributes, a constructor, accessors, and mutators. You should have included in-line comments and clear variable naming conventions. Driver.java Class File. You were given some starter code within this file, and were asked to modify or implement a menu loop and methods to intake dogs, intake monkeys, reserve animals, and print animals. You should have included in-line comments to describe your changes.

Smartphones are good for us. They make life easier.

Write two missions Mission 1 Write a paragraph of 180-200 words about this topic (Smartphones are good for us. They make life easier.)

1- Make sure to include a topic sentence

2- Make sure to include a concludisng sentence

3- Use one or two of the following phrases ( I think / I believe / in my opinion / I personally feel that / it seems to me that )

Mission 2 Write another paragraph of 180-200 words about this topic (Smartphones are good for us. They make life easier.)

1- Make sure to include a topic sentence

2- Make sure to include a concluding sentence

3- Use one or two of the following phrases ( I think / I believe / in my opinion / I personally feel that / it seems to me that ) You have to use at least 6 of the following keywords secret (adj) email address (n) advertisement (n) influence (v) free (adj) security (n) smartphone (n) imagination (n) software (n) improvement ( v) video game (n)creative (adj) interest (n) website (n) download (v) record (v) educational (adj)

IMPORTANT NOTES: Note: The text should look as if it is written by a very young school student NOT a professor, so please keep the language as simple as possible because the text is going to be used by young students. Of course, with taking care of grammar, spelling and punctuation.

Note: Use subject pronouns ( I / we / they )

Note: The sentences should to be direct, used simple tenses and avoid passive voice as possible

NOTE : The text has to be FREE from plagiarism.

Write a paper how Smartphones are good for us. They make life easier.

Write two missions Mission 1 Write a paragraph of 180-200 words about this topic (Smartphones are good for us. They make life easier.)

1- Make sure to include a topic sentence

2- Make sure to include a concludisng sentence

3- Use one or two of the following phrases ( I think / I believe / in my opinion / I personally feel that / it seems to me that )

Mission 2 Write another paragraph of 180-200 words about this topic (Smartphones are good for us. They make life easier.)

1- Make sure to include a topic sentence

2- Make sure to include a concluding sentence

3- Use one or two of the following phrases ( I think / I believe / in my opinion / I personally feel that / it seems to me that ) You have to use at least 6 of the following keywords secret (adj) email address (n) advertisement (n) influence (v) free (adj) security (n) smartphone (n) imagination (n) software (n) improvement ( v) video game (n)creative (adj) interest (n) website (n) download (v) record (v) educational (adj)

IMPORTANT NOTES: Note: The text should look as if it is written by a very young school student NOT a professor, so please keep the language as simple as possible because the text is going to be used by young students. Of course, with taking care of grammar, spelling and punctuation.

Note: Use subject pronouns ( I / we / they )

Note: The sentences should to be direct, used simple tenses and avoid passive voice as possible

NOTE : The text has to be FREE from plagiarism.

Write a paper organize and make sense of this idea that our preexisting definition of what’s beautiful will decide whether or not the unseen spectrum of colors are beautiful.

Assignment Question

Write a paper organize and make sense of this idea that our preexisting definition of what’s beautiful will decide whether or not the unseen spectrum of colors are beautiful.

This inquiry was inspired by the reading “The Teaching of All Ages” by Manly P hall. Quotes and paraphrasing are appreciated.

Write a complete paper using Thesis statement: housing as a college student jobs cant help w/ mortgage minimum wage should be raised pricing on houses.

Assignment Question

Write a complete paper using Thesis statement: housing as a college student jobs cant help w/ mortgage minimum wage should be raised pricing on houses.

Compose an argument (+/- 1000 words) that makes a CLAIM about your issue and uses effective reasoning and credible evidence to persuade us to think differently about the issue or take some sort of action to help resolve it.

Assignment Question

Your goal in this ARGUMENT assignment is to use and promote informed dialogue about the issue you’ve chosen to investigate.

Use your the rhetorical strategies of ETHOS, PATHOS, and LOGOS to compose an argument (+/- 1000 words) that makes a CLAIM about your issue and uses effective reasoning and credible evidence to persuade us to think differently about the issue or take some sort of action to help resolve it.

Part of your evidence must provide accurate and current facts or statistics or expert testimony from highly credible sources (scholarly articles and news articles from TAMUlibrary databases). Other evidence can include your personal experience, observations & analysis, others’ opinions or experiences from interviews, and your own logical reasoning. Your sources for Project 3 will be used in your argument. You’ll cite any sources using APA citation style for both in-text citations and full source citations in the References page.

Note: you must use simple english.

Write about Smartphones are good for us. They make life easier.

Write two missions Mission 1 Write a paragraph of 180-200 words about this topic (Smartphones are good for us. They make life easier.)

1- Make sure to include a topic sentence

2- Make sure to include a concludisng sentence

3- Use one or two of the following phrases ( I think / I believe / in my opinion / I personally feel that / it seems to me that )

Mission 2 Write another paragraph of 180-200 words about this topic (Smartphones are good for us. They make life easier.)

1- Make sure to include a topic sentence

2- Make sure to include a concluding sentence

3- Use one or two of the following phrases ( I think / I believe / in my opinion / I personally feel that / it seems to me that ) You have to use at least 6 of the following keywords secret (adj) email address (n) advertisement (n) influence (v) free (adj) security (n) smartphone (n) imagination (n) software (n) improvement ( v) video game (n)creative (adj) interest (n) website (n) download (v) record (v) educational (adj)

IMPORTANT NOTES: Note: The text should look as if it is written by a very young school student NOT a professor, so please keep the language as simple as possible because the text is going to be used by young students. Of course, with taking care of grammar, spelling and punctuation.

Note: Use subject pronouns ( I / we / they )

Note: The sentences should to be direct, used simple tenses and avoid passive voice as possible

NOTE : The text has to be FREE from plagiarism.