You're about to create your best presentation ever

High End Powerpoint Templates

Create your presentation by reusing a template from our community or transition your PowerPoint deck into a visually compelling Prezi presentation.

Front End Templates

Transcript: Front End Planning Merchandising is more than simply the arrangement of products on the shelf. It is an integral component of the business image. Your Front Ends are prime Real Estate. They should be taken seriously. They need to catch the customer's attention. Front End standards A minimum of two front ends must be dedicated to front page flyer product A minimum of one sheilding or companion sale item must be included on all front ends Corporate brands must be used for sheilding when possible to increase corporate brand penetration and blended margin Shielding at full retail must be used whenever possible Life brand or corporate brand is the perferred item for shielding No more than three product families must be merchandised on a front end. When creating your front ends you need to think what is going to attract the customer. New items are always attractive. Stick with a theme, don't just randomly choose any item. FILLING IN THE TEMPLATES Start with the blended margin calculation sheet, you'll need two of these minimum to start with. Enter the flyer start date Aisle # just use 1 or 2, it really doesn't matter. Theme whatever your theme is, example oral care, body care Select your front page item from the Flyer purchasing summary, I look for items that are new, or items that we don't lose too much money on, check the cost versus the sale price to see how much your losing. Next select your Companion add-on / impluse item, I usually select an item from the ad that's featured on the back page or one of the top seller pre-book items usually on the last page of the flyer purchasing summary. once again look at the cost versus the sale price Choosing the shielding item is the most imporant. This item will protect the margins lost from the Flyer and add on impulse item. Use the Inventory sales and margin Analysis report in MMS to determine the best selection for your shielding item. This report will identify your key private label item that sells and generates high margin dollars to offset the loss of the frontpage item you select. Two great examples that sell very well for us are the Life Brand Spa mesh sponges and Life Brand dental flossers Keep your shielding items full at all times next we enter the cost and retail for each item. add up the three cost totals and three retail totals Take the total retail and subtract the total cost this will give you the profit. Take the profit and divide it by the total retail then mutilply by 100 this will give you the total blended margin As you can see if you built these ends with only sale items the profit margin would be very low if any at all. We as Front store managers have an obligation to protect the margins for the company we work for. This applies to all ends not just the front ends. Have you ever noticed whenever we receive a floorstand with mutiple items on it, example a Pantene hair care floorstand, that the floorstand will have at least one of the items on at regular cost and the rest will be on sale? Also note the MFS back ends, will always have one or two shielding items at full retail protecting the margins. The next sheet we fill in is the front ends template. This is used by the merchandiser who creates a regular price sign for the end . I usually look up the upc# as I am pre-booking the Flyer. Just select G in item maintenance and you'll quickly find 1 flavour of whatever it is your looking for. This saves time so you don't need to go out onto the floor to find the upc # of a product. This page also helps you in deciding how much product to bring in for the sale. How many items are in each case and how many shelves your using. This helps plan how many cases to order in for each product. The last sheet to fill in is the Flyer Week-Front End Template This is used by the designated merchandiser who builds the end. They have all of the information available. Flyer Item, Shielding item and add on item Description of where to look for the product the upc to make the sale talker for the # of shelves/baskets used the depth of the product on the shelves I also attach the Flyer purchasing Summary and purchase orders to the templates and file it in the 52 week file for easy access when it comes time to change the front end up Summary Prime real estate shopper stopping, impulse buying, eye catching displays protective margins Most of all have fun with it, Shoppers Drug Mart allows us to decide what to put on the ends, so take advantage of it and plan accordingly, be innovative, creative and most of all protect those margins. happy selling as Judy would put it! You should also review the end - cap templates 2 weeks prior to ensure that should the shielding items listed require a top-up order it is done in advance of the flyer commencing. Shielding items are not typically ordered through the flyer events as they should not be part of the national flyer

PowerPoint Game Templates

Transcript: Example of a Jeopardy Template By: Laken Feeser and Rachel Chapman When creating without a template... http://www.edtechnetwork.com/powerpoint.html https://www.thebalance.com/free-family-feud-powerpoint-templates-1358184 Example of a Deal or No Deal Template PowerPoint Game Templates There are free templates for games such as jeopardy, wheel of fortune, and cash cab that can be downloaded online. However, some templates may cost more money depending on the complexity of the game. Classroom Games that Make Test Review and Memorization Fun! (n.d.). Retrieved February 17, 2017, from http://people.uncw.edu/ertzbergerj/msgames.htm Fisher, S. (n.d.). Customize a PowerPoint Game for Your Class with These Free Templates. Retrieved February 17, 2017, from https://www.thebalance.com/free-powerpoint-games-for-teachers-1358169 1. Users will begin with a lot of slides all with the same basic graphic design. 2. The, decide and create a series of questions that are to be asked during the game. 3. By hyper linking certain answers to different slides, the game jumps from slide to slide while playing the game. 4. This kind of setup is normally seen as a simple quiz show game. Example of a Wheel of Fortune Template https://www.teacherspayteachers.com/Product/Wheel-of-Riches-PowerPoint-Template-Plays-Just-Like-Wheel-of-Fortune-383606 Games can be made in order to make a fun and easy way to learn. Popular game templates include: Family Feud Millionaire Jeopardy and other quiz shows. http://www.free-power-point-templates.com/deal-powerpoint-template/ Quick video on template "Millionaire" PowerPoint Games Some games are easier to make compared to others If users are unsure whether or not downloading certain templates is safe, you can actually make your own game by just simply using PowerPoint. add logo here References Example of a Family Feud Template PowerPoint Games are a great way to introduce new concepts and ideas You can create a fun, competitive atmosphere with the use of different templates You can change and rearrange information to correlate with the topic or idea being discussed. Great with students, workers, family, etc. For example: With games like Jeopardy and Family Feud, players can pick practically any answers. The person who is running the game will have to have all of the answers in order to determine if players are correct or not. However, with a game like Who Wants to be a Millionaire, the players only have a choice between answers, A, B, C, or D. Therefore, when the player decides their answer, the person running the game clicks it, and the game will tell them whether they are right or wrong.

Templates

Transcript: Templates The key to generic programs a simple code! Output? Answer Namespaces Namespace is a feature added in C++ and not present in C. A namespace is a declarative region that provides a scope to the identifiers (names of the types, function, variables etc) inside it. Multiple namespace blocks with the same name are allowed. Templates Templates Templates are powerful features of C++ which allows you to write generic programs. In simple terms, you can create a single function or a class to work with different data types using templates. Advantages: Readability Flexibility Re-usability Function Template FUnction Templates A single function template can work with different data types at once but, a single normal function can only work with one set of data types. Normally, if you need to perform identical operations on two or more types of data, you use function overloading. However, a better approach would be to use function templates because you can perform the same task writing less and maintainable code. Example Sometimes, you need a class implementation that is same for all classes, only the data types used are different. Normally, you would need to create a different class for each data type OR create different member variables and functions within a single class. This will unnecessarily bloat your code base and will be hard to maintain, as a change is one class/function should be performed on all classes/functions. Class Template Class Templates Example virtual functions virtual functions Virtual functions ensure that the correct function is called for an object, regardless of the type of reference (or pointer) used for function call. They are mainly used to achieve Run-time polymorphism. The prototype of virtual functions should be same in base as well as derived class. They are always defined in base class and overridden in derived class. It is not mandatory for derived class to override Example Pass by reference Pass-by-reference means to pass the reference of an argument in the calling function to the corresponding formal parameter of the called function. The called function can modify the value of the argument by using its reference passed in. Does not copy the arguments. The formal parameter is an alias for the argument. References cannot be NULL.

Templates

Transcript: Social learning network for teachers & students Create assignments, files & notices Discussion forum for class groups Retrieve homework Penzu Furl Shanna Wood 10/5/12 Web 2.0 Tools Multiple technology tools increase ability to learn Providing students with technology that they would not normally have Positive effect of student learning Student engagement & hands on with technology Encourage creativity Audio broadcast converted to MP3 or other playback device Listener can choose what they listen to and download Can be used for class presentations, lecture & literacy Anyone, Anytime, Anywhere Web 2.0 is a term coined in 1999 to describe web sites that use technology beyond the static pages of earlier web sites Blogs Emerging Technologies Reflection Edmodo Ways that Penzu can be implemented into the classroom:Warm-Up Activities Daily journaling Writing Essay's Introduction Penzu is a simple service written on rails, that allows you to write and save private notes or posts with images, print the entry, or share it by email or submit as assignment Podcasts Enhance learning, creativity & collaboration Easier to share global wide Web 2.0 tools are today's tomorrow Possibilities & future are endless Social bookmarking site that enables students and teachers to share their favorite sites with each other. This can be helpful for research, projects or sharing tutorial sites, with peers. Teachers can also use this site to share ideas on lesson plans or fun ways to teach while keeping students engaged in learning. Daily post Personal reflections Only owner can make changes Class discussion forum

Now you can make any subject more engaging and memorable