1. Introduction to Salesforce Definition : Salesforce is the #1 Cloud-based CRM (Customer Relationship Management) platform that helps businesses manage relationships with customers, automate business processes, and analyze performance. Founded : 1999 by Marc Benioff. Type : SaaS (Software as a Service). Tagline : "No Software" – because everything runs on the cloud, without local installations. 2. Why Salesforce? Traditional CRMs were expensive and required servers, installations, and IT staff. Salesforce revolutionized CRM by moving everything to the cloud . Benefits: 🚀 Faster implementation ☁️ Cloud-based (accessible anywhere) 🔄 Customizable without coding (point-and-click tools) 🤝 Strong ecosystem & AppExchange (marketplace like Google Play for Salesforce apps) 🔐 Security & scalability 3. Salesforce Products & Cloud Offerings Salesforce is not just CRM; it has multiple clouds (modules) for different busine...
1) Create a Lift Operation-based program using Python? Q) You have one five-floor building and the lift will be shifted from 1 st floor to the fifth floor and the fifth floor to the first floor. 1) program solution using While Loop? import time i=1 while i<=10: if i<=5: print("lift is on > floor no is ",i) time.sleep(5) else: print("lift is on < foor no is ",11-i) time.sleep(5) i=i+1 2) Is this program explanation using for loop? import time i=1 for i in range(1,11): if i<=5: print("lift is on > floor no is ",i) time.sleep(5) else: print("lift is on < floor no is ",11-i) time.sleep(5) Lift Program import time import pyttsx3 ...