5 men do 5 units of work in 5 hours. How many men do we need to do 100 units of work in 100 hours?
Programmers Interview Questions
22,496 programmers interview questions shared by candidates
Why do I want the programmer trainee position?
To reschedule.
Basic what have you done in code questions
Asked about projects undertaken in B.E.
Some basic questions on my domain
Past projects I have worked on
introduction
What is wrong with the following code and what would you do to fix or improve the code if applicable? private void RemoveDuplicates( List<int> zMyList ) { int listCount = zMyList.Count; for( int i = 0 ; i < listCount; i++ ) { for( int j = i + 1; j < listCount ; j++ ) { if( zMyList[i] == zMyList[j] ) { zMyList.RemoveAt(j); } } } }
What is the difference between preemptive and non-preemptive tasks
Viewing 2331 - 2340 interview questions