Topic — Add New » Posts Last Poster Freshness
Adobe Interview questions? 1 1 year

Has any given the Adobe written test recently? Can I have some sample questions to get a direction on what they ask? Thanks in advance!!

A hedge fund interview question: what's the output result? And explain why. 5 1 year

what's the output result? And explain why.
#include <stdio.h>
int main()
{
char *p;
char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8};
p = (buf+1)[5];
printf("%d \n", p);
}

How can we traverse through all the files in a folder and the subfolders? 2 Misraji 1 year

How can we traverse through all the files in a folder and the subfolders. What system calls should be used?

interview question from adobe 1 pcp 1 year

Implement a string tokenizer for a large scale string? How to minimize the I/O involved?

How to describe the roles played by hash in external sorting? 1 1 year

Maybe an open question:
How to describe the roles played by hash in external sorting?

How to implement an efficient file cache? 2 1 year

How to implement an efficient file cache?
The requirements include a detailed description on design consideration, data structure to be used and implementation in C as well.

Using C++ to code the conversion between hexadecimal and decimal. 1 1 year

Using C++ to code the conversion between hexadecimal and decimal.

Write parser for regular expression string A*BC+ 2 Shekhu 1 year

Write code to evaluate a string if it matches a regular expression A*BC+
eg:

Input: AAAABC
result: True

Input: BC
result: True

Input : AB
result: False

Input:AC
result:False

How to detect duplicates from a large amount of text files? 3 1 year

How to detect duplicates from a large amount of text files?

Give a string, find all the substrings that are palindrome. The lengthes of thes 1 2 years

Give a string, find all the substrings that are palindrome. The lengthes of these substrings have to be odd.

Design an OO representation to model HTML. 2 2 years

Design an OO representation to model HTML.

A constructor problem 2 2 years

If there are multiple functions in a constructor, and the destructor also contains a set of corresponding functions, how to guarantee that the destructor will be called?

sort on ten machines without extra memory 2 2 years

There are ten machines with 1000,000 numbers in each machine, which does not have any extra memory left. How can you efficient sort all the numbers stored in these ten machines?