Skip to main content

tips for prepare for interviews (phone and onsite)

Below are some tips that will help you prepare for interviews (phone and onsite):
  • The interviewer(s) will cover in 5-10 min:
    • Your resume and career trajectory: Will discuss projects and technologies listed on your resume along with your career interests.
    • Culture/team fit: Be prepared for situational and behavior questions. The interviewers are assessing:
      • If you are someone they can work with.  Try to connect with the interviewer and be collaborative.
      • Augments/brings something new to the team.  This is where you separate yourself from others.
      • Does well in an ambiguous environment.  We have very little documentation so knowing the questions to ask and who to ask is paramount for your success at Apple.
      • Is curious/inquisitive; asks further questions to understand the problem so you can create a more thought out solution that works.
      • Shows enthusiasm/passion for the work; it is not just a job but something you enjoy doing.  This can be demonstrated by what you like to do in your free time to improve upon your skills/knowledge.   EX: blogging, coding challenges/hackathons, attending/speaking at meetups/conferences, etc…
      • Your energy level and excitement for Apple/Product.  The interviewer is looking for someone who shows true interest not only in Apple but this specific team/product.  Be sure to do your research and explain what really interests you about this team/product, challenges, technologies, passion/interest for the space/product.  DO NOT say because Apple approached me, think about why you may actually consider a change for this team/Apple.

    • Role Specific Topics:

    • This will be a semi-technical conversation about your technical environment (cloud, tools using for virtualization, network-based storage, containerization, orchestration), scripting languages you are most comfortable with, along with your development/automation/tooling and criticality of projects you had an impact on.

    • TIPS:  This is not the time to discuss compensation.
      • In general the interviewer will be assessing your analytical thinking, business function knowledge, customer service orientation, inquisitiveness, innovation, problem solving, and communication.
      • Communication: Be clear and concise in your communication, manage your interview time wisely (sell yourself but also give the interviewer time to ask their questions as well).
      • Confidence: make eye contact, be confident but not overly
      • Finally - ask questions!  When a hiring manager or interviewer asks if you have any questions be sure to have at least 2-3  ready to go… (this is your opportunity to make sure this team/Apple is the right fit for you).  For additional question ideas try searching “Questions to ask during an interview”.

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...