What are the 4P's of creativity techniques?
Explain the origin of the 4P's. Give some examples how we can apply it into our work.
In: Operations Management
Create a program that will take the user through an attempted dungeon escape.
The user will represent a player and the player will have a variable to represent the HP (Hit Points) which will default to 50.
Menu
The program will start with the following menu:
Welcome to dungeon escape.
1) Play the game
2) Exit the game
If option 1 is chosen, the game is played, if not the program will end.
First Set of Doors
If option 1 is chosen, the following message will display
Welcome player. You wake up in a dark hallway, and three doors appear to be your way out
. Which door will you choose? 1, 2, or 3.
prompt> You will choose one door to be a trap door. Create a constant variable to hold the value of the door that will be the trap door.
Hint
const int TRAPDOOR = 3;
If the player chooses the trap door, you will display a game over message and exit the program
Example message:
You open the door and are instantly thrown into an abyss. Better luck next time. GAME OVER.
If the player chooses the other 2 doors, the player will have their HP increased by 50 and move on to the next set of doors are displaying the following message
You pass through the door and sense of strength come over you. Your new HP is [HP value]
Second Set of Doors
You will give the player the following prompt:
You see another set of three doors.
Which door will you choose? 1, 2, or 3.
Prompt>
This time two doors will be trap doors. Create two constants to hold the value of the doors that will be trap doors
. If the player chooses the either trap door constant you will display a distinct message for each trap door and decrease the HP by 50.
Example message for Trap 1:
You open the door and are attacked by an Ogre. You escape but your HP is now [HP value].
Example message for Trap 2:
You open the door and are attached by a banshee. Your escape but your HP is now [HP value]. If the player chooses the last door, display the following message: You open the door and…. nothing happens. Lucky you!
Boss Fight
If a player makes it this far, Display the message:
You see no obstacles and your HP is now [HP value]. Press any non-space key when ready
Hint: You can use cin to read a character here. When the user presses any key, you will have to compare the user’s HP. If the user’s HP is greater than 50 display the following message: You see a dragon appear before you. It breathes fire upon you but you managed to escape with small wounds. Congratulations, you’ve escaped the dungeon! If the user’s HP is equal or less than 50 display the following message: You see a dragon appear before you. It breathes fire upon you and your weak body is engulfed immediately. Game over!
In: Computer Science
A project will generate sales of $46,347 each. The variable costs are $19,519 and the fixed costs are $19,215. The project will use an equipment worth $119,505 that will be depreciated on a straight-line basis to a zero book value over a 11-year life of the project. If the tax rate is 13%, what is the operating cash flow
In: Finance
What is SCAMPER creativity technique?
How can we apply it to our work?
Give some origin and examples of SCAMPER
In: Operations Management
I need this in PSEUDO CODE:
This looks long, but only because I have to give you my answer to the first part.
First part of the questions (already answered)
GDOT has contacted you to help write code to control the cross walk signals in Georgia. You must create a Crosswalk Signal class with three hidden attributes (Walk, Hurry and Wait), two constructors (a default that sets all lights to on and an overloaded that sets Hurry to on for testing purposes) and a method that changes the active light to the next in the sequence (Walk, – Hurry – Wait).
CLASS NAME & VARIABLES
CLASS GDOT
// Instance Variable
Bool, Green, Yellow, Red
DEFAULT CONSTRUCTOR
GDOT()
GREEN = TRUE
YELLOW = TRUE
RED = TRUE
OVERLOADED CONSTRUCTOR
GDOT(BOOL G, BOOL Y, BOOL R)
GREEN =
G
YELLOW = Y
RED =
R
CLASS METHOD
VOID CHANGE_LIGHT()
IF GREEN
GREEN =
FALSE
YELLOW =
TRUE
ELSE IF YELLOW
YELLOW =
FALSE
RED = TRUE
ELSE IF RED
RED =
FALSE
GREEN =
TRUE
ELSE
GREEN = TRUE
Here is the part I need help with:
Now you must create two Crosswalk Signal objects (using pseudocode) from the class you just created to prove that your class works properly for GDOT, the first object should use the default constructor and the second object should use the overloaded constructor. Using the objects you just created, call the method to change the light to the next in the sequence
In: Computer Science
The cost of external equity capital raised by issuing new common stock (re) is defined as follows, in words: "The cost of external equity equals the cost of equity capital from retaining earnings (rs), divided by one minus the percentage flotation cost required to sell the new stock, (1 - F)."
Group of answer choices
True
False
In: Finance
You should consider(NIKE) whether there are any global factors related to the marketing environment in which you operate, your targeting and segmentation strategy, and any aspect of the marketing mix: product, price, place (distribution), promotion.
In: Operations Management
10. What is the relationship betwee BYOD (bring your own device) and shadow IT.
11. What is cyberloafing?
In: Computer Science
Suppose the company president asks you to determine the target capital structure for the firm and tells you that your compensation for next year will be related to the performance of the stock price over the next six months. Discuss what methods you will use to determine the target debt-equity ratio.
In: Finance
Add a sphere into Unity. write ONE C# script in Unity that does the following:
Set the sphere to a color of your choice.
Start with growing the sphere’s scale at 0.0005/frame until its scale reaches 3, then shrink
the sphere’s scale at the same rate until it reaches 1. Repeat.
Sphere rotate around the origin in XY plane at radius of 5.
position = transform.localPosition;
position.x = radius * Mathf.Sin(Time.fixedTime);
position.y = radius * Mathf.Cos(Time.fixedTime);
In: Computer Science
Cusic Music Company is considering the sale of a new sound board used in recording studios. The new board would sell for $23,700, and the company expects to sell 1,540 per year. The company currently sells 1,890 units of its existing model per year. If the new model is introduced, sales of the existing model will fall to 1,560 units per year. The old board retails for $22,100. Variable costs are 55 percent of sales, depreciation on the equipment to produce the new board will be $1,635,000 per year, and fixed costs are $3,000,000 per year. If the tax rate is 24 percent, what is the annual OCF for the project?
In: Finance
Mom’s Cookies, Inc., is considering the purchase of new cookie oven. The original cost of the old oven was $30,000; it is now five years old; and has a current market value of $5,000. The old oven is being depreciated over a 10 year life towards a zero estimated salvage value on a straight line basis, resulting in a current book value of $15,000 and an annual depreciation expense of $3,000. Management is contemplating the purchase of a new oven whose cost is $25,000 and whose estimated salvage value is zero. Expected before-tax cash saving from the new oven are $2,000 a year. Depreciation is computed using MACRS 5 year life, and cost of capital is 12 percent. Assume 40 percent tax rate. What is the net present value of the new oven?
In: Finance
Please consider FIRST 6 Character from your name and LAST 2 digits of your students ID. Calculate the checksum for the above text. The text needs to be divided into 2-byte (16-bit) words. Also check that the data is reached without any alteration using your checksum.
[ the text is MajedA08]
In: Electrical Engineering
(My Name is NN please I need new and unique answers, please. (Use your own words, don't copy and paste),Please Use your keyboard (Don't use handwriting)
((Thank you FOR YOUR HELP))
SUBJECT: System analysis and design IT243
Q1: What are the roles of a project sponsor and the approval committee during the different SDLC phases?
In: Computer Science
3. Summarize the nutrient needs during childhood. Explain how these nutrient needs and a child's appetite reflect their stage of growth. Why is iron deficiency and obesity often concerns during childhood?
4. Describe some of the challenges in meeting the nutrient needs of adolescents. What food choices and health habits create nutritional challenges for this group?
In: Nursing