100 Common Job Interview Questions

本文提供了100个常见职位面试问题的解答指南,帮助求职者有效推销自己,增强面试信心。内容涵盖自我介绍、个人优势与劣势、职业目标与计划等关键话题,为求职者提供全面的面试准备策略。
http://www.engvid.com/english-resource/100-common-job-interview-questions/

Preparing for a job interview can make the difference between success and failure. The 100 common job interview questions below will help you market yourself more effectively and feel more confident on that important day. The questions have been organized by topic. Review the questions carefully and take time to create the best answers for you. You may even wish to write out your answers so you can refer to them in the future. Good luck!

Personal
Tell me about yourself.
What are your strengths?
The word strength refers to what you do well, your positive qualities or effective skills.
What are your weaknesses?
The word weakness refers to what you don’t do well, your negative qualities or skills.
What do you see as a major success in your life?
Major means important or big.
Describe a major disappointment in your life.
A disappointment is something you were looking forward to and didn’t happen.
What motivates you?
The word motivate means to give you the reason to do something, to inspire you, to encourage you.
What does success mean to you?
What are three of your greatest accomplishments?
The word accomplishment means an achievement, something you did well.
What are your plans for the future?
Have you done any volunteer work?
What are your hobbies?
What do you like to do in your spare time / free time?
Spare time means when you’re free, when you’re not working.
Where do you see yourself five years from now? Ten years from now?
Describe a time when you failed.
What is your favourite book / movie?
What do you do for fun?
What would you do if you won the lottery?
Educational
Tell me about your educational background.
What academic courses did you like the most / the least?
Which academic course did you find most difficult?
Do you have plans for further education?
Why did you choose your major?
Your major is your main area of specialization in university.
Professional
Why do you want this job?
Why should we hire you?
To hire means to recruit, or give someone a job.
Why are you the best person for the job?
Explain how you would be an asset to this company.
An asset is something valuable.
Why do you think you will be successful in this job?
What are your qualifications for this position?
Qualification means the educational and professional background or experience needed in a job.
What can you offer our company?
What do you know about this industry?
What is your personal mission statement?
Why do you think you’re suited for this position?
Suited means appropriate, a good match.
Describe your work ethic.
Your work ethic is your attitude towards work and behavior at work.
Describe your management style.
What are your short-term goals?
Short-term means in the near future.
What are your long-term goals?
Long-term means in the distant or far future.
Why did you choose this field?
Field means an area of work, such as computers, engineering or medicine.
Please describe your work experience.
Why do you want to work for our company?
What do you know about our company?
What is most important to you in a job?
Describe your previous jobs.
The word previous means what came or happened before.
Why did you leave your previous job?
What were your responsibilities in your previous position?
The word responsibility refers to what you are supposed to do, what you are in charge of.
What did you like the most about your last job?
What did you like the least about your last job?
What did you learn in your previous job?
Do you work well under pressure?
The word pressure means stress.
Are you punctual?
To be punctual means that to arrive on time, to not be late.
How long do you plan to stay in this job?
Can you multi-task?
To multi-task means to do many things at one time.
Describe your ideal job.
Ideal basically means perfect here.
How would your co-workers describe you?
How do you feel about learning new things?
Have you ever had trouble with a boss? How did you handle it?
What major problems or challenges have you faced?
Why did you resign?
Why were you fired?
Are you a risk-taker?
A risk-taker is someone who is willing to take chances.
What have you been doing since your last job?
What’s the best movie you’ve seen in the past year?
What’s the most interesting book you’ve read in the past year?
How soon can you start work?
Do you have any questions?
Job Specifics
Are you looking for full- or part-time work?
Are you looking for a day or night job?
Are you seeking a permanent or temporary position?
Can you work weekends?
Are you willing to work overtime?
Overtime means hours outside of regular work hours.
Can you work nights?
Are you willing to travel?
Are you willing to relocate?
To relocate means to move to another location.
Do you have a driver’s licence?
Do you like working with the public?
Do you like working with numbers?
How are your writing skills?
How’s your spelling?
What computer programs are you familiar with?
Do you know any foreign languages?
Have you worked in a multicultural environment before?
Multicultural means many cultures.
How do you relate to people from diverse cultures?
Diverse means different.
Salary
What are your salary expectations?
Salary expectation is how much money you think you will get.
What salary do you want to earn?
To earn means to make, to receive.
What kind of compensation are you looking for?
Compensation refers to salary plus benefits.
Leadership
Do you consider yourself a leader?
What leadership or managerial positions have you held?
Independence
Do you like working alone?
How well do you work independently?
How do you feel about working by yourself?
Teamwork
Are you a team player?
Do you work well with others?
What strengths would you bring to a team?
Do you prefer working on a team or by yourself?
References
May we contact your previous employers?
Can we contact your references?
References are people who are willing to talk about you, your abilities or your character.
Questions You Can Ask the Interviewer
If you were to offer me the job, how soon would you want me to start?
When could I expect to hear from you?
Are there any further steps in the interview process?
What are the major responsibilities of this position?
Are there possibilities for advancement?
Advancement means to move up in your job, to be offered a promotion or higher position.
### 关于51job爬虫实现的技术分析 #### 1. 编码问题处理 当尝试使用 `urllib2` 抓取51job的数据时,可能会遇到中文乱码的情况。这是因为目标网页可能采用了GZIP压缩或其他编码方式传输数据[^1]。为了应对这一情况,可以引入Python标准库中的 `gzip` 和 `io` 模块解压响应内容: ```python import gzip from io import BytesIO import urllib.request def fetch_and_decode(url): req = urllib.request.Request(url) req.add_header('Accept-Encoding', 'gzip') # 请求支持GZIP压缩的内容 response = urllib.request.urlopen(req) if response.info().get('Content-Encoding') == 'gzip': buf = BytesIO(response.read()) f = gzip.GzipFile(fileobj=buf) data = f.read() return data.decode('utf-8') else: return response.read().decode('utf-8') url = "https://www.51job.com" html_content = fetch_and_decode(url) print(html_content[:100]) # 打印前100字符验证 ``` 如果仍然无法正常解析页面内容,则需进一步确认HTML文档的实际编码格式。 #### 2. Selenium动态加载解决方案 由于51job的部分功能依赖JavaScript渲染页面,并且URL不会随交互行为改变,因此传统的静态HTTP请求难以满足需求[^2]。此时可采用Selenium工具模拟浏览器环境完成自动化操作并捕获最终呈现的DOM结构。 以下是基于Selenium的一个基础示例用于检索职位列表信息: ```python from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.chrome.service import Service as ChromeService from webdriver_manager.chrome import ChromeDriverManager driver = webdriver.Chrome(service=ChromeService(ChromeDriverManager().install())) try: driver.get("https://search.51job.com/") input_box = driver.find_element(By.ID, "kwdselectid") # 定位关键词输入框 input_box.send_keys("软件工程师") search_button = driver.find_element(By.CSS_SELECTOR, ".ush button") search_button.click() job_listings = [] while True: jobs = driver.find_elements(By.CLASS_NAME, "j_joblist") for job in jobs: title = job.find_element(By.TAG_NAME, "a").text.strip() company_name = job.find_element(By.CLASS_NAME, "company_name").text.strip() job_info = { "title": title, "company": company_name } job_listings.append(job_info) next_page_btn = driver.find_element(By.LINK_TEXT, "下一页 »") if not next_page_btn.is_enabled(): break next_page_btn.click() finally: driver.quit() for idx, item in enumerate(job_listings[:5]): print(f"{idx+1}. {item['title']} at {item['company']}") ``` 此脚本会启动一个无头模式下的Google Chrome实例访问指定站点执行搜索动作直至遍历所有可用的结果页数为止。 #### 3. 面试题库专项采集方案 除了常规的职业机会外,某些招聘平台还会提供丰富的面试经验分享区供用户参考学习。针对这类特殊资源类型的定向挖掘工作同样可以通过定制化的XPath表达式或者CSS选择器定位到具体的问答区域进而批量下载保存下来作为后续研究素材之用[^3]。 例如下面这段伪代码展示了如何选取包含有典型技术考核要点的一系列条目: ```python interview_questions_area = driver.find_element(By.XPATH, "//div[@class='module-interview']") question_items = interview_questions_area.find_elements(By.TAG_NAME, "li") questions_data = [{"q": q.text.split("\n")[0], "answers": []} for q in question_items] # 假设每个问题下方还有多个对应的解答选项... for i, qa_set in enumerate(zip(question_items)): answers_container = qa_set[0].find_element(By.CLASS_NAME, "answer-options") options = [opt.text for opt in answers_container.find_elements(By.TAG_NAME, "label")] questions_data[i]["answers"].extend(options) with open("collected_interviews.json", mode="w+", encoding="utf-8") as file_handler: json.dump(questions_data, fp=file_handler, ensure_ascii=False, indent=4) ``` 以上仅作示意用途,在实际部署之前还需要考虑更多细节因素比如反爬机制规避策略以及合法合规性审查等问题。 ---
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值