This is one of the question in logical reasoning. 6:18 ;4:?
C Net Developer And Programmer Analyst Interview Questions
15 c net developer and programmer analyst interview questions shared by candidates
Make a binary tree out of given numbers in an interger array.
There were 4 timed sections. The first one was a series of narrative logic puzzles (which I acknowledge up-front that I am terrible at), the second and third were spatial reasoning puzzles (which I am usually pretty good at but who knows), and the final was a coding challenge. The coding challenge involved comparing two version strings, like "2.0.1" > "2.0.0"
1- Problem solving tests (scored better than 90%) 2- IQ test (scored better than 55% of candidates, bad IQ test too)
What will be printed to the Console at the end of this code? int global = 0; Thread t1 = new Thread(() => { int local = 0; while(global < 3) { local += 1; global += 1; } Console.WriteLine(local); }); Thread t2 = new Thread(() => { global += 1; }); t1.Start(); t2.Start();
Viewing 11 - 20 interview questions