Skip to main content

The Kakinada Experiment



 The Kakinada Experiment

1.Assuming need for achievement plays a vital role in promoting economic growth


2.Mcclelland has tried to induce achievement motivation in adult and provide them with an urge to improve their lot because unindicted achievement motivation results in long waiting before it bears fruit.

 3.Such an inducement may help break the barrier of“limited aspirations”. 

4.For this purpose, he conducted experiments with groups of businessmen in America, Mexico and Bombay. Later he carried out a full-fledged programme in the Kakinada city of Andhra Pradesh. Kakinada is a well-developed
distinct town of a population of around one lakh with high literacy and a modest
industrial structure.


Objective of the program:

1.to break the barrier of “limited aspirations” by inducing achievement motivation. 

2..The project which began in January 1964 consisted of recruiting batches of personnel drawn from business and industrial community of this town and putting them through orientation programme at the Small Industry
Extension Training (SIET) institute, Hyderabad.
3.  52 persons grouped into three batches participated” in the programme. The training was designed primarily to stimulate the imagination and encourage introspection into personal motivation and
community goals.

The impact of this training programme on the participants’ behaviour was observed after a period of two years. The observations were quite encouraging. It was found that those attended the programme performed better than those did not.

1.those participating in the programme displayed a more active business behaviour
(51 per cent as against 25 per cent in the control group) and worked longer hours.

2 Caste, traditional beliefs or western ways of life did not determine the mental
makeup of a participant.

3. the training as was given at Hyderabad is likely to improve those who have a great
yearning to do something and have the opportunity to do so in their business
framework. Applications of experiment: The Kakinada experiment is being utilised
in a number of experiment that have recently initiated technical personnel to set up
new enterprise of their own.

4. In Gujarat, various State agencies have combined to operate an Entrepreneurship
Development Programme to help young people acquire the motivation necessary to
become risk-takers. The Gujarat programme has been successful in persuading many
persons to set up new enterprises in the small scale sector.

 

5.In Andhra Pradesh, the Small Scale Industrial Development Corporation Ltd.
(APSSIDC) has been assisting technically qualified persons to become entrepreneurs
through orientation programmes of the SIET Institute. This is followed by specific
assistance of providing developed land specially earmarked for such persons at
nominal rates in the technocrats’ industrial estates.


6. The Ministry of Industrial Development has recently formulated schemes of
helping technical personnel to become entrepreneurs. This programme consists of

7.three months program at selected centres spread all over the country, followed by
financial assistance in terms of a subsidy on the interest on advances taken by the
entrepreneur from the commercial banks so that the net interest paid by the
entrepreneur himself does not exceed five per cent.

Comments

Popular posts from this blog

Create a socket for HTTP for web page upload and download

Create a socket for HTTP for web page upload and download. Aim: To write a java program for socket for HTTP for web page upload and download . Algorithm 1.Start the program. 2.Get the frame size from the user 3.To create the frame based on the user request. 4.To send frames to server from the client side. 5.If your frames reach the server it will send ACK signal to client otherwise it will send NACK signal to client. 6.Stop the program Program : Client import javax.swing.*; import java.net.*; import java.awt.image.*; import javax.imageio.*; import java.io.*; import java.awt.image.BufferedImage; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.IOException; import javax.imageio.ImageIO; public class Client{ public static void main(String args[]) throws Exception{ Socket soc; BufferedImage img = null; soc=new Socket("localhost",4000); System.out.println("Client is running. ");  try { System.out.println("Reading image from disk. "); im...

Write a code simulating ARP /RARP protocols

   Write a code simulating ARP /RARP protocols . Aim:        To write a java program for simulating ARP/RARP protocols ALGORITHM: server 1. Create a server socket and bind it to port. 2. Listen for new connection and when a connection arrives, accept it. 3. Send server ‟ s date and time to the client. 4. Read client ‟ s IP address sent by the client. 5. Display the client details. 6. Repeat steps 2-5 until the server is terminated. 7. Close all streams. 8. Close the server socket. 9. Stop. Client 1. Create a client socket and connect it to the server ‟ s port number. 2. Retrieve its own IP address using built-in function. 3. Send its address to the server. 4. Display the date & time sent by the server. 5. Close the input and output streams. 6. Close the client socket. 7. Stop. Program Program for Address Resolutuion Protocol (ARP) using TCP Client: import java.io.*; import java.net.*; impor...

Write a JSP which insert the details of the 3 or 4 users who register with the web site by using registration form. Authenticate the user when he submits the login form using the user name and password from the database

Write a JSP which does the following job   Insert the details of the 3 or 4 users who register with the web site (week9) by using registration form. Authenticate the user when he submits the login form using the user name and password from      the database (similar to week8 instead of cookies). Description JSP scripting elements let you insert Java code into the servlet that will be generated from the current JSP page. There are three forms: Expressions of the form  <%= expression %>  that are evaluated and inserted into the output, Scriptlets of the form  <% code %>  that are inserted into the servlet's  service  method, and Declarations of the form  <%! code %>  that are inserted into the body of the servlet class, outside of any existing methods. Each of these is described in more detail below. JSP Expressions A JSP  expression  is used to insert Java values directly...