Technician

  Home  Technical  Technician


“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

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.

 138 views

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.

 139 views

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.

 157 views

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.

 156 views

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.

 151 views

26⟩ Explain me an example of when you worked with a team?

Collaboration and communication skills are invaluable to the productivity and flow of a work environment, so this is a critical example-based question. Employers want to see the potential dynamic between you and your coworkers, and your example will give them an idea of how that interaction will develop. Focus and elaborate on an example that highlights your collaborative skills, your individual role within the greater team, and how you communicated effectively within your team dynamic.

 126 views

27⟩ Tell me do you know anyone at our organization?

Employers may be interested in knowing whether or not you have connections to the organization/company already, and if they should be particularly aware of these existing relationships, but be advised—they may reflect well on your status as an applicant if they have recommended you for the position, but if you are in the unfortunate circumstance of knowing an employee who you know is not particularly doing well at the organization, the opposite effect may occur. Regardless, it is important to be honest and disclose any relationships. An interviewer may be harmless in posing this question, and could be just curious.

 166 views

28⟩ Explain me why do you think you are qualified for this position?

This should be an easy question to answer. You wouldn’t have applied if you didn’t think you were qualified for the position. It’s important to quickly address how you meet the basic requirements for the internship and then expand upon how your strengths and experiences make you ideal for the position. This is a great opportunity for you to stand out from other applicants and make a case for why they should choose you. You’re more than qualified for the position; you’re ideal.

 130 views

30⟩ Tell me in loading programs into memory, what is the difference between load-time dynamic linking and run-time dynamic linking?

For load-time dynamic linking: Load module to be loaded is read into memory. Any reference to a target external module causes that module to be loaded and the references are updated to a relative address from the start base address of the application module.

With run-time dynamic loading: Some of the linking is postponed until actual reference during execution. Then the correct module is loaded and linked.

 176 views

31⟩ Explain me what is cycle stealing?

We encounter cycle stealing in the context of Direct Memory Access (DMA). Either the DMA controller can use the data bus when the CPU does not need it, or it may force the CPU to temporarily suspend operation. The latter technique is called cycle stealing. Note that cycle stealing can be done only at specific break points in an instruction cycle.

 144 views

32⟩ Do you know the concept of Reentrancy?

It is a useful, memory-saving technique for multiprogrammed timesharing systems. A Reentrant Procedure is one in which multiple users can share a single copy of a program during the same period. Reentrancy has 2 key aspects: The program code cannot modify itself, and the local data for each user process must be stored separately. Thus, the permanent part is the code, and the temporary part is the pointer back to the calling program and local variables used by that program. Each execution instance is called activation. It executes the code in the permanent part, but has its own copy of local variables/parameters. The temporary part associated with each activation is the activation record. Generally, the activation record is kept on the stack.

Note: A reentrant procedure can be interrupted and called by an interrupting program, and still execute correctly on returning to the procedure.

 142 views

33⟩ Finally, do you have any question to ask me?

I'll finish the way I started, with one of the most common questions asked in interviews. This directly relates to the research you've done on the company and also gives you a chance to show how eager and prepared you are. You'll probably want to ask about benefits if they haven't been covered already. A good generic one is "how soon could I start, if I were offered the job of course." You may also ask what you'd be working on. Specifically, in the role you're applying for and how that affects the rest of the company. Always have questions ready, greeting this one with a blank stare is a rotten way to finish your interview. Good luck and happy job hunting.

 144 views

34⟩ Explain me what you know about this company?

Do your homework before you go to any interview. Whether it's being the VP of marketing or the mailroom clerk, you should know about the company or business you're going to work for. Has this company been in the news lately? Who are the people in the company you should know about? Do the background work, it will make you stand out as someone who comes prepared, and is genuinely interested in the company and the job.

 152 views

35⟩ Explain would you rather work for money or job satisfaction?

It's not a very fair question is it? We'd all love to get paid a Trump-like salary doing a job we love but that's rare indeed. It's fine to say money is important, but remember that NOTHING is more important to you than the job. Otherwise, you're just someone looking for a bigger paycheck.

 141 views

37⟩ Do you know what is the Translation Lookaside Buffer (TLB)?

In a cached system, the base addresses of the last few referenced pages is maintained in registers called the TLB that aids in faster lookup. TLB contains those page-table entries that have been most recently used. Normally, each virtual memory reference causes 2 physical memory accesses- one to fetch appropriate page-table entry, and one to fetch the desired data. Using TLB in-between, this is reduced to just one physical memory access in cases of TLB-hit.

 133 views

38⟩ Explain me what are demand-paging and pre-paging?

With demand paging, a page is brought into memory only when a location on that page is actually referenced during execution. With pre-paging, pages other than the one demanded by a page fault are brought in. The selection of such pages is done based on common access patterns, especially for secondary memory devices.

 160 views

40⟩ Explain me what working environment are you looking for?

Hopefully you’ve done some research and you know the company only has 10 employees or it has a development team of 150. If you’re moving from large to small or vice versa it’s probably good to show that you know what you might be in for. If you like a nice subsidised canteen and powering your machine down at 5:30pm, then a 10 employee company might not be for you. Be prepared to talk about the environment you’re expecting and how environments you’ve experienced in the past have worked. How do you see yourself fitting in? Do you understand how IT projects tend to work in smaller or larger development teams?

 147 views