This is a great moment in Mount Lawu at Hargo Dumillah

Lawu mountain has three peaks, Hargo Dalem Hargo Dumiling and Hargo Dumilah. The latter is the highest peak with an altitude of 3,265 m

At Hargo Dumillah 3,265 m

Prairie stretching to decorate the crown last Dumillah Hargo.

Man behind the gun

Every decision makes a particular outcome, depending on who is giving the effect

This is slide 4

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is slide 5

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Tuesday, July 16, 2013

Educational Assessment in the Twenty-First Century

The field of educational assessment is dynamic and continuously evolving. There are some aspects of the profession that have been stable for many years. For example, classical test theory has been around for almost a century and is still very influential today. However, many aspects of educational assessment are almost constantly evolving as the result of a number of external and internal factors. Some of these changes are the result of theoretical or technical advances, some reflect philosophical changes within the profession, and some are the result of external societal or political influences. It is important for assessment professionals to stay informed regarding new developments in the field and to consider them with an open mind. To illustrate some of the developments the profession is dealing with today, we will briefly highlight a few contemporary trends that are likely to continue to impact assessment practices as you enter the teaching profession.

Teachers should be proficient in the following:
  1. Selecting professionally developed assessment procedures appropriate for making instructional decisions.
  2. Developing assessment procedures that are appropriate for making instructional decisions.
  3. Administering, scoring, and interpreting professionally developed and teacher-made assessment procedures.
  4. Using assessment results when making educational decisions.
  5. Developing valid grading procedures that incorporate assessment information.
  6. Communicating assessment results.
  7. Recognizing unethical, illegal, and other inappropriate uses of assessment procedures or information.

Source of original statements :
Cecil R. Reynolds. Ronald B. Livingston. Victor Willson. Measurement and Assessment
in Education. 2009. New Jersey : Pearson

Friday, July 12, 2013

Client/Server Computing

Networking is tightly integrated in Java. Socket-based communication is provided that enables programs to communicate through designated sockets. Sockets are the endpoints of logical connections between two hosts and can be used to send and receive data. Java treats socket communications much as it treats I/O operations; thus programs can read from or write to sockets as easily as they can read from or write to files. Network programming usually involves a server and one or more clients. The client sends requests to the server, and the server responds to the requests. The client begins by attempting to establish a connection to the server. The server can accept or deny the connection. Once a connection is established, the client and the server communicate through sockets.
The server must be running when a client starts. The server waits for a connection request from a client. The statements needed to create a server and a client are shown in figur 1.

Figur 1. The server and client exchange data through I/O streams on top of the socket.

To establish a server, you need to create a server socket and attach it to a port, which is where the server listens for connections. The port identifies the TCP service on the socket. Port numbers range from 0 to 65536, but port numbers 0 to 1024 are reserved for privileged services. For instance, the email server runs on port 25, and the Web server usually runs on port 80.

You can choose any port number that is not currently used by any other process. The following statement creates a server socket serverSocket:

ServerSocket serverSocket = new ServerSocket(port);

After a server socket is created, the server can use the following statement to listen for connections:

Socket socket = serverSocket.accept();

This statement waits until a client connects to the server socket. The client issues the following statement to request a connection to a server:

Socket socket = new Socket(serverName, port);

This statement opens a socket so that the client program can communicate with the server. serverName is the server's Internet host name or IP address. The following statement creates a socket at port 8000 on the client machine to connect to the host 130.254.204.36:

Socket socket = new Socket("130.254.204.36", 8000);

Alternatively, you can use the domain name to create a socket, as follows:

Socket socket = new Socket("drake.armstrong.edu";

After the server accepts the connection, communication between server and client is conducted the same as for I/O streams. The statements needed to create the streams and to exchange data between them are shown in Figure 2.

Figur 2. The server and client exchange data through I/O streams on top of the socket.

To get an input stream and an output stream, use the getInputStream() and getOutputStream() methods on a socket object. For example, the following statements create an InputStream stream called input and an OutputStream stream called output from a socket:

InputStream input = socket.getInputStream();

OutputStream output = socket.getOutputStream();

The InputStream and OutputStream streams are used to read or write bytes. You can use DataInputStream, DataOutputStream, BufferedReader, and PrintWriter to wrap on the InputStream and OutputStream to read or write data, such as int, double, or String. The following statements, for instance, create a DataInputStream stream, input, and a DataOutput stream, output, to read and write primitive data values:

DataInputStream input = new DataInputStream (socket.getInputStream());

DataOutputStream output = new DataOutputStream (socket.getOutputStream());

The server can use input.readDouble() to receive a double value from the client, and output.writeDouble(d) to send double value d to the client.

Source of original statements:
Liang, Y. Daniel.
Introduction to Java programming : comprehensive version/Y. Daniel Liang. 6 th ed.

Vertical Photo Panels Effect In Photoshop

At this time the event we will make panels like the above photo, the steps are bleak following :
1. Open the Photoshop application, and create a new worksheet.
2. Open your image / photo will be changed /edited


3. Then add the white layer with click solid color fill


4. Select the color white on pick a solid



5. Once in ok, then it will be all white

6. Then copy layer background
7. Move the background copy layer above the color fill
8. Create rectangle with rectangle tool
9. Then we can change its position by rotating rectangle



10. Then change the rectangle to be under the background copy


11. After that we make masking for background copy, click on the background copy layer and click to select create clipping mask


12. After the click, then the result is as follows


13. Then we give a little shadow and stroke in the rectangle



14. So the result is as follows


15. Then copy and rectangle background we make a group that not lying disheveled. Click the background copy layer and then select the rectangle layer, new, group from layer


16. Then the new group will merge from the layer window


17. Then we will get a folder named panel and inside there is a rectangle and background copy


18. Then duplicate the folder earlier panel, right-click on the folder pane and select duplicate group


19. Then there will be a copy of the folder pane, and change the folder to be located below the panel



20. Then open folder panel copy


21. Then we change the layout rectangle, click the shape 2 and change of the position

22. Do steps 18-21 until the desired results

Wednesday, July 10, 2013

THE RESEARCH QUESTION

The first issue is whether the researchers have set out to answer a sensible question. Some research questions may not address an issue that you find interesting. Different people have different agendas, and different priorities. For example, some people approach topics in developmental psychology from the point of view of classroom practice, others have an interest in parenting, and still others are mainly interested in general theoretical questions about the influence of environment on development. Each of these perspectives highlights different issues. A study that aims to improve practice may not ask the type of question that a theoretician is primarily interested in. For instance, a classroom practitioner may want to know whether color illustrations make mathematics textbooks more effective. This may be an important practical question, but knowing the answer may be of limited importance for general theories of development.
 
Occasionally, a research project may pose a question in a way that is clearly too simplistic given existing knowledge. For example, a research project that asks whether some aspect of behavioral development is caused either by information encoded in DNA or by the environment is almost certainly asking too simplistic a question. Most aspects of development are clearly influenced both by genetic preparation and the environment together. The way that the genetic blueprint unfolds is influenced by the environment.
 
Another problem you may encounter is when a research project makes assumptions about the world that you do not accept. For example, several research programs have investigated psychological differences between races of people. However, many investigators would not accept that classifying people into races is scientifically meaningful. They would argue that the variation between people within a “race” is as great as variation between races, and they would point to the way that different cultures distinguish races in different ways. Bear in mind that the rejection of assumptions should be made on scientific grounds, rather than political ones. How much genetic and behavioral variation there is within “races” is an empirical issue that can be settled scientifically, and so is a legitimate basis for arguing against race as an important aspect of human classification.

A related criticism is that, even if the research question were answered, it would not get us anywhere to know the answer. This is a criticism made most often of studies of racial differences. A critic would argue that even if we do discover that one race is on average less intelligent than another it could not possibly make any practical difference: What conceivable change to public policy could be justified by such knowledge? Of course, that is a question about the politics of research. That is, what are the implications for choices we make as a society?

Studies can also be criticized for attempting to answer questions that the discipline is not in a position to answer effectively. Some questions just cannot be answered by scientific methods. For example, how much longer would World War II have continued if the US military had not dropped atomic weapons on two Japanese cities? There is no way to know. We cannot rerun the scenario with the same politicians in charge, playing it out alternately, with and without, atomic weapons. Another example with a slightly more psychological flavor is “would John Wayne have become a cowboy or a farmer if he had lived in the nineteenth century?.” The best we can offer is an educated guess: Most probably, an actor.
 
The first thing to evaluate, then, is the research question. Is it answerable? Are its assumptions scientifically acceptable? Does it ask something interesting? One thing to bear in mind is that studies that have different objectives to your own can still be useful. For example, practical research on colored mathematics books could provide some information that a theorist would find useful if the theory made predictions that distinguished color and black and white images. For example, if you had a theory predicting that people make more use of top down information when interpreting black and white images, data on mathematics learning with black and white or color images could provide some interesting clues. Even if a study does not directly address the questions that interest you most, it can still be valuable to you.

Source of original statements :
George Dunbar. Evaluating research methods in psychology : a case study approach

Generating possibilities, incubating and promoting at Innovation in Education and Vocational Education and Training

Over the past decade, theory and research on the adequate conditions for the generation of innovation at the system level have grown in sophistication, yet this research has focused much more on education than on vet.
using longitudinal analytic techniques, education scholars have remedied the methodological limitations that accompanied early reliance on cross-sectional designs. Scholars also have developed models that are increasingly comprehensive in their explanatory scope and trespass old divisions. indeed, some studies now provide integrated social, economic (e.g. many studies emphasise that socio-economic development is likely to influence the adoption of innovations in education, as they can be resource-intensive), political (e.g. degree
of centralization, degree of professionalization of civil servants, and levels of inter-party competition for instance), and diffusion-related explanations of innovation (mcLedon et al., 2005).

Among political determinants of innovation in education, the role of organizing the public sector along the centralisation-decentralisation continuum is a key factor in generating innovation in education. in this respect, countries such as the united States have experimented with radically different  models, and their experience can be enlightening. in the 1950s and 1960s, united States states centralised decision-making processes by granting regulatory co-ordinating boards greater power and responsibility to make centralised academic and fiscal decisions for an entire state, supplanting advisory coordinating boards that interfaced previously with governmental institutions. among the supposed benefits of centralised planning and policy development, it was argued, was greater state policy innovation (Callan, 1975; mcConnell, 1962; mortimer and mcConnell, 1982). the nonpartisan professionals that would staff the new state-level boards would bring increased technical knowledge and analytical capacity to bear on the management of postsecondary systems, thereby providing elected officials (e.g. legislatures and governors) and their staffs with new ideas for improving postsecondary access, quality, affordability, and productivity (mcLedon et al., 2005). in the 1980s and 1990s, however, there was a re-structuring of the system governance patterns (marcus, 1997) with a tendency toward “deregulation” and “decentralization” to the local level (campus) (Couturier, 2003; mactaggart, 1998; Schmidt, 2001). a frequent argument at the time was that centralised governance might inhibit policy innovation in the postsecondary arena because government bureaucracies are inherently resistant to new ideas (Berdahl and mactaggart, 2000; hebel, 2000; mactaggart, 1998). mcLedon et al., (2005) provides one of the few studies that test empirically how decentralisation affects innovation, covering the case of the uS. they report that centralised governance arrangements are positively – albeit weakly – associated with governmental adoption of new postsecondary financing policies, but not accountability policies. this finding appears to offer modest support for the claim made during the 1960s, and subsequently tested by hearn and griswold (1994), that centralised governance structures may spur state governments to adopt certain innovative postsecondary policies. no similar study looking at the relationship between governance patterns and innovation in vet was found d uring t his r eview. Stasz and Bodilly (2004) do explore how the degree of centralization of a system (measured by the number, and degree of authority, of agencies involved in decision-making and delivery of educational services) affects its capacity for policy change – including innovative change – but with a methodology less sophisticated than those of studies conducted for education, such as mcLedon et al. (2005). it concludes – as do mcLedon et al. (2005) – that centralised systems were more likely to implement innovations in certain areas, i.e. case standards, graduation requirements and assessment.

As already mentioned, the use of pilots has played an important role in incubating, promoting, and generating possibilities for innovation in vet. there indeed exists a more extensive use of pilots as incubators of future innovations in vet in relation to education as well as a greater role by international organisations in this area, particularly the eu. Looking at the role of international organisations and their piloting approach in incubating and promoting innovation, the evaluation of the LeonarDo ii programme (eCoteC, 2008) found that the role of the programme has been greater in the incubation and promotion of innovation than in the diffusion of innovation (see also next subsection). a substantial proportion of LeonarDo pilot projects had only had a modest impact on policy making, particularly in old member states – impact was greater in new member states, given their initial conditions. Project co-ordinators described the limited scope of their projects as the main reason for low impact. Whereas the programme created many valuable outcomes, they must still be better embedded into policy making processes to achieve their full impact. in this respect, greater dissemination and valorisation of results could prove useful (Janssen, 2002; eCoteC, 2008), although this approach still faces some limitations.

Examples of government initiatives to promote innovation in vet can also be found at the national level (see, for examples across a large number of countries, gill et al., 2000). Stasz and Bodilly (2004) provide an evaluation of the role of uSa federal and state policies in improving the quality of vet in secondary schools within the context of the Perkins vocational and technical education act of 1998 (Perkins iii act), which included innovation initiatives, such as the ill-defined (Stasz and Bodilly, 2004; Stasz and grubb, 1991 for a discussion in relation to Perkins ii) but central concept of integration of vocational and academic education through, amongst other tools, curricular innovations. however, this review offers limited specific information on the role of governance patterns in generating possibilities for innovation at the policy level in vet. Callan (2004), in a study based on the experience of australian vet providers, outlines specific suggestions on how to incubate and promote innovation below the policy level, namely in individual vet organisations (see also section below in this chapter on the conditions that facilitate innovation and barriers for a more general discussion, as well as Chapter 4 specifically on barriers and drivers). these are as follows:

  • Bring new ideas into the organisation, encourage staff to attend conferences and workshops, to join professional groups, and to bring in outside experts who have different or new opinion about issues.
  • Provide seed funding, which can be applied to initiate new projects. initially, this funding might be limited to buying-out staff time to allow them the time to progress their ideas to some form of innovation or concept plan.
  • Select and promote those partnerships that allow the organisation to develop its skills and knowledge, and to have staff work closely with partners through shared working arrangements, job rotations, and exchanges of staff.
  • Ss an organisation, identify whole-of-enterprise issues that can best be resolved through cross-functional teams with members from various business divisions in the organisation.
  • Encourage the broad concept of communities of practice, including time for staff to meet informally and socially with others from inside and outside the enterprise to facilitate the sharing of knowledge and practical experiences.
  • Build the expectation among staff and members of the institution’s board of management that staff will be putting new ideas and projects to the board for consideration, debate, and potential endorsement.
  • Define and publicise a simple process which staff can work through to propose new ideas for initial consideration.
  • Include within organisational websites details about innovations being considered, and invite those from both inside and outside the organisation to email comments and advice about how the idea might be further progressed. 
  • Implement recognition programs that publicly support and celebrate innovative solutions to teaching and learning and to partnering and related activities.
  • Encourage innovative ideas from students though the sponsorship of enterprise competition in which students can compete for cash and in-kind support to take their innovations to market.

Erlt and kremer (2006) note that the greater degree of stability (e.g. less staff fluctuation ) of german vocational colleges (Berufsschulen), as compared to english Fe colleges, also seems to allow lecturers to reflect more freely on innovative practices in general. the next subsection looks at innovation diffusion.

Prosser’s Sixteen Theorems on Vocational Education

A Basis for Vocational Philosophy

Dr. Charles A. Prosser, the first National Director of Vocational Education, developed and publicized the following sixteen theorems as a basis for sound and successful programs. Many attempts have been made throughout subsequent years to re-phrase or update these statements, without success. There are certain minimum standards without which one may not reasonably expect to operate a program of vocational education and be effective generally in programs of either preparatory or extension education. There is little reason to believe that these basic standards have changed materially since the early development of the program. For this reason these sixteen theorems are being quoted with a short interpretation supplementing
each theorem.

1. “Vocational education will be efficient in proportion as the environment in which the learner is trained is a replica of the environment in which he must subsequently work.”

This theorem dictates that the type, kinds, amount, use and arrangement of space, materials, equipment and supplies for a preparatory program be a replica of those in employment. It has a bearing upon the length of time devoted to skill development necessary to approach industrial practice. It has implications for quality and quantity of production expected. It has direct implications for teacherlearner ratios. It relates directly to the efficiency with which a student transfers from school to employment.

2. “Effective vocational training can only be given where the training jobs are carried on in the same way with the same operations, the same tools and the same machines as in the occupation itself.”

The implications of this statement are that instructors must have recent employment experience in order to be skillful in the use of the latest equipment and must make use of the same types of tools and equipment as would be currently found in employment; and, must use live work or work identical to that provided in employment for instructional experience rather than pseudo or so-called “project” work. Emphasized here is that the skills taught should follow the same basic practices as industrial employers would expect, and learners should be able to move from the training situation to employment situation with little need for adjustment.

3. “Vocational education will be effective in proportion as it trains the individual directly and specifically in the thinking habits and the manipulative habits required in the occupation itself.” 

Two important education factors are implied in this statement. First thinking habits which implies that the scientific or problem solving method is being developed in students; and second that manipulative skills be performed with sufficient repetition that habit formation takes place. This, in turn, has implication for the length of class periods and for the total length of courses. There is also an implication here for a major aspect of the occupation, namely the technically related content where knowledge and facts are as essential for thinking, as tools are for productive work. 

4. “Vocational education will be effective in proportion as it enables each individual to capitalize his interest, aptitudes and intrinsic intelligence to the highest possible degree.”

This theorem has direct implications to class size, to individualized instruction, to instructional methods, to effective guidance and selection of learners, and to the promotional plan for the program. Here also, is that each specific vocation may well have its own unique requirements for admittance. For example, the depth and ability in mathematics could vary considerable between various occupations, as would the physical and other characteristics of individuals.

5. “Effective vocational education for any profession, calling, trade, occupation or job can only be given to the selected group of individuals who need it, want it, and are able to profit by it.” 

Vocational education is not for everyone and this statement implies that those admitted should be carefully selected through effective guidance procedures and should be potentially successful as future productive workers. Persons should be selected on the basis of their own interests and aptitudes, and on the basis of their being potentially a successful employee following preparation. 

6. “Vocational training will be effective in proportion as the specific training experiences for forming right habits of doing and thinking are repeated to the point the habits developed are those of the finished skills necessary for gainful employment.”

This statement effects one of the most crucial requirement for successful vocational preparation. Few people could be prepared to perform skillfully some work without having spent sufficient time in performing the variety of skills required so that habit formation may take place to the end that they can practice these skills at a future date. The direct implication here is for adequate lengths of time during the day, and for an adequate period of time in months to cover the skill and technical development essential for effective employment as a productive worker.

7. “Vocational education will be effective in proportional as the instructor has had successful experience in the application of skills and knowledge to the operations and processes he undertakes to teach.” 

The implication in this case is that the teacher cannot teach that which they do not know; and, since the subject matter of the vocational teacher is composed of the skills and knowledge of the occupation, it would follow that teachers who are recognized as highly competent workers themselves through actual successful employment experience would be most desirable for a vocational program. The recency of any such experience is also of utmost importance if learners are to be prepared for current expectation for employers; and this, the recency of work experience of the potential vocational teacher is implied in this theorem.

8. “For every occupation there is a minimum of productive ability which an individual must possess in order to secure or retain employment in that occupation. If vocational education is not carried to that point with that individual, it is neither personally or socially effective.”

We see in the above statement a direct bearing upon the proficiency expected of learners who wish to find their place in the world of work. Vocational education must prepare the individual to meet the employment requirements of employers. Again, to meet these employment requirements requires considerable preparation, which relates to the length of the period, day or year required for the particular offering.

9. “Vocational education must recognize conditions as they are and must train individuals to meet the demands of the “market” even though it may be true that more efficient ways of conducting the occupation may be known and that better working conditions are highly desirable.”

Vocational education programs can never exist as merely course in a school system but must be considered a community-wide project. Therefore, this statement implies the dire need for the use of craft committees; for instructors with recent employment experience; and for a program that is geared to existing opportunities in the community, the area or the state. Instruction beyond immediate needs is encouraged, but not at the cost of basic current needs of employers.

10. “The effective establishment of process habits in any learner will be secured in proportion as the training is given on actual jobs and not on exercises or pseudo jobs.” 
This theorem emphasizes again the need for practical, live work on which learners may practice developing the skills essential to an occupation. Learners cannot obtain the feel for the kind of work that will be done in employment when working on pseudo jobs or so-called projects. The work performed must be as identical and as up to date as possible with current practice in employment situations.

11. “The only reliable source of content for specific training is an occupation is in the experience of masters of that occupation.”

This statement reaffirms the need for occupational analysis as the basic method of curriculum development. It also emphasizes the importance of effective involvement of representative occupational advisory committees in assisting in curriculum planning. The occupationally competent instructor must utilize both these resources in the construction of his detailed course content.

12. “For every occupation there is a body of content which is peculiar to that occupation and to which has practically no functional value in any other occupation.”

This statement has direct implication to the close coordinated instructional program between the related technical construction and the skill development phase of the program. The application of mathematics and scientific principles to problems of the vocation should be the emphasis rather than teaching segregated subject matter courses that may or may not have direct relationship to the needs of the student. So-called broad or general areas of instruction in the subject matter unrelated to the problems at hand will have little benefit to the development of a competent worker.

13. “Vocational education will render efficient social service in proportion as it meets the specific training needs of any group at the time that they need it and in such a way they can most effectively profit by the instruction.” 

This statement emphasizes the desire on the part of an individual to learn, in that vocational education should provide what the learner wants at the time he wants it, and in relation to his own recognized
needs. This theorem has particular emphasis to the extension programs for employed workers since they will not use their own time to attend curses unless they are reaping direct benefits of immediate use from such attendance.

14. “Vocational education will be socially efficient in proportion as in its methods of instruction and its personal relations with learners it takes into consideration the particular characteristics of any particular group which it serves.”

This theorem implies that there is no single set of general characteristics such as school grades, IQs or other such characteristics that should be used as a basis for projecting vocational success; but, rather by knowing the individual student’s interests, aptitudes and abilities, he can usually be guided into successful vocational experiences or guided away from enrolling into occupations for which they are unsuited.
 
15. “The administration of vocational education will be efficient in proportion as it is elastic and fluid rather than rigid and standardized.”
 
Here the implication is for flexibility within the framework of sound standards that support good
vocational education rather than maintaining a rigid and inflexible plan. Vocational educators should be always alert to possible improvement and be willing to work toward continually adjusting the programs in light of changing employment requirements.

16. “While every reasonable effort should be made to reduce per capita cost, there is a minimum below which effective vocational education cannot be given, and if the course does not permit this minimum per capita cost, vocational education should not be attempted.”

Preparation for employment is generally more costly than general education, whether it be at the skilled, paraprofessional (technical), or professional level. This additional cost is usually dependent upon the space, equipment, materials, and the necessity for smaller class size than would be true of normal academic programs of instruction. However, this statement directly implies that it is better not to attempt a vocational program than to operate it below the economic level that would lead to success. Vocational education is not cheap education, but it is economically sound to provide it.

If every vocational educator responsible for programs of instruction would only maintain this list of sixteen theorems in front of them and make a serious effort to meet these goals, the result would, in almost every instance, be sound, quality vocational education. The more nearly a vocational program can approach the full realization of these theorems in its operation, the higher the quality of the program will be. Any attempt to disregard any one of these basic and fundamental concepts, can only result in undermining and destroying the program of vocational education for the citizens of the community.


Source of original statements:
Prosser, C. A. & Quigley, T. H. “Vocational Education in a Democracy” American Technical Society, Chicago, Illinois, 1949. 
Author(s) of interpretive text unknown. This text has been retyped from a class handout from Colorado State University’s department of Vocational Agriculture, 1985-87(?). Professors Irving C. Cross, Windol L. Wyatt, Ramsey R. Groves.

Monday, July 8, 2013

Learning approach

Very diverse types and learning methods. Development of science and technology provides a very influential impact will approach both in school and not learning. According Syaifuddin Sagala (2005: 68) that "learning is an approach that will be taken by the teachers and students in achieving instructional objectives for particular instructional unit". Meanwhile, according to Suherman (1993:220) argues in the learning approach is a road, way or policies adopted by the teacher or the students in achieving the learning objectives from the perspective of how the process of learning or the learning materials, general or special.

 From some of the above approach to learning is a way ditemuh by teachers and students refer to a particular view of the occurrence of a process of a general nature or specifically from the perspective of how the learning process in which there are inspiring, strengthening and underlies learning methods with certain coverage. Judging from the approach, there are two types of learning approaches :
  1. Oriented approach to learning or student-centered (student centered approach) 
  2. Oriented approach to learning or teacher-centered (teacher centered approach).
 Student centered approach is an approach in which students are required to be active, critical, and independent in the learning process for students at the center of the learning process, while the teacher only as a companion and guide. There are some advantages and disadvantages of this learning process approach. Its advantages are :

  1. Students can explore their own subjects so as to provoke curiosity and critical thinking training.
  2. Active students will feel more comfortable in learning
  3. Creating a classroom atmosphere to be active and not fixated on teacher
 While several disadvantages are:
  1. Students will likely miss the passive subject matter
  2.  Passive students will feel depressed because of the subject matter
    will continue to grow while there is no repetition of material
Learning process as above was often known by the student centered learning. While the teacher centered learning approach is an approach that is based on the view that the teacher as a teacher is to instill in students the knowledge and skills (Smith, in Sanjaya, 2008: 96). Teacher as the center of teaching and learning is no longer a student as student centered learning. Teachers will be responsible for all materials and the learning process. Advantage daro teacher centered approach approach are :
  1. Material taught will be monitored well
  2. Planning, materials and methods pembalajaran designed by teachers 
  3. Activities and tasks according to the teacher's 
  4. Classroom atmosphere will be more conducive
 While the disadvantages are :
  1. Students just waiting for material from the teacher
  2. Students become active in the learning process 
  3. Teachers are required to understand and understand the entire contents of the subject matter that will be given 
  4. If the teacher then passive learning activities will also be passive
 

Ethical Character at Industrial Education Facilities

One manifestation of ethical character is respect for public and private property. This area of learning has increased in importance as the population of the United States has grown. Many social agencies are greatly concrned with it. Industrial arts classes involve students in the use of more public property than they will use in any other subject matter area. They work with pieces of equipment that are small and large, inexpensive and costly, crude and precise, and delicate and strong. Micrometers, drafting machines, leather-carving tools, engine test equipment, exposure meters, table saws, hammers, and ceramic kilns are representative of the items used.
Students also use and have aceess to many kinds of materials, some of which are very expensive. Opportunities for waste, damage, and pilferage are endless. Consequently students must act responsibly, as they are being taught to do in industrial arts laboratories all over the nation. Students quickly learn that abusing equipment and wasting materials lead to operating problems, safety hazards, increased costs, and interruptions in class activities. With respect to other facets of the objective of ethical character, industrial arts has obligations similar to those of other instructional areas.
It is in a position to make important contributions. Objectives set forth for industrial arts must give evidence of dedication to all phases of secondary education. Each objective should express a unique contribution to the achievement of one or more goals of "Secondary education. Further, it must represent a contribution that industrial arts, in fact, can make with the equipment, materials, laboratories, teaching talent, and student abilities that are available. The following objectives can be justified on all of the suggested bases. They are teacher objectives, stated in terms of desired student behavior.


To develop in each student:
  1. 1. The ability to make skillful use of a variety of materials and pieces of equipment that are common to selected industries, vocations, and professions
  2. A fund of technical information concerning equipment, materials, processes, and applications of scientific principles
  3. An understanding of the importance of safety and the habit of observing the best safety practices at all times
  4. The ability to produce and interpret fundamental types of drawings
  5. An interest in creative work and the ability to solve design problems
  6. The ability to evaluate consumer products accurately with regard to quality of design and wo:rkmanship
  7. Skill in maint'lining consu:'ller products
  8. An interest in and the ability to carry on creative leisure timeactivities
  9. An understanding of the workings of basic industries, especially their design and productive functions
  10. A knowledge of the requirements of and opportunities provided by a variety of important vocations and professions
  11. An understanding of his or her interests and abilities as they relate to specific occupations

Collectively these objectives specify the commitment of industrial arts to secondary education and .they define industrial arts, since any instructional area is precisely what its objectives say it will do. The objectives make it evident that industrial arts is not an area of study that encompasses everything known to man and that it is not the anawer to all educational problems. But it can achieve a number of important objectives and this is the task upon which it must concentrate.

THEORY OF LEARNING

THEORY OF LEARNING
Learning theory is divided into three main theories Behaviour Theory (Behaviouris), Cognitive Theory and Constructivism
Theory. 

1. Behavior Theory
This theory change behavior pressing. Study of behavior that can be seen or measured. It does not take a guess thought process applies. Between the figures of this theory is:

Pavlov (1849-1936)
Watson (1878-1958)
Thorndike (1874-1949)
Skinner (1904-1960)

Thorndike said that learning is the formation of a relationship between SR (STIMULUS-RESPONSE). He also has produced three important laws namely:
Legal impression
Legal training
Law "readiness"


Learning principles emphasized by Thorndike are:
Learning requires practice and discipline.
A tindakbalas siri be joined.
The transfer of the learning effect due to experience.
Cleverness is dependent on the frequency.

However, Skinner has customize learning theory studies the behavior and learning has reserved the following principles:
positively sanctioned behavior will be repeated.
Inauguration intermitent memorable.
• Notice was given little by little
Creation generalizable to produce secondary perlaziman.

Whatever the theory of learning behavior has given the impression to:
Objective of learning behavior
Analysis of the behavior of the learning taxonomy
Taxonomy learning matlamat Gagne
Learning mastery
Approach and Tentera industry
teaching machines and teaching terancang
Teaching individuals.


The strength of this theory is the foundation emphasized that students focused on a clear goal and can respond to that goal. The disadvantage of this theory is that there is no possibility students find a suitable stimulus for feedback occurs, the student can not be responding.

 
2. Cognitive Theory
This theory push the thought process behind the behavior, ie the process.
Ang occur in the minds of students. Among the leaders of this theory are:

Edward Tolman
Bandura
J. Piaget
Bartlett
Gagne / Briggs
Good
Ausubel

Implications of Cognitive Theory in Teaching are:
Organization and structure of knowledge.
Knowledge of procedures that can be used.
• Ability to obtain knowledge.

Key Concepts of Cognitive Theory is:
Schema.
Processing information
• This means that
serial position effect
Training Effect
Effect of transfer
• Impact level of information processing
• Impact of state
Effects of mnemonic
Organising early

To apply the cognitive theory of teaching, teachers must actively involve students. For example, giving control to students and ensure that students can make the training at any time. In addition, the teacher also needs to pay attention to the structuring and organization of information to facilitate processing.

The strength of this theory is to train students to learn something with the same method and thus promote consistency in doing the work. The disadvantage of this theory is that students only learn one method of doing things and probably not the method or methods best suited to the student or situation at the moment.


3. Constructivism Theory
 This theory of learning is a process of pressing the active and students build new concepts or new knowledge based on experience. Each individual has his own knowledge representation through the experience suffered. Learning occurs when an imbalance occurs between frames with new information.

The implications of this theory in teaching are:
Teachers encourage learning through discovery.
Teachers and students interact actively.
Teachers adjust instruction according to students' understanding.
Teachers use the most effective sequence to give knowledge.

The strength of this theory is that many students interpret reality, students can tackle the real problems in a variety of forms. The disadvantage of this theory was no uniformity. Students have a mental model representations respectively and problems may arise when individuals express their views that they katakana right.