Here is the email from Google I recived with the advice on how to prepare to the interview.
Thank you for taking the time to chat today! The details ...
Search results for static
Preparing for Google interview
Posted by SmartAss
Endianness is the attribute of a system that indicates whether integers are represented with the most significant byte stored at the lowest address or ...
Belove is list of Silverlight Error Codes which can be used for user friendly messaging:
Error Code
Error Message
1001
AG_E_UNKNOWN_ERROR
2000
...
Write a function that sums up integers from a text file, one int per line.
Posted by CMaster (http://sites.google.com)
Answer in Java
public static void sumFile ( String name ) { try { int total = 0; BufferedReader in = new BufferedRead ...
How to generate random linked list?
Posted by CMaster
Considering following definition of linked list data structure
class Node
{
public string Data = string.Empty;
...
Find largest element in array
Posted by CMaster
Answer in C#
public static int FindMax( int[] input )
{
int max = Int32.MinValue;
for ( int i = 0; i < input.length; i++ )
{
if ( i ...
Fibonacci numbers interview questions
Posted by aleksin
One of most common question from this area is to write a function which return Nth number of Fibonacci sequence.
Fibonacci numbers are a sequence of n ...
Answer
The solution, while being extremely simple, sometimes confuses many people because of the necessity of maintaining an array index for the nex ...
