Skip to main content

Entrepreneurship
Need and significances of entrepreneurship development
It is said that an economic is an effect for which entrepreneurship is the cause. Entrepreneurship has development has therefore become a matter of great concretion in all countries. We can see the development of graph to America is developed day by day and become a most powerful country in the world due to development of entrepreneurship. almost all related entrepreneurship exists in America in different sector like industry, web developments, scientific research and so on. In other countries entrepreneurship development is a serious problem. all countries want to developed there entrepreneurship but the real problem is how to developed entrepreneurship. We have to create a program regrading entrepreneurship program(edp) offer the solution of this problem.
Business main possess certain competitions which result in superior performances the question that arises is weather these characteristics are inborn in business man or weather they can be induced and developed. a well-known scientist David MCCLEL LANT OF Harvard university made an interesting investigation into why certain person displayed great created powers and particular periods of there history he found that they “need for achievement was the answer”. The need to achieve motivated to work hard and money banking was accidental. money was only major of achievement not its core motivation.
In order too answer the next question whether this need for achievement could be introduce. Conducted a five-year experimental story in one of the districts of Andhra Pradesh in India in the collaborations with the small industry and extension and training institute in Hyderabad. This experiment popularly known kaki nanda. Under this experiment young persons were selected and put through a three months training program and motivated and to see fresh goals.one of the significant collusion of the experiment was that the traditional     believes did not seen.
The objectives of edps are to develop and strength the entrepreneur ion quality to motived them for achievement and to enable participant to be independent. there are following development to entrepreneurship programs
1.    Introduction to entrepreneurship
2.    Motivation training
3.    Management skills
4.    Support system and procedure
5.    Fundaments of project feasibility study 
6.    Plant visits

Comments

Popular posts from this blog

Array in c

                                                              ARRAY An array is a fixed size scequence collection of element of the same data type.It is simply a grouping of like type data.In its simplest form,an array be used to represent a list of number or a list of names.An array is a collection of similar data type elements.some examples where the concept of an array can be used. List of temperatures records every hour in a day,or a month, or a year. List of employee in an organization. List of products and their post sold by a store. Test score of a class of student. List of consumers and their telephones number and etc. Since an array provide a convent structure for represent data, it is classified as one of the data structure in C.
Entrepreneurship opportunities: - There are many ways in which a person might exercise his or her entrepreneurial skills. The three main types of businessman opportunities include franchises, developing new operations within an existing organization, and forming a completely new one. Businessman opportunities can mean anything from working on small projects or the development of massive new enterprises. It is possible to find businessman opportunities within an already established organization. People who do so are sometimes called entrepreneurs, or inside businessmen. An entrepreneur takes initiative to identify and develop projects that help an organization meet its objectives or grow in new directions. Corporate social businessman opportunities relate specifically to leading projects that enhance a company's performance in terms of social development and responsibility. Many companies today encourage different kinds of entrepreneurship across all of their departm

Pointer in c language

                                                          Pointer A pointer is a drivided class.It is built from one of the fundamental data type available in c.Pointer contain memory addresses as their values.since these memory addresses are the locations in the computer memory where program instructions and data are stored.Pointer can be used to access and manuplates data store in the memory. Pointer decleartion :- A=[10] Where a is variable name. 10 is the value of variable. Adderss of variable(suppose) 65524. *p – pointer symbol Pointer program :- #include<stdio.h> #include<conio.h> Void main() { Int a ; Int *p ; Printf(“enter a no”); Scanf(“%d”,&a); P=&a; Printf(“\n value of variable %d=”,a); Printf(“\n value of variable %d=”,*p); Printf(“\n addres of variable %u=”,&a); Printf(“\n address of variable %u=”,p); Getch() ; }