pwook

Stories submitted by pwook

C# cosing question: Value and Reference Types(interviewpattern.com)

submitted by pwookpwook(50) 2 years, 9 months ago

What is the output of this code? int a = 300; byte b = 0; b = (byte)a; Console.Write("b=" + b); Kick it and findout ! read more...

add a comment |category: |Views: 8

tags: another

Basic UML Interview questions(interviewpattern.com)

submitted by pwookpwook(50) 2 years, 10 months ago

Set of questions on UML read more...

add a comment |category: |Views: 96

tags: another

Bitwise Interview Questions with C#(interviewpattern.com)

submitted by pwookpwook(50) 2 years, 10 months ago

Interview Questions with C# read more...

add a comment |category: |Views: 42

tags: another

Linked List Interview Questions - Part II(interviewpattern.com)

submitted by pwookpwook(50) 3 years ago

Linked List Interview Questions Continue. Floyd’s cycle-finding algorithm and Insert-Remove operations. [More] read more...

add a comment |category: |Views: 35

tags: another

Puzzles and Riddles on the interview (Part – I)(interviewpattern.com)

submitted by pwookpwook(50) 3 years ago

“Use a standard substitution cipher where a = 1...z = 26. Find the English word that produces a value closes to 1 million when you multiply the letters together. What English word would give the biggest value?” read more...

add a comment |category: |Views: 14

tags: another

Stack and Queue interview questions(interviewpattern.com)

submitted by pwookpwook(50) 3 years ago

Microsoft provides both Stack and Queue object in its .NET System.Collections namespace. So let’s use reflector to pick on the way Microsoft .NET team implemented both this data structures. This is very common interview question, so knowing .NET implementation is extremely helpful. In .NET both Stack and Queue are implemented with arrays. Read More >>> read more...

add a comment |category: |Views: 70

tags: another