L362 When to Bring up Salary During the Job Interview Process
Money is an awkward topic of conversation for many professionals—even more so when you’re busy trying to make a positive impression on a prospective employer. Luckily, following a few simple guidelines can help you make sure the numbers add up without coming across like you’re all about the bottom line.
For starters, the focus early in the interviewing process should be on building awareness and relationships, and convincing employers that you’re the right person for the job. While courting them, keep the focus on making a good impression. If you shift the focus of conversation to finances and away from your key selling points before others have bought into the concept of you coming on board, you run the risk of spooking prospective employers, who may feel that the cart is being put before the horse, or risk pricing yourself out of an opportunity before you’ve had a chance to make a compelling case for yourself. It’s wiser to wait to broach the subject of money until you’ve had a chance to set yourself apart from other job seekers and line up some allies and advocates.
Once you’ve had a minimum of a couple interviews, and received signs that the company is interested (inquiries about references, start dates, and future interviews with specific higher-ups can be helpful indicators), you can begin to bring up the subject of money. Even then, it should be considered a secondary topic of conversation. More important during this phase of the hiring process is to convince potential employers that you’re excited about the role and opportunity, and motivated by factors other than cold, hard cash. Now is a good time to talk about the responsibilities that might come with the position, types of projects you’d be contributing to, opportunities for growth inside the organization, etc. Having established your genuine interest in the role and firm, you can then transition into discussions about salary.
A helpful way to broach the subject is to ask several questions about the position you’ve applied for, such as who you’d be working with, and on what kind of schedule, making compensation just one of many subjects of discussion on the list. Alternately, you can wait until the employer takes the lead and floats either the topic or a specific number. Do be prepared prior to all interviews, however. You should have a preferred salary range in mind (online searches, compensation reports, surveys, and discussions with peers can all help in your research) so that you’re ready to dive in no matter when the subject gets raised.
Likewise, be prepared to negotiate: It’s important to do your homework so you know the facts up front and don’t price yourself too low or out of an opportunity altogether. Demonstrate a willingness to be flexible and be prepared to stick to your guns. Knowing what you’re worth; being able to talk specifics in terms of your strengths, skills, and experience; having facts at-hand that definitively demonstrate the benefits that you bring to the table—all of these are things that can help you command greater value.
And remember, from better benefits to more flexible work hours and greater learning opportunities, there are many ways to structure a package that works for you, even if you’re offered a lower starting salary than you were hoping for. And before you pull the trigger and accept a job offer, make sure to get anything you’ve negotiated in writing.
Granted, money isn’t everything when it comes to building a fulfilling career. But by applying a little more strategy to the hiring process, you can help get the question of dollars to make more sense for all parties involved.
L362 When to Bring up Salary During the Job Interview Process的更多相关文章
- 【转】DBA需要的技能
dba掌握的技术 1. os : linux,solaris或其他unix起码要一种 2. bash (不精通也要熟) LINUX与UNIX SHELL编程 ...
- COMMON INTERVIEW QUESTIONS
1. What do you see yourself doing five years from now? 2. What motivates you to put forth your great ...
- 【转】How to hire——创业公司应该如何招人
How to hire After startups raise money, their next biggest problem becomes hiring. It turns out it’ ...
- java.lang.reflect操作对象属性(域)的值
package reflect; import java.lang.reflect.Constructor; import java.lang.reflect.Field; import java.l ...
- L295 how to turn down a job but keep a good relationship with the hiring manager
Let’s say you’re on the hunt for a new job. Three interviews in, you realize it’s not the place for ...
- (11)Are you a giver or a taker?
https://www.ted.com/talks/adam_grant_are_you_a_giver_or_a_taker/transcript 00:00I want you to look a ...
- GuozhongCrawler看准网爬虫动态切换IP漫爬虫
有些关于URL去重的方面代码没有提供,须要自己去实现.主要这里提供思路 项目地址:http://git.oschina.net/woshidaniu/GuozhongCrawler/tree/mast ...
- L365
When I started my company nine years ago, I was a young, inexperienced founder without much capital. ...
- Spring Boot2 系列教程(九)Spring Boot 整合 Thymeleaf
虽然现在慢慢在流行前后端分离开发,但是据松哥所了解到的,还是有一些公司在做前后端不分的开发,而在前后端不分的开发中,我们就会需要后端页面模板(实际上,即使前后端分离,也会在一些场景下需要使用页面模板, ...
随机推荐
- How Many Zeroes? LightOJ - 1140
#include<stdio.h> #include<string.h> #include<math.h> #include<time.h> #incl ...
- leecode第二百一十七题(存在重复元素)
class Solution { public: bool containsDuplicate(vector<int>& nums) { set<int> s; for ...
- prometheus告警插件-alertmanager
prometheus本身不支持告警功能,主要通过插件alertmanage来实现告警.AlertManager用于接收Prometheus发送的告警并对于告警进行一系列的处理后发送给指定的用户. pr ...
- Mittag-Leffer函数, Matlab内部函数
Mittag-Leffer函数: $E_{\alpha,\beta}(x) = \sum\limits^{\infty}_{k=0} \frac{x^k}{ \Gamma( \alpha k + \b ...
- Spring的事务初见
一.事务的特性 原子性: 事务是最小的执行单位,不允许分割.事务的原子性确保动作要么全部完成,要么完全不起作用: 一致性: 执行事务前后,数据保持一致: 隔离性: 并发访问数据库时,一个用户的事物不被 ...
- Java JTable视图窗口滚动并定位到某一行
java swing编程中需要和数据库打交道并用表格将数据展示出来,如果数据太多,可能显示窗口如下 这时数据太多就需要拖动垂直滚动条才能看到下面的数据,那如果我现在有这样一个需求,我希望往数据库里插入 ...
- jquery等待特定元素加载再执行相关函数
jQuery.fn.wait = function (func, times, interval) { var _times = times || 100, //100次 _interval = in ...
- lockable JS function,解锁操作之前,不能重复操作
(function () { var ed = []; window.Lockable = function (lockF, options) { if (!arguments.length) { v ...
- 使用Github Composer Packagist编写及发布扩展包
1.在github中创建自己的仓库,然后本地clone,初始化composer init ,在composer.json中增加autoload "autoload": { &quo ...
- 浏览器与WEB服务器交互
问题:打开浏览器,在地址栏输入url到页面展现,整个过程发生了什么? 图示: 步骤: 1 用户输入网址,包括协议和域名. 2 浏览器先查找自身缓存有没有记录,没有的话再找操作系统缓存. 3 当浏览器在 ...