Given a tree of 2-bit adders (no branching and looping), how would write an algorithm to reduce its over all delay?
Software Design Engineer Interview Questions
404 software design engineer interview questions shared by candidates
Given two integer arrays, write a function which can compute the product of first array and save in the second array, except the product of that particular element from first array of same index you currently store in second array. A = [a(0), a(1), a(2), a(3) ... a(n)] B = [b(0), b(1), b(2), b(3) ... b(n)] where b(0) = a(1) x a(2) x a(3) .... x a(n) b(1) = a(0) x a(2) x a(3) .... x a(n) . . . b(n) = a(0) x a(1) x a(2) .... x a(n-1)
what are dangling pointers
Project related questions
Suppose you're on a game show, and you're given the choice of three doors: Behind one door is a Mercedes-Benz; behind the others, Mars Bar. You pick a door, say No. 1, and the host, who knows what's behind the doors, opens another door, say No. 3, which has a Mars Bar. He then says to you, "Do you want to pick door No. 2?" Is it to your advantage to switch your choice?
In the second pahes's questions set, there are two question categories; first is case study type questions and second is script programming questions (Python). The first category is presented as user and test scenarios of a specific system or messaging interfaces. These scenarios are highly related to the domain that the company is working on, which is Smart cards, card readers their messaging interfaces. In the programming questions, one of them was challenging but not very impossible to be solved.
self introduction question regarding my resume
What’s the tops skills you think that’s important to this job.
Given a file with millions of words you have to find a sentence
What is garbage collection?
Viewing 81 - 90 interview questions