Notes: Introduction to Entrepreneurship (Class XI Employability Skills) LINK TO NCERT BOOK : CBSE Employability Skills XI PDF 1. Meaning of Entrepreneurship Entrepreneurship is the process of starting and running a business using new ideas , innovation , or different methods to satisfy customer needs and earn profit. An entrepreneur does not just run a business like others; they introduce something unique, such as: New products Better services New marketing strategies Cost-effective methods Innovative solutions to customer problems 2. Entrepreneur An entrepreneur is a person who identifies customer needs and creates a business using innovative ideas to meet those needs and make profit. Example: A vegetable seller who starts home delivery for customers is acting as an entrepreneur because he is using a new service idea. Values and Attitudes of a Successful Entrepreneur A successful entrepreneur usually has the following ...
CSV XII - BOARD PROJECT RESULT ANALYSIS PROJECT SAMPLE # -*- coding: utf-8 -*- """ Created on Sat Jun 19 16:59:58 2021 @author: Kirti Hora """ # CLASS XII RESULT ANALYSIS PROJECT SAMPLE #CSV DATA #File name: result.csv #File location: g:\ import pandas as pd import matplotlib.pyplot as plt # Main Menu while(True): print("Main Menu") print("1. Fetch data") print("2. Dataframe Statistics") print("3. Display Records") print("4. Working on Records") print("5. Working on Columns") print("6. Search specific row/column") print("7. Data Visualization") print("8. Data analystics") print("9. Exit") ch=int(input("Enter your choice")) if ch==1: result=pd.read_csv("D:\GRADE XII PYTHON/result.csv",index_col=0) elif ch==2: ...