Skip to main content

Problem Based Learning


There are different learning techniques that are used in various ways. This is basically depends on the nature of the individual and their preferences. So in this article we will be looking on mostly used learning technique which is known as Problem based Learning.

Students learn about a subject through the experience of solving an open-ended problem found in trigger material.It  involves working in small groups of learners. Each student takes on a role within the group that may be formal or informal and the role often alternates. PBL can be incorporated into any learning situation. In this picture you can clearly see the way of occurring the traditional learning process and the Problem based learning process

Characteristics

  1. The problem must motivate students to seek out a deeper understanding of concepts.
  2. The problem should require students to make reasoned decisions and to defend them.
  3. The problem should incorporate the content objectives in such a way as to connect it to previous courses/knowledge.
  4. If used for a group project, the problem needs a level of complexity to ensure that the students must work together to solve it.
  5. If used for a multistage project, the initial steps of the problem should be open-ended and engaging to draw students into the problem.

Advantages

  1. Development of Long-Term Knowledge Retention.
Students who participate in problem-based learning activities can improve their abilities to retain and recall information.
  1. Use of Diverse Instruction Types.
Can use problem-based learning activities to the meet the diverse learning needs and styles of your students
  1. Providing a problem-based learning challenge can engage students by acting as a break from normal lessons and common exercises
  2. Development of Transferable Skills.
Problem-based learning can help students develop skills they can transfer to real-world scenarios
  1. Improvement of Teamwork and Interpersonal Skills


Disadvantages


  1. Cause issues when students take standardized tests, as they may not have the breadth of knowledge needed to achieve high scores.
  2. It can be difficult to identify a tangible problem that students can solve with content they’re studying and skills they’re mastering.
  3. Time Consuming

Comments

Popular posts from this blog

Scrum Methodology

What is Scrum Methodology? Scrum Methodology is an Agile methodology which is mainly focus on product development.But it is also can be used for software development processes.Its main aim is to avoid failure occurred in traditional development processes.It is an Iterative and incremental methodology. Scrum Scrum is mainly focused on fixed goals and last for period of 30 days.Key words related with Scrum methodology are, Product Backlog Sprint Backlog Sprint Product Backlog  List of all the things that is needed to do within the project.Basically a To do list that constantly re prioritized. Sprint Backlog A list of tasks identified by the  Scrum  team to be completed during the  Scrum sprint . During the  sprint  planning meeting, the team selects some number of  product backlog  items, usually in the form of user stories, and identifies the tasks necessary to complete each user story. In here highest prioritized tasks...

Dining Etiquette

Dining Etiquette is an important factor in both your personal life and Career. From this article you will get to know some key factors of dining etiquette. The Equipment When considering equipment we should first consider on the table setting. Table Setting You should keep your liquids  on your right and solids on your left. 1.Napkin Place your napkin on your lap soon after you sit. If you leave the table during your meal, place the napkin on your seat. After finishing the meal,place the napkin on the right side of your plate. The Courses Appetizers and Buffet Transfer all foods including dips first to your plate and then to your mouth. Do not eat while serving Do not crowd your plate Appetizers can be eaten with your fingers,unless it is well elaborated Soup and Salad Soup Spoon your soup away from you in bowl If your soup is hot, let it cool. Do not blow. Blowing the soup is a bad practice to f...

Encapsulation

From the previous article I gave you a basic introduction about Object Oriented Programming. This article will gives you a clear picture on Encapsulation Encapsulation is o ne of the four fundamental OOP concepts with inheritance, Polymorphism and Abstraction.It basically gives the   the idea of bundling data and methods that work on that data within one unit.It is used to hide the internal representation of a state of an object from outside.So when executing a  program it will make your code much safer.And this mechanism will be much more easier to use. By using Encapsulation we can easily modify our code without breaking the code of others who use the same code.Also it enables the code to be, flexible maintainable extensible Example :  class Person{       private int age;       private String name; } In here when using private key word it can only used inside the particular class. And this will not be vis...