How to Capitalize on the Admissions Interview: Advice from a Former Admissions Officer
Yorda
January 28, 2014
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’);
});
As a former Admissions Officer at the University of Rochester, I know that the admissions interview is a crucial factor in the decision to admit or reject an applicant. The interview is how you become not just another application on the stack, but a real person with potential. And most importantly, it’s the chance for you to get an Admissions Officer on your team who will go to bat for you during the decision-making part of the process. This is why it’s essential to capitalize on the admissions interview.
While conducting countless admissions interviews with prospective students, I witnessed mistakes as well as missed opportunities, here are a few tips on how to avoid both and capitalize on the admissions interview:
1) Don’t regurgitate your resumé: Having a solid resume is important (and we can help you with yours), but the interview is the time to bring out your personality and connect with the interviewer. Capitalize on the admissons interview by expanding on the 1 sentence description of your thesis, talking about activities that didn’t make the page limit cut-off, or explaining a GPA or test score anomaly.
2) Don’t let your resumé be your own worst enemy: There shouldn’t be anything on your resumé that you can’t talk about at great length. Have a concise, organized explanation for each activity, publication, or internship you have listed. Be careful about how you list your language proficiency- an interviewer may just speak French fluently and be ready to conduct part of the interview in French.
3) Don’t waste time: If you have an interests section on your resumé don’t list anything you can’t carry on a conversation about and are not genuinely interested in. By including something you don’t actually care about, you have missed a golden opportunity to connect with your interviewer and show them your knowledge and passion on a subject (and you won’t capitalize on the admissions interview). You never know if your interviewer is a fellow Russian literature enthusiast who wants to spend half the interview talking about Fyodor Dostoevsky’s search for truth in The Brothers Karamazov and Vladimir Nabokov’s insufferable protagonist in Lolita (yes, this actually happened to me once). And even if your interviewer doesn’t know the slightest thing about yoga or white water rafting, being able to explain what it is and why it interests you, is a way to show off your communicative and social skills.
4) Don’t let your surroundings get you into trouble: If your interview is in-person or over Skype should be dressed appropriately. If your interview is over Skype, don’t let the interviewer be able to see a messy room or inappropriate posters behind you. For Skype and phone interviews, make sure you are in an interview-conducive environment, meaning some place quiet: don’t have the television blaring in the background, put your cell phone on silent or do not disturb, and make sure those around you know that you are unavailable.
5) Don’t be late: Whether it’s an in-person, phone, or Skype interview make sure to be on time! If you are traveling to an in-person interview, visit the interview location the day before if possible and give yourself plenty of time to get there the day of, in case of traffic or public transportation delays. For phone interviews, I suggest giving the interviewer 2 contact numbers to reach you at- you won’t be able to capitalize on the admissions interview if your phone dies and you don’t have a back up!
The admissions interview is a great chance to continue crafting your personal narrative that you’ve already established through the rest of your application materials. Before your interview, you should have a plan for what you want to get across and find a way to work this into the conversation. I recommend conducting mock interviews in a realistic setting either by enlisting the help of family/friends or by utilizing the InGenius Prep interview services.
Tags :Interview Tips,Admissions Interview
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-1e59b36844dd92c5bb09a99c8a8daef9”).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_1e59b36844dd92c5bb09a99c8a8daef9() {
if( $( “#contact-form-1e59b36844dd92c5bb09a99c8a8daef9” ).valid() ){
function setLoader() {
jQuery(“.wrap-forms-loader”).show();
}
setLoader();
//console.log(this);
var form = document.querySelector(“#contact-form-1e59b36844dd92c5bb09a99c8a8daef9”).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-1e59b36844dd92c5bb09a99c8a8daef9")[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:
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-5e8504e692d01 .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-5e8504e692d01 .base-blurb__card__body__thumbnail {
background-image: url(‘https://newsite.ingeniusprep.com/wp/app/uploads/2018/09/881484382.png’);
}
#base-blurb-id-5e8504e692d01 .base-blurb__card__body__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e8504e692d01 .base-blurb__card__body__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e8504e692d01 .base-blurb__card__body__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e8504e692d01 .base-blurb__float__description {
text-align: left;
}
#base-blurb-id-5e8504e692d01 .base-blurb__float__description__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e8504e692d01 .base-blurb__float__description__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e8504e692d01 .base-blurb__float__description__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e8504e692d01 .base-blurb__float {
background-color: rgba(255,255,255,1);
}
How to Impress with your Business SchoolResumé (~50)
#base-blurb-id-5e8504e692f33 .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-5e8504e692f33 .base-blurb__card__body__thumbnail {
background-image: url(‘https://newsite.ingeniusprep.com/wp/app/uploads/2018/09/881484382.png’);
}
#base-blurb-id-5e8504e692f33 .base-blurb__card__body__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e8504e692f33 .base-blurb__card__body__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e8504e692f33 .base-blurb__card__body__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e8504e692f33 .base-blurb__float__description {
text-align: left;
}
#base-blurb-id-5e8504e692f33 .base-blurb__float__description__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e8504e692f33 .base-blurb__float__description__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e8504e692f33 .base-blurb__float__description__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e8504e692f33 .base-blurb__float {
background-color: rgba(255,255,255,1);
}
How to Impress with your Business School Resumé (~50)
#base-blurb-id-5e8504e692fd7 .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-5e8504e692fd7 .base-blurb__card__body__thumbnail {
background-image: url(‘https://newsite.ingeniusprep.com/wp/app/uploads/2018/09/881484382.png’);
}
#base-blurb-id-5e8504e692fd7 .base-blurb__card__body__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e8504e692fd7 .base-blurb__card__body__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e8504e692fd7 .base-blurb__card__body__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e8504e692fd7 .base-blurb__float__description {
text-align: left;
}
#base-blurb-id-5e8504e692fd7 .base-blurb__float__description__title {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e8504e692fd7 .base-blurb__float__description__label {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e8504e692fd7 .base-blurb__float__description__summery {
color: rgba(0,0,0,1);
}
#base-blurb-id-5e8504e692fd7 .base-blurb__float {
background-color: rgba(255,255,255,1);
}
How to Impress with your Business School Resumé (~50)