Technician Interview Preparation Guide
Download PDF

Technician related Frequently Asked Questions in various Technician job interviews by interviewer. The set of questions here ensures that you offer a perfect answer posed to you. So get preparation for your new job hunting

121 Technician Questions and Answers:

Table of Contents

Technician Interview Questions and Answers
Technician Interview Questions and Answers

1 :: So, tell us something about yourself?

I'd be very surprised if you haven't been asked this one at every interview. It's probably the most asked question because it sets the stage for the interview and it gets you talking. Be careful not to give the interviewer your life story here. You don't need to explain everything from birth to present day. Relevant facts about education, your career and your current life situation are fine.

2 :: Explain me what type of work environment do you prefer?

When an interviewer poses this question, he/she may be attempting to assess how well you would integrate into the work environment. However, they will likely expect your answer to include a description that applies to or embodies the atmosphere of their workplace. Common terms that can be used to describe such environments include “professional” or “casual,” “open” or “private,” and “fast-paced” or “relaxed,” among others. It may also help to look into how other similar work environments are described, so that you can use comparable terminology. Avoid superficial and general descriptions, and be ready to justify your reasoning well.

3 :: Explain me have you had previous internship experience? Why or why not?

If you have had prior experience at another internship, reflect upon the experiences you had then and think about what you learned there—what takeaways can now be applied to this new opportunity? If you haven’t had internship experience, be prepared to honestly answer why you’re seeking your first internship now.

4 :: Explain me what motivates you to do a good job?

The answer to this one is not money, even if it is. You should be motivated by life's noble pursuits. You want recognition for a job well done. You want to become better at your job. You want to help others or be a leader in your field.

5 :: So, explain me now why I should hire you?

As I'm sure you know, "because I'm great" or "I really need a job" are not good answers here. This is a time to give the employer a laundry list of your greatest talents that just so happen to match the job description. It's also good to avoid taking potshots at other potential candidates here. Focus on yourself and your talents, not other people's flaws.

6 :: Tell me what clients or sectors have you worked with in the past?

Technicians can work in any industrial sector. But it is natural for a technician to work with a limited category of customers. So just talk about yourself and try to provide information relevant to the interview. Describe your job in general (hardware store and repair shop, IT companies, etc.). List a few specific tasks you usually do, such as visiting private homes to repair minor problems on the spot, or installing and maintaining software and hardware security in the companies of a specific district.

7 :: Tell me what is meant by arm-stickiness?

If one or a few processes have a high access rate to data on one track of a storage disk, then they may monopolize the device by repeated requests to that track. This generally happens with most common device scheduling algorithms (LIFO, SSTF, C-SCAN, etc). High-density multisurface disks are more likely to be affected by this than low density ones.

8 :: Explain me in the context of memory management, what are placement and replacement algorithms?

Placement algorithms determine where in available real-memory to load a program. Common methods are first-fit, next-fit, best-fit. Replacement algorithms are used when memory is full, and one process (or part of a process) needs to be swapped out to accommodate a new program. The replacement algorithm determines which are the partitions to be swapped out.

9 :: Explain me is Windows NT a full blown object oriented operating system? Give reasons?

No Windows NT is not so, because its not implemented in object oriented language and the data structures reside within one executive component and are not represented as objects and it does not support object oriented capabilities.

10 :: Explain me what are the sub-components of I/O manager in Windows NT?

☛ Network redirector/ Server
☛ Cache manager.
☛ File systems
☛ Network driver
☛ Device driver

11 :: Tell me can we go over your resume?

Going over your resume is a great way to showcase your ability to discuss your professional experiences, and is an excellent opportunity to market yourself. Given that this question assesses how well you know your resume, confidently elaborating on prior experiences in detail is key. This question is also likely evaluating your ability to communicate concisely, so avoid droning on and on.

12 :: Explain what were your favorite/least favorite classes? Why?

When employers ask this question, they’re trying to get a feel for your interests within your major. While pursuing a general field is one thing, it is valuable to them to see what you are particularly invested in, what areas pique your curiosity the most, and what motivates you. Giving your interviewer a list of classes is one thing, but employers probably don’t care so much about the list of the classes as they do about why you chose the classes. The critical aspect of the question is to give your interviewer a sense of what you strive to accomplish and actively seek to gain in your academic environment.

13 :: Tell me did you ever quit a job or a project? Why?

When an interviewer poses this question, he/she may be trying to determine what sort of jobs or projects you find disagreeable, and the exact reasons for why you think so. Be honest when replying, and give specific reasons that provide insight into your rationale for backing out of such commitments.

14 :: Tell us why are you looking (or why did you leave you last job)?

This should be a straightforward question to answer, but it can trip you up. Presumably you are looking for a new job (or any job) because you want to advance your career and get a position that allows you to grow as a person and an employee. It's not a good idea to mention money here, it can make you sound mercenary. And if you are in the unfortunate situation of having been downsized, stay positive and be as brief as possible about it. If you were fired, you'll need a good explanation. But once again, stay positive.

15 :: Explain me about salary. What are you looking for?

Run for cover! This is one tricky game to play in an interview. Even if you know the salary range for the job, if you answer first you're already showing all your cards. You want as much as possible, the employer wants you for as little as you're willing to take. Before you apply, take a look at salary.com for a good idea of what someone with your specific experience should be paid. You may want to say, "well, that's something I've thought long and hard about and I think someone with my experience should get between X & Y." Or, you could be sly and say, "right now, I'm more interested in talking more about what the position can offer my career." That could at least buy you a little time to scope out the situation. But if you do have a specific figure in mind and you are confident that you can get it, I'd say go for it. I have on many occasions, and every time I got very close to that figure (both below and sometimes above).

16 :: Explain me how do you keep your technology skills current?

Has the candidate taken online classes, or do they spend some of their spare time coding or troubleshooting technology issues? Have they taken on work projects in areas of tech they want to learn more about?

17 :: Do you know belady's Anomaly?

Also called FIFO anomaly. Usually, on increasing the number of frames allocated to a process virtual memory, the process execution is faster, because fewer page faults occur. Sometimes, the reverse happens, i.e., the execution time increases even when more frames are allocated to the process. This is Belady's Anomaly. This is true for certain page reference patterns.

18 :: Tell me what are the typical elements of a process image?

User data: Modifiable part of user space. May include program data, user stack area, and programs that may be modified.

User program: The instructions to be executed.

System Stack: Each process has one or more LIFO stacks associated with it. Used to store parameters and calling addresses for procedure and system calls.

Process control Block (PCB): Info needed by the OS to control processes.

19 :: Do you know what is busy waiting?

The repeated execution of a loop of code while waiting for an event to occur is called busy-waiting. The CPU is not engaged in any real productive activity during this period, and the process does not progress toward completion.

20 :: Explain and list out some reasons for process termination?

☛ Normal completion
☛ Time limit exceeded
☛ Memory unavailable
☛ Bounds violation
☛ Protection error
☛ Arithmetic error
☛ Time overrun
☛ I/O failure
☛ Invalid instruction
☛ Privileged instruction
☛ Data misuse
☛ Operator or OS intervention
☛ Parent termination.

21 :: Tell me why did you make decision X in your code challenge submission?

The very fact you’re interviewing face-to-face means you passed the code challenge, the next step is to make sure you’ve come prepared with a rationale for the decisions you made and be ready to talk them through. “Oh, I wrote that? I don’t remember”, could lead to some difficult moments. While it’s unlikely you’ll be expected to write out perfect code on a whiteboard (many developers use IDEs and this is a reasonable mitigation for imperfect syntax), being able to justify your choices and the ability to rationalise and compare alternative solutions is particularly important in agile development teams.

22 :: Tell me why are you interested in this internship?

Eloquently communicating your reasons for applying to this particular internship is crucial. You must demonstrate that you are interested and ready to invest your time into such an opportunity. Be specific about your goals and expectations, discuss how you believe your qualifications are in-line with those required of the position, and be ready to explain why you chose this particular company when applying.

23 :: Tell us what qualities do you think will make one successful in this internship?

Think about the qualities that you possess, but in the context of the internship. Remember those strengths you highlighted earlier? Bring them up again. If you haven’t gotten the strengths question, this is your chance to speak directly to the qualities that make you a strong candidate. A strong, confident answer to this question is key to the interview.

24 :: Tell me a situation where you taught a concept to a peer, co-worker, or other person?

It is a feat in itself to be an expert in your own field, but the ability to pass that knowledge to others effectively is an even greater one. Employers are interested in seeing whether your knowledge can extend to others, given that you will almost always have to collaborate with others in a typical work environment. Being able to give a specific example in which you were able to successfully teach your skills to others reinforces the idea that you are both extremely knowledgeable and that your contributions will not be confined to what you, as one person, contributes to the organization/company, but will also encompass those of others who have learned from you.

25 :: Explain an example of a creative piece of work?

If you have a portfolio of your creative work, now's the time to show it. Select a piece that you are particularly proud of, and be prepared to discuss its creation. Simply showing your work is typically not a sufficient response to this question—the emphasis is on your ability to explain the process and methodology that went into creating your piece.