3 Scenarios of What to Do While Waiting For Your MCAT Score

Read time: 6 mins
Share post
Jump to

3 Scenarios While Waiting For Your MCAT Score

Deborah









$(‘.facebook’).hover(function () {
$(‘.fb-icon’).toggleClass(‘hide’);
$(‘.fb-hover-icon’).toggleClass(‘hide’);
});
$(‘.linkedin’).hover(function () {
$(‘.linkedin-icon’).toggleClass(‘hide’);
$(‘.linkedin-hover-icon’).toggleClass(‘hide’);
});

Submitting your AMCAS application as early as possible is highly recommended because many medical schools operate on rolling admissions.  One reason an you might delay your AMCAS submission is because you are waiting for your MCAT score or retaking your exam and want to know your score before committing to the current application cycle.  For this current application cycle, a repeat MCAT exam should be taken by August to improve your chances of admission.

Let’s look at how this plays out in three different scenarios:

Scenario 1:  You take your repeat MCAT in August and are waiting for your MCAT score to submit your AMCAS application. You receive your score one month later and submit your AMCAS at the end of September.  It takes up to 6 weeks to be verified. That means that an admissions committee will not see your application until AT LEAST mid October.  By mid October some schools have already interviewed and admitted their first applicants.

The downside of waiting for your MCAT score in this scenario is that you are now competing for a more limited number of spots at each medical school and medical schools will become more selective the fewer spots they have available to offer.

Scenario 2: You take your repeat MCAT in August and you submit your AMCAS application in June.  Your application will be verified by July and sent to medical schools.  The schools will not review your application until it is complete. When you receive your MCAT grade in September it will automatically be sent to the medical schools that you designated and your application will be ready for review in September, one month earlier than in scenario one. BIG caution: if you do not indicate on your AMCAS application that you are waiting for your MCAT score from your repeat exam, you risk medical schools making a decision on your application with your original MCAT score.

The downside in this scenario is that if you do not perform well on your retake and you decide to withdraw your application after you receive your score you will lose the money you spent on applications. Once your AMCAS application has been processed you will also need to contact each medical school directly to withdraw your application.

Scenario three:  You submit your AMCAS application approximately one week before your MCAT retake. This scenario banks on the fact that your application may still be under review by AMCAS when you receive your MCAT score. If you do not get the score you want you can still  withdraw your AMCAS application when it is in the “Ready for review”, “Waiting for transcripts” or “Returned” status.  Once it is in “Processed” status you can no longer withdraw your application.  If you choose to withdraw your application you will lose the initial processing fee which is non-refundable, but you will receive refunds for each school you designated if their deadlines have not passed.

The downside in this scenario is that you may miss the window where you can withdraw your application and end up losing your entire application fee. Also, keep in mind that withdrawing your application is final and you will no longer be able to apply for the current application year.

Need more advice on what to do when waiting for your MCAT score, drop us an email at info@ingeniusprep.com and we can help you get through this application cycle.

Tags :medical school admissions,medical school personal statement,AMCAS application,med school admissions,med school personal statement,re-taking the MCAT,submitting your AMCAS,MCAT score

https://newsite.ingeniusprep.com/wp/app/uploads/2018/09/blog-feaature.png

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-28fa6dc28d6eb25ee4a2daa5482632b3”).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_28fa6dc28d6eb25ee4a2daa5482632b3() {
if( $( “#contact-form-28fa6dc28d6eb25ee4a2daa5482632b3” ).valid() ){
function setLoader() {
jQuery(“.wrap-forms-loader”).show();
}
setLoader();
//console.log(this);
var form = document.querySelector(“#contact-form-28fa6dc28d6eb25ee4a2daa5482632b3”).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-28fa6dc28d6eb25ee4a2daa5482632b3")[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; } https://newsite.ingeniusprep.com/wp/app/uploads/2018/09/Mask-1.png
By:

Clifford Jefferson

Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Nam libero tempore, cum soluta nobis est eligendi optio cumqu (~260)

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-5e83a54bdcb15 .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-5e83a54bdcb15 .base-blurb__card__body__thumbnail {
background-image: url(‘https://newsite.ingeniusprep.com/wp/app/uploads/2018/09/881484382.png’);
}
#base-blurb-id-5e83a54bdcb15 .base-blurb__card__body__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e83a54bdcb15 .base-blurb__card__body__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e83a54bdcb15 .base-blurb__card__body__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e83a54bdcb15 .base-blurb__float__description {
text-align: left;
}
#base-blurb-id-5e83a54bdcb15 .base-blurb__float__description__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e83a54bdcb15 .base-blurb__float__description__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e83a54bdcb15 .base-blurb__float__description__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e83a54bdcb15 .base-blurb__float {
background-color: rgba(255,255,255,1);
}

How to Impress with your Business SchoolResumé (~50)


#base-blurb-id-5e83a54bdcdad .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-5e83a54bdcdad .base-blurb__card__body__thumbnail {
background-image: url(‘https://newsite.ingeniusprep.com/wp/app/uploads/2018/09/881484382.png’);
}
#base-blurb-id-5e83a54bdcdad .base-blurb__card__body__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e83a54bdcdad .base-blurb__card__body__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e83a54bdcdad .base-blurb__card__body__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e83a54bdcdad .base-blurb__float__description {
text-align: left;
}
#base-blurb-id-5e83a54bdcdad .base-blurb__float__description__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e83a54bdcdad .base-blurb__float__description__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e83a54bdcdad .base-blurb__float__description__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e83a54bdcdad .base-blurb__float {
background-color: rgba(255,255,255,1);
}

How to Impress with your Business School Resumé (~50)


#base-blurb-id-5e83a54bdce5a .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-5e83a54bdce5a .base-blurb__card__body__thumbnail {
background-image: url(‘https://newsite.ingeniusprep.com/wp/app/uploads/2018/09/881484382.png’);
}
#base-blurb-id-5e83a54bdce5a .base-blurb__card__body__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e83a54bdce5a .base-blurb__card__body__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e83a54bdce5a .base-blurb__card__body__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e83a54bdce5a .base-blurb__float__description {
text-align: left;
}
#base-blurb-id-5e83a54bdce5a .base-blurb__float__description__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e83a54bdce5a .base-blurb__float__description__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e83a54bdce5a .base-blurb__float__description__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e83a54bdce5a .base-blurb__float {
background-color: rgba(255,255,255,1);
}

How to Impress with your Business School Resumé (~50)

Webinars You Might Like

Pursue Your Reach Schools with InGenius Prep and Increase Your Admissions Chances

Contact our Enrollment Team to learn more about our services and how we can lead your admissions journey.