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)
Software Designer Interview Questions
649 software designer interview questions shared by candidates
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?
From the written test try to remember the questions and thoroughly re examine them again Mostly basic questions according to the job profile you're applying for and a bunch of trick questions and the rest is pretty easy to move in forward hr interview
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 121 - 130 interview questions