Systems architect Interview Questions
342
Systems Architect interview questions shared by candidates

What were your responsibilities in your previous role? Interviewers mainly asked about my background and experience. I was interviewing for a different role in software development than my previous position, so much of the interview was to validate that I was qualified for the position.
1 Answers↳
Since the questions were straightforward mainly answered based on work experience. Less

If you have a sock drawer with 50 red socks and 50 blue socks, what is the maximum number of socks you can take out of the drawer so that you have 1 pair of socks.
1 Answers↳
When I answered this question, I said, the "maximum" number of socks is 100 and you will have 1 pair, as well as 49 other pairs. The answer they want is 3 socks, to the question they meant to ask "What is the least amount of socks you have to take out to guarantee at least 1 pair?" but they did not word the question right. Less

Given a database table, write SQL code to return the unique strings from a column
1 Answers↳
SELECT DISTINCT string FROM table_name;

How do configure a trunk port?
1 Answers↳
switch port mode trunk switch port trunk allowed vlan xxx no shut
(if I can remember the exact words), how do you change an object between apis?
1 Answers↳
I answered that I couldn't understand the question, because it's obviously poorly worded. I asked him if he was alluding to the contract between api's or the serialization type I am accustomed to and I would structure a payload. Apparently he skipped as he told me that he doesn't know what I mean by "contract between api's" Less


Tell me about yourself They asked about projects They asked about pega
1 Answers↳
I answered these pretty well with confidence

Write a function that will return the number of set bits in a 32-bit number in the fewest steps possible.
1 Answers↳
Although this is totally inapplicable to embedded systems due to memory constraints, the correct answer was to have a lookup table (array) large enough to contain all values possible by a 32-bit number, and have in each of those cells the number of set bits for that numeric value. Less