Free Essay

Women Entrepreneurship

In:

Submitted By vandana123
Words 1887
Pages 8
Chapter 6: CPU Scheduling

• • •

Basic Concepts Scheduling Criteria Scheduling Algorithms

Operating System Concepts

6.1

Basic Concepts • Maximum CPU utilization obtained with multiprogramming.

• CPU–I/O Burst Cycle
– Process execution consists of a cycle of CPU execution and I/O wait. – Example: Alternating Sequence of CPU And I/O Bursts – In an I/O – bound program would have many very short CPU bursts. – In a CPU – bound program would have a few very long CPU bursts.
Operating System Concepts 6.2

1

CPU Scheduler • The CPU scheduler (short-term scheduler) selects from among the processes in memory that are ready to execute, and allocates the CPU to one of them.

• A ready queue may be implemented as a FIFO queue, priority queue, a tree, or an unordered linked list.

• CPU scheduling decisions may take place when a process:
1. Switches from running to waiting state (ex., I/O request). 2. Switches from running to ready state (ex., Interrupts occur). 3. Switches from waiting to ready state (ex., Completion of I/O). 4. Terminates.

• Scheduling under 1 and 4 is nonpreemptive; otherwise is called preemptive. • Under nonpreemptive scheduling, once the CPU has been allocated to a process, the process keeps the CPU until it releases the CPU either by terminating or by switching to the waiting state.
Operating System Concepts 6.3

Dispatcher

• Dispatcher module gives control of the CPU to the process selected by the short-term scheduler; this involves: – switching context – switching to user mode – jumping to the proper location in the user program to restart that program

• Dispatch latency – time it takes for the dispatcher to stop one process and start another running.

Operating System Concepts

6.4

2

Scheduling Criteria

• CPU utilization – keep the CPU as busy as possible. • Throughput – number of processes that complete their execution per time unit.

• Turnaround time – amount of time to execute a particular process; which is the interval from time of submission of a process to the time of completion (includes the sum of periods spent waiting to get into memory, waiting in ready queue, executing on the CPU, and doing I/O).

• Waiting time – sum of the periods spent waiting in the ready queue. • Response time – the time from the submission of a request until the first response is produced (i.e., the amount of time it takes to start responding, but not the time that it takes to output that response).
Operating System Concepts 6.5

Optimization Criteria

• Max CPU utilization • Max throughput • Min turnaround time • Min waiting time • Min response time

Operating System Concepts

6.6

3

Scheduling Algorithms

• CPU scheduling deals with the problem of choosing a process from the ready queue to be executed by the CPU.

• The following CPU scheduling algorithms will be described: – First-Come, First-Served (FCFS). – Shortest-Job-First (SJF). – Priority. – Round-Robin (RR). – Multilevel Queue. – Multilevel Feedback Queue.
Operating System Concepts 6.7

First-Come, First-Served (FCFS) Scheduling

• It is the simplest CPU scheduling algorithm. • The process that requests the CPU first is allocated the CPU first.

• The average waiting time under FCFS is long.
Completion 3 2 1 CPU

Ready Queue

Operating System Concepts

6.8

4

First-Come, First-Served (FCFS) Scheduling

• Example:

Process P1 P2 P3

Burst Time (milliseconds) 24 3 3

• Suppose that the processes arrive in the order: P1 , P2 , P3
The Gantt Chart for the schedule is:
P1 0 24 P2 27 P3 30

• Waiting time for P1 = 0; P2 = 24; P3 = 27 • Average waiting time: (0 + 24 + 27) / 3 = 17 (milliseconds)
Operating System Concepts 6.9

FCFS Scheduling (Cont.)
Suppose that the processes arrive in the order P2 , P3 , P1 .

• The Gantt chart for the schedule is:
P2 0 3 P3 6 P1 30

• Waiting time for P1 = 6; P2 = 0; P3 = 3 • Average waiting time: (6 + 0 + 3) / 3 = 3 (milliseconds) • Much better than previous case. • The order of processes in FCFS queue is important.
Operating System Concepts 6.10

5

FCFS Scheduling (Cont.)

• Another example, assume you have one CPU-bound process and many I/O-bound processes. – CPU executes the CPU-bound process and I/Obound processes in ready queue after they used I/O devices (waiting). – So, I/O devices are idle. – All I/O-bound processes have very short CPU bursts.

• The FCFS algorithm is nonpreemptive (i.e., the CPU keeps the process until either terminating or requesting I/O).

Operating System Concepts

6.11

Shortest-Job-First (SJF) Scheduling

• Associate with each process the length of its next CPU burst.
Use these lengths to schedule the process with the shortest time.

• Two schemes:
– Nonpreemptive – once CPU given to the process it cannot be preempted until completes its CPU burst. – Preemptive – if a new process arrives with CPU burst length less than remaining time of current executing process, preempt. This scheme is known as the Shortest-Remaining-Time-First (SRTF).

• If two processes have the same length next CPU burst, FCFS scheduling is used.

• SJF is optimal – gives minimum average waiting time for a given set of processes.
Operating System Concepts 6.12

6

Example of Non-Preemptive SJF

• Example: Process
P1 P2 P3 P4

Arrival Time 0.0 2.0 4.0 5.0

Burst Time 7 4 1 4

• SJF (non-preemptive)
P1 0 3 7 P3 8 P2 12 P4 16

• Average waiting time = (0 + 6 + 3 + 7) / 4 = 4
Operating System Concepts 6.13

Example of Non-Preemptive SJF (Cont.)

• If we used FCFS, then the average waiting time would be: (0 + 5 + 7 + 7) / 4 = 4.75

• The SJF gives less average waiting time than FCFS. • The SJF is a nonpreemptive in which the waiting process with the smallest estimated run-time-tocompletion is run next. Therefore, SJF is not useful in timesharing environments.

• Both FCFS and SJF are not useful for timesharing environments, because they are nonpreemptive.

Operating System Concepts

6.14

7

Example of Preemptive SJF

• Example:

Process P1 P2 P3 P4

Arrival Time 0.0 2.0 4.0 5.0

Burst Time 7 4 1 4

• SJF (preemptive) [Shortest-Remaining-Time-First (SRTF)]
P1 0 2 P2 4 P3 5 P2 7 P4 11 P1 16

• Average waiting time = (9 + 1 + 0 +2) / 4 = 3
Operating System Concepts 6.15

Priority Scheduling

• A priority number (integer) is associated with each process. • The CPU is allocated to the process with the highest priority
(smallest integer ≡ highest priority).

• Equal priority processes are scheduled in FCFS. • SJF is a special case of general priority scheduling, where priority is the predicted next CPU burst time.

• Priorities can be defined either internally or externally. • Internally use of some measurable quantity or quantities to compute the priority of a process. For example, memory requirements, number of open files, ratio of average I/O burst to average CPU burst have been used in computing priorities.

• Externally priority is set by criteria that is external to the O.S.; such as importance of the process.

Operating System Concepts

6.16

8

Priority Scheduling (Cont.)

• Priority can be either preemptive or nonpreemptive. • A preemptive priority will preempt the CPU if the newly arrived process is higher than the priority of the currently running process.

• A nonpreemptive priority will simply put the new highest priority process at the head of the ready queue.

• Problem ≡ Starvation – low priority processes may never execute. • Solution ≡ Aging – as time progresses increase the priority of the process, so eventually the process will become the highest priority and will gain the CPU (i.e., the more time is spending a process in ready queue waiting, its priority becomes higher and higher).
Operating System Concepts 6.17

Example of Nonpreemptive Priority
Process P1 P2 P3 P4 P5 Burst Time 10 1 2 1 5 Priority 3 1 3 4 2

• Gantt Chart:
P2 0 1 P5 6 P1 16 P3 18 P4 19

• Average waiting time = (0 + 1 + 6 + 16 + 18) / 5 = 8.2
Operating System Concepts 6.18

9

Round Robin (RR) • The Round Robin is designed for time sharing systems. • The RR is similar to FCFS, but preemption is added to switch between processes.

• Each process gets a small unit of CPU time (time quantum or time slice ), usually 10-100 milliseconds. After this time has elapsed, the process is preempted and added to the end of the ready queue. That is, after the time slice is expired an interrupt will occur and a context switch.
Ready Queue Completion 3 2 1 CPU

Preemption

Time Slice

Operating System Concepts

6.19

Round Robin (Cont.)

• If there are n processes in the ready queue and the time quantum is q, then each process gets 1/n of the CPU time in chunks of at most q time units at once. No process waits more than (n-1)q time units.

• The performance of RR depends on the size of the time slice q : – If q very large (infinite) ⇒ FIFO – If q very small ⇒ RR is called processor sharing, and context switch increases. So, q must be large with respect to context switch, otherwise overhead is too high.

Operating System Concepts

6.20

10

Example: RR with Time Quantum = 20
Process P1 P2 P3 P4 Burst Time 53 17 68 24 Waiting Time of each Process 0+(77-20)+(121-97)=81 20 37+(97-57)+(134-117)=94 57+(117-77)=97

• The Gantt chart is:
P1 0 20 P2 37 P3 57 P4 77 P1 P3 97 117 P4 P1 P3 P3

121 134 154 162

• Average Waiting Time = (81+20+94+97) / 4 = 73
Operating System Concepts 6.21

How a Smaller Time Quantum Increases Context Switches

Operating System Concepts

6.22

11

Multilevel Queue

• Ready queue is partitioned into separate queues:
– foreground (interactive) – background (batch)

• Each queue has its own scheduling algorithm:
– foreground – RR – background – FCFS

• Scheduling must be done between the queues.
– Fixed priority scheduling; i.e., serve all from foreground then from background. Possibility of starvation. – Time slice – each queue gets a certain amount of CPU time which it can schedule amongst its processes; 80% to foreground in RR 20% to background in FCFS
Operating System Concepts 6.23

Multilevel Queue Scheduling

Operating System Concepts

6.24

12

Multilevel Feedback Queue

• A process can move between various queues; aging can be implemented this way.

• If a process waits too long in a lower-priority queue may be moved to a higher-priority queue (this form of aging to prevent starvation).

• If a process uses too much CPU time, it will be moved to lower-priority queues. This leaves I/O bound and interactive processes in the higher-priority queues.

• In general, the multilevel feedback queue scheduling algorithm is the most complex.

Operating System Concepts

6.25

Multilevel Feedback Queues

Operating System Concepts

6.26

13

Example of Multilevel Feedback Queue

• Three queues:
– Q0 – time quantum 8 milliseconds – Q1 – time quantum 16 milliseconds – Q2 – FCFS

• Scheduling:
– A new job enters queue Q0 which is served FCFS. When it gains CPU, job receives 8 milliseconds. If it does not finish in 8 milliseconds, job is moved to queue Q1. – At Q1 job is again served FCFS and receives 16 additional milliseconds. If it still does not complete, it is preempted and moved to queue Q2.

• The Multilevel Feedback Queue Scheduling is preemptive.
Operating System Concepts 6.27

14

Similar Documents

Premium Essay

Women Entrepreneurship

...WOMEN ENTREPRENEURSHIP OF INDIA. A report prepared on the topic with the help of the below mentioned studies: * Empowering Women through Entrepreneurship: A study in Tamil Nadu, India -Geetha Sulur Nachimuthu and Barani Gunatharan. * Entrepreneurship Challenges and Opportunities in India - Dr.N. Santhi and S. Rajesh Kumar. * Some Critical Issues of Women Entrepreneurship in Rural India -VIJAY KUMBHAR (Department of Business Economics Dhananjayrao Gadgil, College of Commerce, India). * Women Entrepreneurship in India: Opportunities and Challenges- Gurendra Nath Bhardwaj, Swati Parashar, Dr. Babita Pandey. * Women Empowerment through Entrepreneurship: A Case Study of Guwahati Municipal Corporation- Marami Das, Faculty Member, Swadeshi Academy Jr. College Research Scholar, CMJ University, Shillong . INTRODUCTION: Women, the female member of the family is the backbone of emotional support who holds the family together. Social and economic development of women is necessary for the welfare of the society and also the Nation in turn. India being a well male dominated country, women are always considered backward and are not allowed to have various privileges. Many religions, even today, do not allow the women of the family to communicate with the rest of the world. Development of women would prove to be very positive in development of the Nation. The term “entrepreneurship” comes from the French verb “entreprendre” and the German word “unternehmen”...

Words: 3437 - Pages: 14

Premium Essay

Women Entrepreneurship in India

...Women are generally perceived as home makers with little to do with economy or commerce. But this picture is changing. In Modern India, more and more women are taking up entrepreneurial activity especially in medium and small scale enterprises. Even as women are receiving education, they face the prospect of unemployment. In this background, self employment is regarded as a cure to generate income .The Planning commission as well as the Indian government recognizes the need for women to be part of the mainstream of economic development. Women entrepreneurship is seen as an effective strategy to solve the problems of rural and urban poverty. Traditionally, women in India have been generally found in low productive sectors such as agriculture and household activities. Human Development Report 2004 ranks India 103 in Gender related Development Index (GDI). As per 2001 census; women constitute nearly half of India’s population. Out of this total, 72% were engaged in agriculture, 21.7% in other non agricultural pursuits with only 6.3% in household industries. Women entrepreneurs in India are handicapped in the matter of organizing and running businesses on account of their generally low levels of skills and for want of support system. The transition from homemaker to sophisticated business woman is not that easy. But the trend is changing. Women across India are showing an interest to be economically independent. Women are coming forth to the business arena with ideas to...

Words: 701 - Pages: 3

Premium Essay

Women Entrepreneurship

...Q. What is Entrepreneurship? Answer: Entrepreneurship is the act of being an entrepreneur or "one who undertakes innovations, finance and business acumen in an effort to transform innovations into economic goods". This may result in new organizations or may be part of revitalizing mature organizations in response to a perceived opportunity. Entrepreneurship involves bringing about change to achieve some benefit. This benefit may be financial but it also involves the satisfaction of knowing you have changed something for the better. It is essentially the act of creation requiring the ability to recognize an opportunity, shape a goal, and take advantage of a situation. Entrepreneurs plan, persuade, raise resources, and give birth to new ventures. The most obvious form of entrepreneurship is that of starting new business (referred as Startup Company); however, in recent years, the term has been extended to include social and political forms of entrepreneurial activity. When entrepreneurship is describing activities within a firm or large organization it is referred to as intra-preneurship and may include corporate venturing, when large entities spin-off organizations. Entrepreneurship involves being resourceful and finding ways to obtain the resources required to achieve the set objectives. Capital is one such resource. Entrepreneurship is often associated with uncertainty, particularly when it involves creating something new for which there is no existing market...

Words: 389 - Pages: 2

Premium Essay

Women Entrepreneurship as a Barrier to Success in Bangladesh

...activities (UNDP, 2004). Women in Asian countries like India, Myanmar and Bangladesh have played and also are playing a good role in politics. So, Bangladeshi women are enjoying freedom to join politics as well as business. But compared with the Unites States and the European countries, the number is still poor. In fact, women entrepreneurship development is a challenging phenomenon in Bangladesh as women are lagged behind (economically and socially) compared to men. Generally, women are more victimized as because of their illiteracy, unawareness, unorganized, powerless or less political representation, deprivation, rigid social customs, religious constrains and injustice by their counter partners particularly in rural area. Women constitute about a half of the total population in Bangladesh. So for proper representation of women in the arena of entrepreneurship development, "women should constitute 50 per cent of the country's total entrepreneurs." But the ground reality is totally different. "The ratio is not even 10 per cent. The actual ratio is much lower than that. We do not know the exact number of women entrepreneurs in the country,” There is no real information on how many women entrepreneurs exist in the country. 1     Background In Bangladesh women entrepreneurs are coming up. If the last 10 years are taken into account, it will be clear that the number of women entrepreneurs has increased significantly. But the ratio of women entrepreneurs to their male...

Words: 5312 - Pages: 22

Premium Essay

Women Entrepreneurship

...Sample Survey on Status of Women Entrepreneurs In Bangladesh 1. Background of the Survey 1.1 Women in Bangladesh Bangladesh is a resource-limited and overpopulated country where society is highly stratified, services and opportunities are determined by gender, class and location. However, women make nearly half of the population (Table -1), which means huge potential to be utilised for socio -economic development of the country. Table -1 Population Status of Bangladesh Census From 1998 Total Male Female 1262000 64819000 61381000 00 Share at Total Population Share at Total (%) Population (%) 51.48% 49.52% 51.36% 48.64% Source: Statistical Pocketbook, Bangladesh ’99, Bangladesh Bureau of Statistics, Government of the People’s Republic of Bangladesh, Dhaka 1999, Page 85. Total 10631500 0 Sex and Age-based Structure of the Population (Table-2) shows that like the male population of the country, the women represent a vast resource for the country. They must be provided equal opportunity in education, employment and economic activities, only then this resource could be utilised properly. Table -2 Sex and Age-based Structure of the Population 1996 Age-base Group Total Population (%) Male Population (%) Female Population (%) 10-14 Years 12.6 12.52 11.58 15-19 Years 8.52 8.41 8.65 20-24 Years 8.40 7.60 9.25 25-29 Years 6.10 7.92 9.11 30-34 Years 4.25 6.10 6.10 35-39 Years 3.25 5.87 5.14 40-44 Years 2.89 4.40 4.09 Source: Statistical Pocketbook, Bangla desh ’99, Bangladesh Bureau of Statistics...

Words: 21270 - Pages: 86

Free Essay

Malaysian Economy

...Google commits $1mn to bring more women into technology sector PTI Mar 7, 2014, 02.01PM IST * (According to the National…) NEW DELHI: Search engine giant Google has committed $1 million (over Rs 6 crore) to 40 startup-focused organisations, including Nasscom 10,000 Startups and Jagriti Yatra from India, to promote participation of women in the technology space. The efforts, a part of '#40 Forward' programme under Google for Entrepreneurs', are aimed at finding new ways to advance female entrepreneurs, the Internet giant said ahead of International Women's Day. Google is committing $1 million in aggregate to 40 startup-focused organisations, challenging them to increase the representation of women in their respective tech communities, it added. "From simply changing the times of events to accommodate busy moms to teaching young girls to see themselves as entrepreneurs, 40 of our partner communities will soon launch new programmes and outreach initiatives to encourage women founders," it said. Some of the selected organisations include 1871, American Underground and Galvanise (US), Campus for Moms (Israel), Club Kidrepreneur (Australia), Cc Hub (Nigeria), Jagriti Yatra and Nasscom 10,000 Startups (India) and Outbox (Uganda), among others. "Along with our 40 partners, we hope to create more inclusive networks and to move the needle for entrepreneurs like my mom and young women like me who aspire to be like her," Google Global Entrepreneurship Manager Bridgette Sexton Beam...

Words: 310 - Pages: 2

Premium Essay

Woman Entreprenuere

...menv i n n o va i n f o r m at i o n vi 2008:23 research on women´s entrepreneurshp A presentation of the ten projects funded by the programme Title: Research on Women´s Entrepreneurship - A presentation of the ten projects funded by the programme Series: VINNOVA Information VI 2008:23 ISSN: 1650-3120 Published: December 2008 Publisher: VINNOVA – Verket för Innovationssystem / Swedish Governmental Agency for Innovation System VINNOVA Case No: 2007-02271 About VINNOVA VINNOVA, Swedish Governmental Agency for Innovation Systems. VINNOVA´s mission is to promote sustainable growth by funding needs-driven research and developing effective innovation systems. Through its activities in this field, VINNOVA aims to make a significant contribution to Sweden´s development into a leading centre of economic growth. The VINNOVA Information series includes general publications that describe VINNOVA’s activities as well as specific programme descriptions, project catalogues, annual reports, etc. Research and Innovation for Sustainable Growth. VINNOVA´s publications are published at www.VINNOVA.se I VINNOVAs publikationsserier redovisar bland andra forskare, utredare och analytiker sina projekt. Publiceringen innebär inte att VINNOVA tar ställning till framförda åsikter, slutsatser och resultat. Undantag är publikationsserien VINNOVA Policy som återger VINNOVAs synpunkter och ställningstaganden. VINNOVAs publikationer finns att beställa, läsa och ladda ner via www.VINNOVA.se. Tryckta...

Words: 7329 - Pages: 30

Premium Essay

Economy

...0 Abstract Knowing the importance of the developing women entrepreneurs in creating a energetic and faster economy growth for the nation, the Malaysian Government has been dynamically promoting women entrepreneurship towards realizing Malaysia’s Vision 2020. However, notwithstanding the importance of this area, our group has been choose to do research in this area, to prove how much is important woman entrepreneurship in social life of Malaysia. Further, it was reported by the Ministry of Women and Family Development (2003) that Malaysian women entrepreneurs are under-represented in the business world with evidence that some undesirable development where micro-enterprises which were scaled up to bigger enterprises were subsequently managed and taken over by the husbands or other family members (Jariah & Laily, 1997). Besides that, the number of Malaysian women who make it to the international market is still small (Rafidah, 2005). They are urged to charge their mindset in line with the changing of times in the business world and are advised to start producing quality products which are capable of penetrating the global market (Azlan, 2005). 2.0 Introduction The present report is an overview on the results of our survey that was carried out in the frame of the title “INVOLVEMENT OF WOMEN IN SOCIAL ENTREPRENEURSHIP”. The main aim of the survey was to find out what problems have women to start their entrepreneurship in social life, or what influence them to start their...

Words: 2630 - Pages: 11

Premium Essay

Women Entrepreneur

...LETTRR OF TRANSMITTAL 17TH DECEMBER, 2012. TO Dr.A.K.M.Helal ul zaman Director of MBA program Faculty of Business ASA University Bangladesh. Subject: Women Entrepreneurship A study on some selected Boutique Business in Chittagong. Dear Sir, This is a great honor for us to hand you the report about Women Entrepreneurship: A study of some selected Boutique business in Chittagong, completed on different boutique house belongs to women’s. However, we have tried to attain practical knowledge of entrepreneurship. We have learned the practical experience of entrepreneurs and achieved some theoretical knowledge about it. We also find out the present situation of the women entrepreneurs and recommend the future steps that must be taken by Govt. for the improvement of women entrepreneurs. We appreciate having worked under you and to complete the report under your course teacher. Sincerely Yours, Name | Signature | Masudur Rahman | | Raihanul Islam | | Md.Hediatul Islam | | Md.Habibuzzaman | | Md.Tanvir Reza | Bachelor of Business Administration (B.B.A) Batch: 10th (A) ACKNOWLEDGEMENT Preparing a report requires a number of people’s contribution. The group members of “Proactive” do their part efficiently. We would like to recognize just a few people who contributed to this report. We would like to express our gratitude to all those who gave us the possibility to complete the report. We are highly obliged...

Words: 7802 - Pages: 32

Premium Essay

Entrpreneurship

...acknowledging the importance of entrepreneurship in economic growth. Entrepreneurship in any society is influenced by various environments. Whilst entrepreneurship supports economic growth by turning knowledge into new products, new jobs and new firms, the entrepreneurial process is not full of roses; it comes with its own challenges. The writer will discuss about entrepreneurship, define concepts and sum up the discussion through a conclusion. Definition of key terms Entrepreneurship Timmons (2000), believes entrepreneurship is the process of creating or seizing an opportunity and pursuing it, regardless of the resources currently controlled. Wennekers and Thurik (2001) argued that entrepreneurship is the ability and willingness of individuals, on their own, in teams within and outside existing organizations, to perceive and create new economic opportunities (new products, new production methods, new organizational schemes and new product-market combinations) and to introduce their ideas in the market, in the face of uncertainty and other obstacles, by making decisions on location, form and the use of resources and institutions. Unlike Timmons (ibid), Wennekers and Thurik believe that entrepreneurship is not limited to creating or seizing a business opportunity, there has to be willingness and ability to perceive new economic opportunities(new products, new production methods, new organizational schemes and new product-market combinations). Entrepreneurship can thus be seen as...

Words: 2070 - Pages: 9

Premium Essay

Development, Problem, Prospects and Progress of Entrepreneurship Development in Narayanganj Sadar Upazilla: a Short Case Study

...Progress of Entrepreneurship development in Narayanganj Sadar Upazilla: A Short Case study Entrepreneurship - the process of starting a business; typically a startup company offering an innovative product, process or service is termed as entrepreneurship. The entrepreneur perceives an opportunity and often exhibits biases in taking the decision to exploit the opportunity. Entrepreneurship can be defined by describing what entrepreneurs do. For example: “Entrepreneurs use personal initiative, and engage in calculated risk-taking, to create new business ventures by raising resources to apply innovative new ideas solve problems, meet challenges, or satisfy the needs of a clearly defined market.” It refers to activities related to undertaking the efforts to set up an industry or business establishment. He who takes to establish business is the entrepreneur. Entrepreneurship is an entity of people with the ability to see an opportunity where necessary capital, labor & other inputs operating together & successfully along with know-how skill and have willingness to take the personal risk of success or failure. According to Jean Baptist Say, ‘Entrepreneur is an economic agent to unite all the means of production.’ An entrepreneur is an individual who takes moderate risks and brings innovation. Entrepreneurs are often contrasted with managers and administrators who are said to be more methodical and less prone to risk-taking. According to S.S. Khanka-”Entrepreneurship is a process...

Words: 4916 - Pages: 20

Premium Essay

Picasso

...what failing. As men the power we should be aware of is feminine power over us. Any man who loves a woman is under her power; in most cases he is not aware of it. In this art work which was done by Picasso, I see the power of women over men. As men we think we stronger than women. We can do lot things that women cannot do. In fact, they have the power to make us do what they want us to do. Demoiselle is oil on canvas painting done by Picasso. In this art work, I see Picasso painting five ladies. The painting is for young ladies. Picasso painted the ladies in cubic form which was the modern way to pain at that time. By looking at the painting, you see that all the figures inside have almost the same face but different size of the body. In my opinion, the women body is what put pressure on the man. Most of strippers in clubs have a nice, beautiful body; men are attracted to the body more that the soul. If the woman has a nice body, she more likely to have the man does what she wants in order for him to have a piece of the cake. In the painting, Picasso had drawn the women body parts in different ways. This indicates the different parts of the body that man likes in general. Some man likes the legs, others like the boobs. At the end, the women body is what allowing her to control man. One element that attracted me the most is why Picasso painted all the figures with eyes looking straight at the person who’s looking at the painting. These shows how confident the woman...

Words: 472 - Pages: 2

Premium Essay

Woman Worth

...Women will always find themselves chasing an elusive identity and dream unless they embrace who God made them to be according to the Bible.                Women must come to accept their femininity. God has made them different purposefully. Physically, they are different, being generally weaker and crafted to bear and nurse children, and they have different emotional needs as well. Peter exhorts husbands to treat their wives in an understanding way because they are different, being women, and men need to understand this (1 Peter 3:7).              Women must come to define womanhood based not on the culture or even what well-meaning Christians might assert but on the Word of God. The Bible says that a woman does well if she bears children (Psalm 128), and it doesn’t condemn a woman as inferior if she remains unmarried, does not have children, or cannot have children (Matthew 19:12). The Bible says that women should be workers at home (Titus 2:5), but it also allows for them to do profitable business ventures (Proverbs 31:16). The Biblical ideal is for men to provide for their families and for women to stay at home to raise the children. Unfortunately, this will not always work out perfectly, and both men and women need to be willing to adapt and be flexible and understanding. If it is possible for a mother to be with her children and raise them, then there is no Biblical reason to excuse her from not doing so. Though a stay at home mother might feel at times like she is...

Words: 1082 - Pages: 5

Premium Essay

Lca of Beeswax

...example, women of the 19th century were primarily expected to marry and serve their husbands’ wishes, not receive an education, go out with friends, or find new forms of amusement. Instead, women were required to be at home and loyally obey their husbands. But how long can one go without exploring the inner intricacies of oneself? In her critical essay “Laugh of the Medusa”, Hélène Cixous looks upon the woman who “allows herself to be threatened by the big dick” (347) with contempt and scorn. Still, this intimidation that men have instilled in women is not easily overcome. Colette (1873-1954) and Jean Stubbs (1926- ) expose the risks that come with the discovery of a woman’s true desires in their short stories, “The Secret Woman” and “Cousin Lewis”. When the false woman is revealed, she suffers and is tormented by ridicule or shame even more than when she was in hiding. Cixous wants women to stand out and be who they are by embracing their bodies and being proud of their femininity. Women need to stop being reduced to “the servant of the militant male, his shadow” (338). “Laugh of the Medusa”, is a proclamation to women writers to “write about women and bring women to writing” (334) and to stop hating themselves and hating other women for being women- celebrate each other’s femininity and set free the body! Cixous wants women to make the world fear them though their identity and femininity; not fear the world because they are insignificant servants of the male. Women should not...

Words: 1121 - Pages: 5

Free Essay

Profession for Women Full Text

...PROFESSIONS FOR WOMEN by Virginia Woolf “Professions for Women” is an abbreviated version of the speech Virginia Woolf delivered before a branch of the National Society for Women’s Service on January 21, 1931; it was published posthumously in The Death of the Moth and Other Essays. On the day before the speech, she wrote in her diary: “I have this moment, while having my bath, conceived an entire new book—a sequel to a Room of One’s Own—about the sexual life of women: to be called Professions for Women perhaps—Lord how exciting!” More than a year and a half later, on October 11, 1932, Virginia Woolf began to write her new book: “THE PARGITERS: An Essay based upon a paper read to the London/National Society for women’s service.” “The Pargiters” evolved into The Years and was published in 1937. The book that eventually did become the sequel to A Room of One’s Own was Three Guineas (1938), and its first working title was “Professions for Women.” The essay printed here concentrates on that Victorian phantom known as the Angel in the House (borrowed from Coventry Patmore’s poem celebrating domestic bliss)—that selfless, sacrificial woman in the nineteenth century whose sole purpose in life was to soothe, to flatter, and to comfort the male half of the world’s population. “Killing the Angel in the House,” wrote Virginia Woolf, “was part of the occupation of a woman writer.” That has proved to be a prophetic statement, for today, not only in the domain of letters, but in the entire...

Words: 2743 - Pages: 11