๐—ก๐—ฒ๐˜„ ๐—ฎ๐—ป๐—ฑ ๐—ฅ๐—ฒ๐—ฝ๐—ฒ๐—ฎ๐˜ ๐—–๐˜‚๐˜€๐˜๐—ผ๐—บ๐—ฒ๐—ฟ๐˜€ ๐—น๐—ผ๐—ด๐—ถ๐—ฐ ๐—ถ๐—ป ๐—ฆ๐—ค๐—Ÿ

๐™’๐™๐™ฎ ๐™˜๐™–๐™ก๐™˜๐™ช๐™ก๐™–๐™ฉ๐™š ๐™ง๐™š๐™ฅ๐™š๐™–๐™ฉ ๐™˜๐™ช๐™จ๐™ฉ๐™ค๐™ข๐™š๐™ง๐™จ?1. Repeat Customers spend more on each purchase2. Repeat Customers are more likely to shop with you again and again3. Repeat Customers are our business promoters4. Businesses spend more on your key times like festive rush ๐™’๐™๐™ฎ ๐™ฃ๐™š๐™ฌ ๐™˜๐™ช๐™จ๐™ฉ๐™ค๐™ข๐™š๐™ง๐™จ ๐™–๐™ง๐™š ๐™ž๐™ข๐™ฅ๐™ค๐™ง๐™ฉ๐™–๐™ฃ๐™ฉ?1. Customer Acquisition Cost (CAC) is an important metric. The lesser the […]

How to create a simple movie recommendation System

Introduction This part of the Content Editor Internship โ€ โ€œEvery time I go to a movie, it’s magical, no matter what the movie is about. – Steven Spielberg Everyone loves movies regardless of age, gender, race, color, or location. We are all in some way connected to each other in this amazing way. But most […]

Create an Alarm Clock in Python

Alarm Clock

There is no other way to learn something than to put it into practice. So here we are with another exciting project on python. This time, you will learn how to create a simple alarm clock with python and Tkinter. The python alarm clock is a gui program, which can be used on a computer […]

How to start programming? Step By Step Guide

Programming is the key to getting success in a tech carrier, when I talk about programming I mean efficient programming. It means the coding which is time and space-efficient. How can we make programs which is time and space-efficient by learning data structure and Algorithms? So thatโ€™s why data structure and algorithms are so much […]

Types of DTP in SAP BW

DTP determines the process of transferring data between two persistent / non-persistent objects within the BI. In this blog we’ll be discussing about the types of DTP in SA Starting with SAP NetWeaver 7.0, InfoPackage uploads data from Source System to PSA. DTP decides to upload more data thereafter. Use Uploading data from PSA to […]

SAP Business Warehousing/Business Intelligence (BW/BI) Introduction

SAP Business Intelligence (BI) SAP is full formed as Systems, Applications and Products in Data processing and SAP’s Business Intelligence (BI) or SAP Business Warehousing(BW) is basically a SAP’s module which is created in order to analyze and to create reports on the basis of data from different heterogeneous data sources. SAP Business Warehouse (BW) integrates data from different sources, transforms and […]

Scheduling an object with events in SAP BO

In this post we’ll be explaining about scheduling an object with events in SAP BO. When you schedule an object with events, the object runs only when the event occurs. You can schedule objects to wait for the following event types: File-based: Triggered by the existence of a specified file Custom: Manually triggered Schedule-based: Triggered […]

All Cheat Sheets related to Machine Learning

Here we’re going to provide Cheat sheets for machine learning are plentiful. Quality, concise technical cheat sheets, on the other hand… not so much. A good set of resources covering theoretical machine learning concepts would be invaluable. Shervine Amidi, graduate student at Stanford, and Afshine Amidi, of MIT and Uber, have created just such a set of […]

Search an element in a sorted and rotated array

An element in a sorted array can be found in O(log n) time viaย binary search. But suppose we rotate an ascending order sorted array at some pivot unknown to you beforehand. So for instance, 1 2 3 4 5 might become 3 4 5 1 2. Devise a way to find an element in the […]

Program to cyclically rotate an array by one

Cover Pic

Given an array, cyclically rotate the array clockwise by one.ย  Examples: Input: arr[] = {1, 2, 3, 4, 5} Output: arr[] = {5, 1, 2, 3, 4} Following are steps for Array Rotation.ย  Store last element in a variable say x.ย  Shift all elements one position ahead.ย  Replace first element of array with x. Output […]

%d bloggers like this: