Skip navigation
Inward Revenue Consulting Logo

Want to transform your recruitment?

Contact us now

The benefit of insight. The ability to deliver.

Knowledge

How to Prepare for a Job Interview in Sales

How to Prepare for a Job Interview in Sales

In this video, Jonny asks the question ‘what is an interview?’

A lot of candidates we work with either don’t give this question enough thought or analyse it in too much detail so much so that it becomes complicated and overwhelming.

A job interview is simple. It’s a two way process in which both parties go through the procurement process to seek a new revenue generations system.

And because of this, the stakes are big for both parties and getting it wrong can cost a lot of money.

Candidates who do well acknowledge that it’s a scary process for the hiring manager and use the interview to demonstrate how they are the right candidate for the job in a way that will put the hiring manager at ease.

Here’s how.

All knowledge
[code_snippet id=5 format]
document.addEventListener( 'wpcf7submit', function( event ) { if ( '654' == event.detail.contactFormId ) { var inputs = event.detail.inputs; console.log(inputs); for ( var i = 0; i < inputs.length; i++ ) { if ( 'Title' == inputs[i].name ) { var post_title = inputs[i].value; } if ( 'FirstName' == inputs[i].name ) { var first_name = inputs[i].value; } if ( 'LastName' == inputs[i].name ) { var last_name = inputs[i].value; } if ( 'Email' == inputs[i].name ) { var email = inputs[i].value; } if ( 'Phonenumber' == inputs[i].name ) { var phone_number = inputs[i].value; } if ( 'LinkedinProfile' == inputs[i].name ) { var linked_profile = inputs[i].value; } if ( 'lookingforrole' == inputs[i].name ) { var looking_role = inputs[i].value; } if ( 'CurrentBasicSalary' == inputs[i].name ) { var currentsal = inputs[i].value; } } var ajaxurl = jQuery('#ajaxurl').val(); var datasend = { action : 'save_active_data', post_title : post_title, first_name : first_name, last_name : last_name, email : email, phone_number : phone_number, linked_profile : linked_profile, looking_role : looking_role, currentsal : currentsal, } jQuery.ajax( { url: ajaxurl, type: 'post', dataType: 'json', data: datasend, success( data ) { console.log(data); }, } ); } }, false );