Systems Engineer Interview Questions

Systems engineers work closely with systems analysts to maintain a company's IT system by developing the operating systems that run computers. Expect to be asked a variety of technical questions that will test your knowledge of how computer systems work. Employers prefer candidates with a bachelor's degree in an engineering field and previous experience with technology.

31,267 Systems Engineer interview questions shared by candidates

Top Systems Engineer Interview Questions & How to Answer

Here are three top systems engineer interview questions and tips on how to answer them:

Question No. 1: Describe a previous systems engineering project you worked on. What was your role?

How to answer: This question gives you a chance to talk about your experience and accomplishments. If possible, talk about a project that you completed before the deadline or one where you exceeded the client's expectations. Use numbers and statistics to quantify your accomplishments.

Question No. 2: Have you created a disaster recovery plan for a company? What are the most important factors in a successful plan?

How to answer: Systems engineers often create backup systems and disaster recovery plans designed to survive a variety of different scenarios. Talk about how disaster recovery plans should consider a business's physical and electronic assets and its ability to deliver customer service after damage from storms, fires or other events.

Question No. 3: Imagine you are working on a major project and there is a conflict between two technical teams. How would you resolve it?

How to answer: Systems engineers often work with multiple technology teams, and leadership skills such as resolution of disagreements are important. Showcase these skills by discussing how you would handle a personal disagreement between two colleagues, a conflict about business procedures or decisions, and other problems. You can also talk about arguments that you helped resolve between colleagues at your previous job.

Top Interview Questions

Sort: Relevance|Popular|Date
Cloudreach
Cloud Systems Engineer was asked...25 November 2015

Hoeveel manieren kun je bedenken om een naald in een hooiberg te vinden?

19 Answers

The answer to all questions is 42

Waarom wil je de naald vinden? Weet je zeker dat je een naald zoekt? Wie heeft de naald daar neergelegd? Waarom wil je meerdere manieren weten? Wat is je doel? Less

Ik zou naar de supermarkt gaan en een nieuwe naald kopen. Dat is een stuk sneller en makkelijker. Less

Show more responses
Infosys

I thought the interview was all about communication skill... no c c++ java.. no unanswerable questions... no domination... quite cool... he had to see me speaking confidently with out the bias of fear r something else... so he kept the interview cool... of-course, i have tried my best for that... You will be almost selected if u pass the written exam... provided with acceptable communication levels and confidence.. no need of Hollywood level speed or verbal skills... just convey your matter in a cool and simple way.. Take some care to protect your character by answering with contradiction or domination.... if done so.. u have got yourself a job at Infosys...

12 Answers

it was really usefully .thanks

its asuch a important information ......... thank you .............

really helpfull information....thank u:)

Show more responses
Intel Corporation

You have 8 pennies, 7 weight the same, one weighs less. you also have a judges scale. Find the one that weighs less in less than 3 steps.

13 Answers

A better answer: Split the 8 pennies into 3 groups of 3,3,2 pennies. Weight the first two groups of 3 pennies each. Case 1) - They weight the same. Therefore, take third group of 2 pennies and find the lighter coin. Case 2) Group 1 weights more than Group 2. Take group 2 (3 pennies) and pick any 2 out of 3. If they weight the same, then the third penny is lighter. Answer is trivial if they don't weight the same. It works for any scenario. Always split the groups in 3. Less

Neil has it right. Dave - the question says less than three steps.

I Can do it in one step: Look at the year on the pennies. If 7 pennies weigh the same it means that all 7 were manufactured either before or after 1982, when the mint changed the composition of the coin from solid copper to copper with a zinc core. the one that weighs differently was minted on the opposite side of 1982 as the 7 other pennies. Less

Show more responses
Tata Consultancy Services

What will you do when your girl friend is getting married on the same day as a important client meeting?

11 Answers

yes, firstly i will do marriage

I would rather invite my client ti my wedding. afrer giving him a feast will set up the meeting there itself. Less

First I have one question my girlfriend getting married me or another person??? Suppose she getting married another person my answer is I feel 💯 because ture feeling and then I attended client meeting successfully ... Why because she think am not important person in her life .. so that reason of she getting married another person... I think client meeting more important .. because my client give me a full trust with me . Less

Show more responses
Google

How many trailing zeros are in the number 5! (5 factorial)?

8 Answers

This sounds like one geared not so much towards getting the right answer, but getting to it the right way. If you think a bit and say "one", the interviewer will know you did it the brute-force way, doing the math. You'd get at the answer faster, and probably impress them more, if you think instead how many times a ten will be produced in doing that math, rather than what the actual result of the math will be. Less

http://www.purplemath.com/modules/factzero.htm

To generate a zero, we need a (5,2) factor pair. For any given number N, we have at least N/2 number of multiples 2, so the number of zeroes can be determined by the count of numbers that have 5 as a factor (i.e we have more 2s than 5s) Roughly, we can count N/5 numbers that are multiples of 5, add to that numbers that are multiples of 5^2 (these will have two 5 factors) i.e N/25, add to that numbers that are multiples of 5^3 (these will have three 5 factors) and so on. For eg: 10! -> 2 multiples of 5 -> 2 zeroes 100! -> 20 multiples of 5 + 4 multiples of 25 -> 24 zeros 500! -> 100 multiples of 5 + 20 multiples of 25 + 4 multiples of 125 -> 124 zeros 1000! -> 200 multiples of 5 + 40 multiples of 25 + 8 multiples of 125 (5^3) + 1 multiple of 625 (5^4) -> 249 zeros Less

Show more responses
NVIDIA

Given a page size and a number, align the number with the nearest page. (Note: This was a phone interview question. The interviewer and I used an online document to share ideas about this problem.

7 Answers

I think that at the faster solution you mean int getAlignedValue_Fast(int pageSize, int valueToAlign) { return valueToAlign & ~(pageSize-1); } Note: There is a difference between !(pageSize-1) and ~(pageSize-1) ~(0x11) is 0xee !(0x11) is 0 Less

I just wanted to point out that the "faster solution" only works if the pageSize is assumed to be a power of 2. For example, suppose pageSize = 10 (or 01010 in binary), and valueToAlign = 24 (or 11000 in binary), then the fast method would give 16, but it should be 20. Anyways, thanks for posting the question and solution. Less

@observer I see how the mask works out for the alignment, why it is works mathematically? Thanks Less

Show more responses
Qualcomm

Given a wireless channel with loss rate 0.1, what's the throughput one can get with retransmission.

8 Answers

It can modeled as binary symmetric channel. As to my understanding, channel capacity can be acheived with perfect feedback and simple retransmission scheme, so i guess the answer is 1-H(0.1). Less

10/(1.23456...)=8.1 packets per sec

Interviewer was correct. With probability 0.1 you have one retransmission, with probability (0.1)^2 you have two, etc., since you can also lose the retransmitted packets, reducing the throughput to approximately 0.89. Less

Show more responses
Tata Consultancy Services

What did u learn in college project? Are you willing to travel?

8 Answers

I have learnt from my college project how to take decision in group and work as team.we make several important points to deal with it and work on as a team.my college project is wideband spectrum sensing using sub-nyquist techniques for cognitive radio network.so,we learn how to do a multitasking work and also gets motivated about the project. Yes I am willing to travel. Less

In college project I learnt many things while making a project with my team members first thing I learnt to solve a complicated things without getting a irritated when i am not able to solve the complexity with my team members even teachers help us when we stuck while making a college project we learnt many skills it's very helpful for us. Yes I can travel if I got the opportunity to get something or to learn something new. Less

I have learn Android app development in my college project...yes I am willing to travel with this company.. Less

Show more responses
CMS IT services

are you able to live in Andheri on rent with salary 8000 ?

7 Answers

Nope

Yes

Yes

Show more responses
Tata Consultancy Services

nothing as such but you need satisfy them for your ability in IT.

3 Answers

i think depends on demand and oppertunity.

I think practically work experience is very helpful after diploma/degree otherwise dificulty. Less

selse job reqverment

Viewing 1 - 10 of 31,267 interview questions

See Interview Questions for Similar Jobs

Glassdoor has 31,267 interview questions and reports from Systems engineer interviews. Prepare for your interview. Get hired. Love your job.