Good Extracurricular Activities for Med School: What are Schools Looking for in Applicants?
Yosepha
December 9, 2017
share on
$(‘.facebook’).hover(function () {
$(‘.fb-icon’).toggleClass(‘hide’);
$(‘.fb-hover-icon’).toggleClass(‘hide’);
});
$(‘.linkedin’).hover(function () {
$(‘.linkedin-icon’).toggleClass(‘hide’);
$(‘.linkedin-hover-icon’).toggleClass(‘hide’);
});
Good Extracurricular Activities for Med School: What are Schools Looking for in Applicants?
Preparing for medical school demands displaying your passion for both medicine and helping others. Like medical schools, other graduate school programs (think: business or law) require strong grades, test scores, leadership experience, and resumes. But medical school requires so much more than that. Good extracurricular activities for med school are a particularly important part of the application process.
Through your application—personal statement, AMCAS experience list, secondaries, and interviews—you must demonstrate a genuine desire to make a difference in the lives of others. You must also show an undeniable passion for the field you are about to dedicate the next several years of your life to—medicine.
How do you do this? What do medical schools look for in an applicant?
Join or start activities that help others or have a relevance in medicine. Here are some good extracurricular activities for med school:
1. Research
Whether researching new surgical devices, eliminating disease, or examining the structure of a virus, breakthroughs in the medical field were not an accident; rather, they were the result of committed, systematic efforts to find out how things work. They were the result of research.
Research opportunities are good extracurricular activities for med school for a number of reasons. Firstly, they demonstrate a desire to discover and a commitment to finding answers. Secondly, medical schools are looking for candidates who are going to change the future of medicine. Doing research during undergrad or a gap year will demonstrate your potential to do so. Thirdly, doing your own research will help you learn how to interpret research, which is something you will need to be able to do in medical school and as a physician.
2. Service
When applying to medical school, you must show that you have a passion for helping others. When you think about it literally, doctors care for people when they are sick, and sometimes, at their worst. As an applicant, you must prove that you have a desire to do this and that you have the guts to handle this responsibility. Serving others is a defining characteristic of the medical practice. As an applicant, you must prove on your resume that you are ready and willing to do this, so volunteering with related organizations makes for good extracurricular activities for med school.
When participating in service and volunteer opportunities, you must demonstrate tangible achievements. How many people did you treat or help? How much money did you raise? How much medicine did you distribute? What improved as a result of your effort?
You must also demonstrate sustained involvement over a significant period of time. As one of our Former Admissions Officers from UCSF Medical School said, “A two week service trip to Honduras isn’t fooling anyone! Two weeks is not enough time to make an impact; it’s only enough time to make observations.”
3. Work/Internship Experience
When medical school admissions committees admit applicants, they are choosing to invest hundreds of thousands of dollars into their education. It is a huge investment of time, money, and resources. They must make absolutely sure that applicants know exactly what they are getting into! They simply cannot risk admitting a student who doesn’t have the highest level of commitment to medicine or who doesn’t have the resilience and perseverance to make it through to the end.
To demonstrate your commitment to becoming a physician, you should probably spend some time learning what it’s like to be one! Good extracurricular activities for med school therefore include shadowing doctors, working as a scribe, working at a clinic, or interning at a hospital, among others.
4. Teaching Experience
Being a good physician requires excellent communication, listening, and leadership skills, all of which can be strengthened through teaching. As a doctor, you will essentially need to teach patients about their condition, symptoms, or treatment options in an understandable and easy-to-digest way. You can practice and prepare to do this through teaching. Whether it’s working as a teaching assistant during undergrad, taking a gap year to teach health in a foreign country, or coaching a sport, start learning how to teach.
Standing out (in a good way!) is the single most important part of the medical school application process. While the ideas above are good extracurricular activities for med school and somewhat expected of pre-med students, you should not feel limited to only participate in these activities.
Whatever you choose to do, make sure that you are (1) demonstrating a genuine passion for medicine and helping others, (2) making a tangible and noticeable impact, and (3) showing sustained involvement and dedication to an activity, organization, or cause!
Tags :applying to medical school,medical school,medical school application,med school,good extracurricular activities for med school
5 tips to get into college
Name *
Email M*
function validate_file(uid, files) {
var file_err = ‘file_err’;
var upload_cv = $(‘#’ + uid);
var file = $(‘#’ + uid)[0].files[0];
if (file == undefined) {
document.getElementsByClassName(“file-upload-wrapper”).removeAttribute(“data-text”);
upload_cv.after(‘
Please upload valid (‘ + files + ‘) File
‘);
return false;
} else {
document.getElementsByClassName(“file-upload-wrapper”).removeAttribute(“data-text”);
$(“#” + file_err).html(“”);
}
}
(function ($) {
$(document).ready(function () {
$(“#contact-form-22e2a01d1d8e7775f656875981bd5035”).validate();
function gatedSubmit(url) {
// downloadFile(url);
$.AjaxDownloader({
url : ‘https://newsite.ingeniusprep.com/wp/wp/wp-admin/admin-ajax.php’,
data : {
action: ‘download_file’,
fileurl: url,
}
});
}
});
})(jQuery);
.modal-backdrop {
z-index: -1;
}
×
…
Close
var $ = jQuery.noConflict();
function form_submit_action_22e2a01d1d8e7775f656875981bd5035() {
if( $( “#contact-form-22e2a01d1d8e7775f656875981bd5035” ).valid() ){
function setLoader() {
jQuery(“.wrap-forms-loader”).show();
}
setLoader();
//console.log(this);
var form = document.querySelector(“#contact-form-22e2a01d1d8e7775f656875981bd5035”).elements;
var json_obj = {};
for (var i = 0; i < form.length; i++) {
//type equal to 'radio button'
if (form[i].getAttribute('type') == "radio") {
if (form[i].getAttribute('api-form-field')) {
if (form[i].checked) {
json_obj[form[i].getAttribute('api-form-field')] = form[i].value;
}
}
}
//TODO type equal to 'checkbox'
else if (form[i].getAttribute('type') == "checkbox") {
if (form[i].getAttribute('api-form-field')) {
if (form[i].checked) {
json_obj[form[i].getAttribute('api-form-field')] = form[i].value;
}
}
}
//other form fields
else {
if (form[i].getAttribute('api-form-field')) {
json_obj[form[i].getAttribute('api-form-field')] = form[i].value;
}
}
}
jQuery('input[name="data"]').val(JSON.stringify(json_obj));
//setLoader();
//console.log(json_obj);
var form_type = json_obj.form_submit_type;
// Static Submit
if(form_type == 'api_url'){
if (grecaptcha === undefined) {
$('.form-message-wrapper').html( "Recaptcha not defined" );
jQuery(".wrap-forms-loader").hide();
return false;
}
var response = grecaptcha.getResponse();
if (!response) {
$('.form-message-wrapper').html( "Coud not get recaptcha response" );
jQuery(".wrap-forms-loader").hide();
return false;
}
//console.log(form_type);
var data_string = JSON.stringify(json_obj);
//console.log(data_string);
$.ajax({
url: json_obj.form_submit_url,
data: data_string,
type: 'post',
success: function (data) {
jQuery(".wrap-forms-loader").hide();
$("#contact-form-22e2a01d1d8e7775f656875981bd5035")[0].reset();
$('.form-message-wrapper').html( ""+data.success_msg+"" );
},
error: function (data) {
},
});
return false;
}
else{
}
}
//return console.log(json_obj);
}
function setLoader() {
jQuery(".wrap-forms-loader").show();
}
(function ($) {
$.fn.exists = function(callback) {
var args = [].slice.call(arguments, 1);
if (this.length) {
callback.call(this, args);
}
return this;
};
$(document).ready(function(){
$('div.fw-flash-messages').exists(function() {
$('.form-message-wrapper').append($('div.fw-flash-messages').html());
});
});
})(jQuery);
ul.fw-flash-type-success {
margin-bottom: 15px;
margin-top: -30px;
}
ul.fw-form-errors {
margin-bottom: 15px;
margin-top: -30px;
}
By:
Yosepha
Yosepha Greenfield grew up in Los Angeles and graduated from Yale University with a B.A. in Political Science. While at Yale, she was the Captain of the Women’s Basketball team and the starting point guard. Under her leadership, the team advanced to the NIT tournament for the first time in program history.
Throughout her academic, athletic, and professional career, Yosepha has dedicated herself to helping people become the best version of themselves. She has mentored several young female athletes, promoted the importance of fitness through children’s exercise videos and fitness startups, and now works to help as many students as possible achieve their admissions goals.
Yosepha is also a six-time National Champion in Tae Kwon Do.
Schedule a free consultation
to find out how we can help you get accepted.
hbspt.forms.create({ portalId: “5109206”,formId: “86b53e9c-69d7-4dd9-9e2e-c23476e9a906”});
You May Also Be Interested In..
Sed ut perspiciatis unde omnis iste natus
#base-blurb-id-5d8bd0bab4b3b .base-blurb__card {
min-height: 1px;
background-color: rgba(255,255,255,1);
text-align: left;
border:1px solid rgba(0,0,0,0);
}
#base-blurb-id-5d8bd0bab4b3b .base-blurb__card__body__thumbnail {
background-image: url(‘https://newsite.ingeniusprep.com/wp/app/uploads/2018/09/881484382.png’);
}
#base-blurb-id-5d8bd0bab4b3b .base-blurb__card__body__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d8bd0bab4b3b .base-blurb__card__body__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d8bd0bab4b3b .base-blurb__card__body__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d8bd0bab4b3b .base-blurb__float__description {
text-align: left;
}
#base-blurb-id-5d8bd0bab4b3b .base-blurb__float__description__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d8bd0bab4b3b .base-blurb__float__description__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d8bd0bab4b3b .base-blurb__float__description__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d8bd0bab4b3b .base-blurb__float {
background-color: rgba(255,255,255,1);
}
How to Impress with your Business SchoolResumé (~50)
#base-blurb-id-5d8bd0bab4dc3 .base-blurb__card {
min-height: 1px;
background-color: rgba(255,255,255,1);
text-align: left;
border:1px solid rgba(0,0,0,0);
}
#base-blurb-id-5d8bd0bab4dc3 .base-blurb__card__body__thumbnail {
background-image: url(‘https://newsite.ingeniusprep.com/wp/app/uploads/2018/09/881484382.png’);
}
#base-blurb-id-5d8bd0bab4dc3 .base-blurb__card__body__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d8bd0bab4dc3 .base-blurb__card__body__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d8bd0bab4dc3 .base-blurb__card__body__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d8bd0bab4dc3 .base-blurb__float__description {
text-align: left;
}
#base-blurb-id-5d8bd0bab4dc3 .base-blurb__float__description__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d8bd0bab4dc3 .base-blurb__float__description__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d8bd0bab4dc3 .base-blurb__float__description__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d8bd0bab4dc3 .base-blurb__float {
background-color: rgba(255,255,255,1);
}
How to Impress with your Business School Resumé (~50)
#base-blurb-id-5d8bd0bab4e71 .base-blurb__card {
min-height: 1px;
background-color: rgba(255,255,255,1);
text-align: left;
border:1px solid rgba(0,0,0,0);
}
#base-blurb-id-5d8bd0bab4e71 .base-blurb__card__body__thumbnail {
background-image: url(‘https://newsite.ingeniusprep.com/wp/app/uploads/2018/09/881484382.png’);
}
#base-blurb-id-5d8bd0bab4e71 .base-blurb__card__body__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d8bd0bab4e71 .base-blurb__card__body__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d8bd0bab4e71 .base-blurb__card__body__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d8bd0bab4e71 .base-blurb__float__description {
text-align: left;
}
#base-blurb-id-5d8bd0bab4e71 .base-blurb__float__description__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d8bd0bab4e71 .base-blurb__float__description__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d8bd0bab4e71 .base-blurb__float__description__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5d8bd0bab4e71 .base-blurb__float {
background-color: rgba(255,255,255,1);
}
How to Impress with your Business School Resumé (~50)