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!!
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. What system calls should be used?
Implement a string tokenizer for a large scale string? How to minimize the I/O involved?
Maybe an open question: How to describe the roles played by hash in external sorting?
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.
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?
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.
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?
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?
RSS link for this tag
You must log in to post.
Register or log in:
Lost Password?